- 18 Feb, 2012 1 commit
-
-
Russ Cox authored
R=golang-dev, r CC=golang-dev https://golang.org/cl/5675092
-
- 12 Dec, 2011 1 commit
-
-
David Symonds authored
R=adg, r, rsc CC=golang-dev https://golang.org/cl/5475069
-
- 02 Nov, 2011 1 commit
-
-
Russ Cox authored
R=golang-dev, bsiegert, iant CC=golang-dev https://golang.org/cl/5294074
-
- 12 Oct, 2011 1 commit
-
-
Rob Pike authored
Part of Go version 1 rearrangement. No gofix, since the new name is not in Go 1. R=golang-dev, gri CC=golang-dev https://golang.org/cl/5245055
-
- 06 Jun, 2011 1 commit
-
-
David Jakob Fritz authored
Fixes #1868. R=golang-dev, r, rsc CC=golang-dev https://golang.org/cl/4550093
-
- 26 Mar, 2011 1 commit
-
-
Rob Pike authored
R=rsc CC=golang-dev https://golang.org/cl/4314044
-
- 11 Mar, 2011 1 commit
-
-
Russ Cox authored
R=golang-dev, rog, bradfitzwork, r CC=golang-dev https://golang.org/cl/4243072
-
- 16 Feb, 2011 1 commit
-
-
Roger Peppe authored
R=r, r2, rsc CC=golang-dev https://golang.org/cl/4119055
-
- 01 Feb, 2011 1 commit
-
-
Robert Griesemer authored
- go/ast: introduce SendStmt; adjust SelectStmt - go/parser: accept new communication syntax, minor unrelated cleanups - go/printer: adjustments for new ast, fewer binary expression precedences - go/token: remove one binary precedence Adjusted dependent code. gofmt -w src -misc. Ran all tests. R=rsc, gri CC=golang-dev https://golang.org/cl/3989056
-
- 26 Jan, 2011 1 commit
-
-
Ian Lance Taylor authored
Make sure we export the channels before we try to import them. R=r CC=golang-dev https://golang.org/cl/4077046
-
- 19 Jan, 2011 1 commit
-
-
Roger Peppe authored
When data is received for a channel, but that channel is not ready to receive it, the central run() loop is currently blocked, but this can lead to deadlock and interference between independent channels. This CL adds an explicit buffer size to netchan channels (an API change) - the sender will not send values until the buffer is non empty. The protocol changes to send ids rather than channel names because acks can still be sent after a channel is hung up, we we need an identifier that can be ignored. R=r, rsc CC=golang-dev https://golang.org/cl/2447042
-
- 07 Dec, 2010 1 commit
-
-
Rob Pike authored
I have written a tool to verify Printf calls, and although it's not ready to be reviewed yet it's already uncovered a spate of problems in the repository. I'm sending this CL to break the changes into pieces; as the tool improves it will find more, I'm sure. R=rsc CC=golang-dev https://golang.org/cl/3427043
-
- 18 Oct, 2010 1 commit
-
-
Rob Pike authored
Fixes #1151. R=rsc CC=golang-dev https://golang.org/cl/2469043
-
- 12 Oct, 2010 1 commit
-
-
Roger Peppe authored
Fixes some race conditions. R=r CC=golang-dev https://golang.org/cl/2456041
-
- 23 Sep, 2010 1 commit
-
-
Rob Pike authored
- delete unnecessary newlines - make sure formatted prints call the formatting routines R=adg CC=golang-dev https://golang.org/cl/2225046
-
- 20 Sep, 2010 3 commits
-
-
Rob Pike authored
R=adg CC=golang-dev https://golang.org/cl/2211044
-
Rob Pike authored
R=rsc CC=golang-dev https://golang.org/cl/2229044
-
Rob Pike authored
This also silences some misleading logging. Also improve logging. R=rsc CC=golang-dev https://golang.org/cl/2245041
-
- 18 Sep, 2010 1 commit
-
-
Rob Pike authored
Re-enable the test on Windows. R=brainman, alex.brainman CC=golang-dev https://golang.org/cl/2244041
-
- 16 Sep, 2010 1 commit
-
-
Rob Pike authored
Suggested in a bug report (since addressed) by Axel Schreiner. R=rsc CC=golang-dev https://golang.org/cl/2228041
-
- 04 Sep, 2010 1 commit
-
-
Rob Pike authored
Also add exporter.Drain() to wait for completion. This makes it possible for an Exporter to fire off a message and wait (by calling Drain) for the message to be received, even if a client has yet to call to retrieve it. Once this design is settled, I'll do the same for import send. Testing strategies welcome. I have some working stand-alone tests. R=rsc CC=golang-dev https://golang.org/cl/2137041
-
- 26 Aug, 2010 1 commit
-
-
Ian Lance Taylor authored
Two tests start a goroutine which runs exportSend, and then the tests run importReceive. exportSend creates an export channel. importReceive asks to receive values on that channel. Because exportSend runs in a separate goroutine, it's possible for the export client to receive the request for values on the channel, from importReceive, before the goroutine actually creates the export channel. That causes an error: "export: no such channel: exportedSend". This patch avoids the race by creating the export channel before starting the goroutine. There does not seem to be a similar race condition in the tests which send data in the other direction. R=r CC=golang-dev https://golang.org/cl/2026045
-
- 29 Jun, 2010 1 commit
-
-
Rob Pike authored
in Import and Export. R=rsc CC=golang-dev https://golang.org/cl/1707047
-
- 28 Jun, 2010 1 commit
-
-
Rob Pike authored
R=rsc CC=golang-dev https://golang.org/cl/1741041
-
- 21 Jun, 2010 1 commit
-
-
Russ Cox authored
netchan, rpc, websocket: run test servers on 127.0.0.1, to avoid conflict with OS X firewall. TBR=r CC=golang-dev https://golang.org/cl/1689046
-
- 03 Jun, 2010 1 commit
-
-
Rob Pike authored
R=rsc CC=golang-dev https://golang.org/cl/1522041
-
- 29 May, 2010 1 commit
-
-
Rob Pike authored
Fixes #805. R=rsc CC=golang-dev https://golang.org/cl/1400041
-
- 11 May, 2010 1 commit
-
-
Russ Cox authored
R=r CC=golang-dev https://golang.org/cl/1186041
-
- 13 Apr, 2010 1 commit
-
-
Rob Pike authored
much rewriting and improving, but it's still experimental. R=rsc CC=golang-dev https://golang.org/cl/875045
-
- 20 Jan, 2010 1 commit
-
-
Rob Pike authored
limitations: poor error handling teardown not done exporter must send, importer must receive testing is rudimentary at best R=rsc CC=golang-dev https://golang.org/cl/186234
-