- 08 Jan, 2012 2 commits
-
-
Florian Weimer authored
Also add basic tests. R=golang-dev CC=golang-dev https://golang.org/cl/5533045
-
Sameer Ajmani authored
R=golang-dev, gri, bradfitz, iant CC=golang-dev, rsc https://golang.org/cl/5523049
-
- 06 Jan, 2012 5 commits
-
-
Ryan Hitchman authored
Fixes #2627. R=golang-dev, iant CC=golang-dev https://golang.org/cl/5498088
-
Sameer Ajmani authored
R=gri CC=golang-dev https://golang.org/cl/5515052
-
Adam Langley authored
R=iant, gri CC=golang-dev https://golang.org/cl/5517056
-
Robert Griesemer authored
R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5521052
-
Robert Hencke authored
R=golang-dev, gri CC=golang-dev https://golang.org/cl/5516049
-
- 05 Jan, 2012 12 commits
-
-
Andrew Gerrand authored
R=gri CC=golang-dev https://golang.org/cl/5519048
-
Eric Eisner authored
Command arguments are separated from input .go file arguments by a -- separator. R=rsc, golang-dev, adg CC=golang-dev https://golang.org/cl/5514046
-
Andrew Gerrand authored
Originally published on the Go blog on 5 Jan 2011: http://blog.golang.org/2011/01/go-slices-usage-and-internals.html R=golang-dev, gri CC=golang-dev https://golang.org/cl/5516046
-
Andrew Gerrand authored
Fixes #2655. R=golang-dev, gri CC=golang-dev https://golang.org/cl/5510045
-
Andrew Gerrand authored
gofmt likes to put lines like // STOP OMIT two blank lines from a closing brace, creating an ugly space inside <pre> blocks in some of these files. This change resolves this issue. R=golang-dev, iant CC=golang-dev https://golang.org/cl/5520044
-
Roger Peppe authored
If there's a error compiling a _test.go file, the error message tries to print a *Package with %s. There's no String method on *Package, so the error message looks bad. Since the error messages identify the file in question anyway, this CL removes the package from the error message. R=rsc, gri CC=golang-dev https://golang.org/cl/5520045
-
Charles L. Dorian authored
Logb errors were reported as Ilogb errors. R=rsc, golang-dev, gri CC=golang-dev https://golang.org/cl/5517045
-
Mikio Hara authored
R=golang-dev, iant CC=golang-dev https://golang.org/cl/5523044
-
Jeff R. Allen authored
Fix incorrect marshal/unmarshal of certificateRequest. Add support for configuring client-auth on the server side. Fix the certificate selection in the client side. Update generate_cert.go to new time package Fixes #2521. R=krautz, agl, bradfitz CC=golang-dev, mikkel https://golang.org/cl/5448093
-
Andrew Gerrand authored
R=golang-dev, iant CC=golang-dev https://golang.org/cl/5517044
-
Andrew Gerrand authored
Fixes #2637. R=golang-dev, mikioh.mikioh, iant CC=golang-dev https://golang.org/cl/5508043
-
Alex Brainman authored
R=golang-dev, iant CC=golang-dev https://golang.org/cl/5522043
-
- 04 Jan, 2012 7 commits
-
-
Sanjay Menakuru authored
Also, add XTestGoFiles to the go command's public api. Fixes #2649. R=golang-dev, adg CC=golang-dev https://golang.org/cl/5502102
-
Robert Griesemer authored
R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5511047
-
Adam Langley authored
Fixes #2635. R=golang-dev, iant CC=golang-dev https://golang.org/cl/5512043
-
Dave Cheney authored
This CL fixes two issues sending data to the remote peer. The first bug occurs when the size of the buffer passed to Write is larger than the current window, in this case, w.rwin can become negative. The second issue is more problematic than the first as the amount of data passed to writePacket was not limited to w.rwin. In this case the remote peer could silently drop the additional data, or drop the connection. Credit to Jacek Masiulaniec for the bug report. R=agl, jacek.masiulaniec CC=golang-dev https://golang.org/cl/5511043
-
Andrew Gerrand authored
Fixes #2641. R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5509043
-
Paul Borman authored
R=golang-dev, kevlar CC=golang-dev https://golang.org/cl/5504113
-
Andrew Gerrand authored
The go command lists all packages that were built. A recent breakage notification included this text: $ tail -100 < log ok errors ok exp/ebnf ? exp/ebnflint [no test files] ok exp/gotype ok exp/norm ok exp/spdy If the breakage occurred before this point it would not be visible in the output. R=golang-dev, gri, kevlar CC=golang-dev https://golang.org/cl/5504109
-
- 03 Jan, 2012 9 commits
-
-
Andrew Balholm authored
Pass tests6.dat, test 47: <param><frameset></frameset> | <html> | <head> | <frameset> Also pass remaining tests in tests6.dat. R=nigeltao CC=golang-dev https://golang.org/cl/5489136
-
Sanjay Menakuru authored
Also, add TestGoFiles to the go command's public api. R=golang-dev, adg CC=golang-dev https://golang.org/cl/5505083
-
Andrew Gerrand authored
R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5504110
-
Evan Shaw authored
R=golang-dev, adg CC=golang-dev https://golang.org/cl/5500084
-
Michael Shields authored
R=golang-dev, adg CC=golang-dev https://golang.org/cl/5502083
-
John DeNero authored
I removed the broken function comparison example and fixed a code highlighting regexp. R=golang-dev, adg CC=golang-dev https://golang.org/cl/5501078
-
Christoph Hack authored
R=golang-dev, adg CC=golang-dev https://golang.org/cl/5501072
-
Benny Siegert authored
Otherwise, running "gofmt -d ." after "gotest" gives some spurious changes. R=golang-dev, adg CC=golang-dev https://golang.org/cl/5504101
-
Olivier Duperray authored
R=golang-dev, adg CC=golang-dev https://golang.org/cl/5502088
-
- 27 Dec, 2011 2 commits
-
-
Dave Cheney authored
transport.go: * remove unused nil check. doc.go: * improve documentation about supported auth methods and update Run example. Thanks Jacek Masiulaniec for both reports. R=jacek.masiulaniec, agl CC=golang-dev https://golang.org/cl/5501075
-
Rob Pike authored
This corner case arose doing an RPC with a empty-slice payload. Ouch. R=golang-dev, iant CC=golang-dev https://golang.org/cl/5505073
-
- 26 Dec, 2011 2 commits
-
-
Alex Brainman authored
Fixes #2614. R=golang-dev, jdpoirier CC=golang-dev https://golang.org/cl/5505070
-
Vadim Vygonets authored
Alert logs a message using the LOG_ALERT priority. Fixes #2325. R=mikioh.mikioh, rsc CC=golang-dev https://golang.org/cl/5504058
-
- 25 Dec, 2011 1 commit
-
-
David Symonds authored
This yields much better error messages when a bad flag value is given. R=golang-dev, r CC=golang-dev https://golang.org/cl/5498078
-