- 05 Jan, 2012 9 commits
-
-
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 3 commits
-
-
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
-
David Symonds authored
R=golang-dev, gustavo, r CC=golang-dev https://golang.org/cl/5498077
-
Nigel Tao authored
Pass tests10.dat, test 22: <!DOCTYPE html><body xlink:href=foo><svg xlink:href=foo></svg> | <!DOCTYPE html> | <html> | <head> | <body> | xlink:href="foo" | <svg svg> | xlink href="foo" Also pass tests through test 29: <div><svg><path></svg><path> R=andybalholm CC=golang-dev https://golang.org/cl/5489117
-
- 24 Dec, 2011 1 commit
-
-
Andrew Balholm authored
Pass tests10.dat, test 16: <!DOCTYPE html><body><table><tr><td><select><svg><g>foo</g><g>bar</g><p>baz</table><p>quux | <!DOCTYPE html> | <html> | <head> | <body> | <table> | <tbody> | <tr> | <td> | <select> | "foobarbaz" | <p> | "quux" Also pass tests through test 21: <!DOCTYPE html><frameset></frameset><svg><g></g><g></g><p><span> R=nigeltao CC=golang-dev https://golang.org/cl/5505069
-
- 23 Dec, 2011 7 commits
-
-
Marcel van Lohuizen authored
1) incorrect length given for out buffer in String. 2) patchTail bug that could cause characters to be lost when crossing into the out-buffer boundary. Added tests to expose these bugs. Also slightly improved performance of Bytes() and String() by sharing the reorderBuffer across operations. Fixes #2567. R=r CC=golang-dev https://golang.org/cl/5502069
-
Robert Hencke authored
R=golang-dev, mikioh.mikioh CC=golang-dev https://golang.org/cl/5498066
-
David Symonds authored
This works in the expected way: flag.Duration returns a *time.Duration, and uses time.ParseDuration for parsing the input. R=golang-dev, r CC=golang-dev https://golang.org/cl/5489113
-
David Symonds authored
R=rsc, r, r CC=golang-dev https://golang.org/cl/5489111
-
Andrew Gerrand authored
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5504082
-
Andrew Gerrand authored
R=rsc, gary.burd, adg CC=golang-dev https://golang.org/cl/5498067
-
Andrew Gerrand authored
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5504081
-