Age | Commit message (Collapse) | Author | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
R=rsc, Mateusz Czaplinski
CC=golang-dev
http://codereview.appspot.com/1600041
Committer: Russ Cox <rsc@golang.org>
|
|
Fixes issue 758.
R=rsc, adg
CC=golang-dev
http://codereview.appspot.com/1078041
Committer: Andrew Gerrand <adg@golang.org>
|
|
R=iant
CC=golang-dev, rsc
http://codereview.appspot.com/1748041
Committer: Ian Lance Taylor <iant@golang.org>
|
|
to a new source file.
R=iant, rsc
CC=golang-dev
http://codereview.appspot.com/1670046
Committer: Ian Lance Taylor <iant@golang.org>
|
|
now net.go is only type definitions, not active code.
R=r
CC=golang-dev
http://codereview.appspot.com/1708046
|
|
Ping IDs should be limited to 16-bits. Fix failure printing.
R=rsc
CC=golang-dev, jean-christophe smith <jeanchristophe.smith
http://codereview.appspot.com/1682043
Committer: Russ Cox <rsc@golang.org>
|
|
update other code to match.
R=r
CC=golang-dev
http://codereview.appspot.com/1680044
|
|
R=gri
CC=golang-dev
http://codereview.appspot.com/1620042
|
|
Fixes issue 819.
R=rsc
CC=golang-dev
http://codereview.appspot.com/1421041
|
|
R=gri
CC=golang-dev
http://codereview.appspot.com/1326042
|
|
R=rsc
CC=golang-dev, r
http://codereview.appspot.com/1271041
Committer: Russ Cox <rsc@golang.org>
|
|
apply gofmt to src, misc
Fixes issue 752.
R=rsc
CC=golang-dev
http://codereview.appspot.com/1240044
Committer: Robert Griesemer <gri@golang.org>
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/684041
Committer: Russ Cox <rsc@golang.org>
|
|
Fixes issue 783.
R=rsc, cw
CC=golang-dev
http://codereview.appspot.com/1207043
Committer: Russ Cox <rsc@golang.org>
|
|
R=golang-dev, gri
CC=golang-dev
http://codereview.appspot.com/1113041
Committer: Robert Griesemer <gri@golang.org>
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/1019043
Committer: Russ Cox <rsc@golang.org>
|
|
Fixes issue 686.
R=rsc
CC=adg, golang-dev
http://codereview.appspot.com/979044
Committer: Russ Cox <rsc@golang.org>
|
|
Fixes issue 686.
R=adg
CC=golang-dev
http://codereview.appspot.com/961046
|
|
Fixes issue 610.
R=adg
CC=golang-dev
http://codereview.appspot.com/1006044
|
|
Fixes issue 750.
R=adg
CC=golang-dev
http://codereview.appspot.com/988043
|
|
Adds two more methods, Timeout and Temporary.
Implemented by os.Errno too. The intent is to make
the checks for os.EAGAIN a little less clunky.
It should also let us clean up a bug that Mike Solomon
pointed out: if a network server gets an "out of file descriptors"
error from Accept, the listener should not stop.
It will be able to check this because that error would
have Temporary() == true.
Also clean up some underscore names.
Fixes issue 442.
R=r
CC=golang-dev, msolo
http://codereview.appspot.com/957045
|
|
R=r
CC=golang-dev
http://codereview.appspot.com/1004043
|
|
packStructValue was cutting off last byte of uint32
in _Dns_msg.Unpack, use packRR for rr types
R=rsc
CC=golang-dev
http://codereview.appspot.com/844048
Committer: Russ Cox <rsc@golang.org>
|
|
The cycle is *netFD -> cw chanl *netFD in struct ->
same *netFD in channel read buffer.
Because channels are finalized, the cycle makes them
uncollectable. A better fix is to make channels not
finalized anymore, and that will happen, but this is
an easy, reasonable workaround until then.
Another good fix would be to zero the channel receive
buffer entry after the receive. That too will happen.
R=r
CC=golang-dev
http://codereview.appspot.com/875043
|
|
R=r
CC=golang-dev
http://codereview.appspot.com/833044
|
|
note that sortmain.go has been run through hg gofmt;
only the formatting of the day initializers changed.
i'm happy to revert that formatting if you'd prefer.
stop on error in doc/progs/run
R=r
CC=golang-dev
http://codereview.appspot.com/850041
|
|
in the tests, println+panic.
gofmt some tests too.
R=rsc
CC=golang-dev
http://codereview.appspot.com/741041
|
|
R=r
CC=golang-dev
http://codereview.appspot.com/438042
|
|
Update issue 538.
R=r
CC=golang-dev
http://codereview.appspot.com/229045
|
|
Pointed out by Scott Schwartz.
Fixes issue 637.
R=scotts
CC=golang-dev
http://codereview.appspot.com/225042
|
|
Fixes issue 472.
R=golang-dev
CC=golang-dev
http://codereview.appspot.com/223108
|
|
Set defaults to the same values as various C DNS resolver libraries.
Use the timeout value from the configuration.
Fixes issue 632.
R=rsc
CC=golang-dev
http://codereview.appspot.com/223094
|
|
- gofmt -w src misc
- looking for feedback
R=rsc, r
CC=golang-dev
http://codereview.appspot.com/223076
|
|
gofmt -w -r 'strings.Bytes(a) -> []byte(a)' src/cmd src/pkg test/bench
gofmt -w -r 'strings.Runes(a) -> []int(a)' src/cmd src/pkg test/bench
delete unused imports
R=r
CC=golang-dev
http://codereview.appspot.com/224062
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/224061
Committer: Russ Cox <rsc@golang.org>
|
|
has been flaking on various architectures.
not sure why, but doesn't seem to be Go's fault.
Fixes issue 617.
R=r
CC=golang-dev
http://codereview.appspot.com/217093
|