- 13 Dec, 2012 7 commits
-
-
Mikio Hara authored
TestDialTimeoutFDLeak will fail when system state somaxconn is greater than expected fixed value. Fixes #4384 (again). R=fullung, dave, rsc CC=golang-dev https://golang.org/cl/6873069
-
Albert Strasheim authored
Fixes #4530. R=dvyukov, dave CC=golang-dev https://golang.org/cl/6933052
-
James David Chalfant authored
database/sql: Alter *DB.begin to return driver.ErrBadConn when driver.Conn.Begin returns driver.ErrBadConn Fixes #4433 R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/6845094
-
Brad Fitzpatrick authored
Generated by addca. R=gobot CC=golang-dev https://golang.org/cl/6939043
-
Dave Cheney authored
Fixes #4467. The syslog tests can fail if the timeout fires before the data arrives at the mock server. Moving the timeout onto the goroutine that is calling ReadFrom() and always processing the data returned before handling the error should improve the reliability of the test. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/6920047
-
Andrew Gerrand authored
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/6934049
-
Andrew Gerrand authored
Also add style for "Program exited." message. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/6934047
-
- 12 Dec, 2012 13 commits
-
-
Robert Griesemer authored
Fixes #3814. R=rsc, iant CC=golang-dev https://golang.org/cl/6920057
-
Robert Griesemer authored
This is language change. It is a backward-compatible change but for code that relies on a run-time panic when calling delete on a nil map (unlikely). Fixes #4253. R=rsc, r, iant, ken, bradfitz, rogpeppe CC=golang-dev https://golang.org/cl/6909060
-
Brad Fitzpatrick authored
Update #4271 R=golang-dev, rsc CC=golang-dev https://golang.org/cl/6931052
-
Brad Fitzpatrick authored
Fixes #4528 R=golang-dev, rsc CC=golang-dev https://golang.org/cl/6922054
-
Brad Fitzpatrick authored
Too flaky. R=iant, rsc CC=golang-dev https://golang.org/cl/6925056
-
Brad Fitzpatrick authored
Fixes #4145 R=golang-dev, rsc CC=golang-dev https://golang.org/cl/6923055
-
Robert Griesemer authored
R=r, rsc, iant, ken CC=golang-dev https://golang.org/cl/6903048
-
Rob Pike authored
These are higher-resolution scans of the little drawings used as clip art on golang.org R=bradfitz, rsc CC=golang-dev https://golang.org/cl/6929058
-
Daniel Morsing authored
Credit to Russ for suggesting this fix. Fixes #3925. R=golang-dev, franciscossouza, rsc CC=golang-dev https://golang.org/cl/6920051
-
Dave Cheney authored
Fixes #4079. Some example output: % go install foo/bar can't load package: package foo/bar: cannot find package "foo/bar" in any of: /home/dfc/go/src/pkg/foo/bar (from $GOROOT) /home/dfc/src/foo/bar (from $GOPATH) /home/dfc/src2/src/foo/bar % GOPATH= go install foo/bar can't load package: package foo/bar: cannot find package "foo/bar" in any of: /home/dfc/go/src/pkg/foo/bar (from $GOROOT) ($GOPATH not set) R=golang-dev, rsc CC=golang-dev https://golang.org/cl/6899057
-
Dave Cheney authored
Saves one MOVW and one register during the fast div/mod introduced in CL 6819123. linux/arm (armv5) benchmark old ns/op new ns/op delta BenchmarkInt64Mod1 12 12 +7.50% BenchmarkUint16Mod2 7 7 +0.28% BenchmarkUint16Mod4 7 7 -0.28% BenchmarkUint64Mod1 15 11 -23.72% BenchmarkInt8Neg 8 7 -17.66% BenchmarkInt16Neg 8 7 -17.66% BenchmarkInt32Neg 5 5 -9.04% BenchmarkUint8Neg 7 6 -14.35% BenchmarkUint16Neg 8 7 -17.66% BenchmarkUint32Neg 5 5 -9.04% R=rsc CC=golang-dev https://golang.org/cl/6842045
-
Rémy Oudompheng authored
Implementation suggested by DMorsing. R=golang-dev, dave, daniel.morsing, rsc CC=golang-dev https://golang.org/cl/6903059
-
Rémy Oudompheng authored
Change suggested by iant. The compiler generates special code for a/b when a is -0x80...0 and b = -1. A single instruction can cover the case where b is -1, so only one comparison is needed. Fixes #3551. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/6922049
-
- 11 Dec, 2012 19 commits
-
-
Dave Cheney authored
Fixes #4384. Implments the suggestion by rsc in comment 15, http://code.google.com/p/go/issues/detail?id=4384#c15 An alternate suggestion would be to temporarily set GOMAXPROCS to 1 during this test. R=fullung, rsc CC=golang-dev https://golang.org/cl/6923046
-
Russ Cox authored
R=golang-dev, iant CC=golang-dev https://golang.org/cl/6924050
-
Russ Cox authored
R=golang-dev, iant CC=golang-dev https://golang.org/cl/6932053
-
Ryan Slade authored
Fixed issue 3931 R=bradfitz, rsc CC=golang-dev https://golang.org/cl/6923049
-
Russ Cox authored
Generated by addca. R=gobot CC=golang-dev https://golang.org/cl/6924049
-
Robert Griesemer authored
- implemented built-in complex() - implemented missing expression switch checks R=rsc CC=golang-dev https://golang.org/cl/6920046
-
Miquel Sabaté Solà authored
The code inside the casee and casep labels can perfectly be merged since they essentially do the same. The character to be stored where cp points is just the character contained by the c variable. R=golang-dev, dave, rsc CC=golang-dev https://golang.org/cl/6845112
-
Russ Cox authored
The code that was commented out was for the old regexp package. In the new one the errors and the space of valid regexps are different. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/6873063
-
Luit van Drongelen authored
Implementation is mostly identical to passing a non-negative int64 to SetInt64, and calling Int64 with a non-negative value in the *Int. Fixes #4389. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/6929048
-
Robin Eklind authored
Also, remove unnecessary whitespace. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/6928045
-
Brad Fitzpatrick authored
Also, implement a global OPTIONS * handler, like Apache. Permit sending "*" requests to handlers, but not path-based (ServeMux) handlers. That means people can go out of their way to support SSDP or SIP or whatever, but most users will be unaffected. See RFC 2616 Section 5.1.2 (Request-URI) See RFC 2616 Section 9.2 (OPTIONS) Fixes #3692 R=rsc CC=golang-dev https://golang.org/cl/6868095
-
Brad Fitzpatrick authored
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/6912063
-
Brian Ketelsen authored
Fixes #3712 R=golang-dev, dave, rsc CC=golang-dev https://golang.org/cl/6902069
-
Russ Cox authored
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/6923051
-
Russ Cox authored
Fixes #4525. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/6929049
-
Shenghou Ma authored
Fixes #4394. R=iant, bradfitz, rsc, remigius.gieben CC=golang-dev https://golang.org/cl/6847125
-
Daniel Morsing authored
This check for BADWIDTH might happen while in defercheckwidth, making it raise errors for non-erroneous situations. Fixes #4495. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/6927043
-
Rick Arnold authored
Fixes #3560. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/6886047
-
Russ Cox authored
Putting it before the Index (where it is now) is wrong: we don't even know what's in the package yet. Fixes #4484. R=adg, dsymonds CC=golang-dev https://golang.org/cl/6868071
-
- 10 Dec, 2012 1 commit
-
-
Russ Cox authored
Suggested by Paul Borman. R=golang-dev, mikioh.mikioh CC=golang-dev https://golang.org/cl/6930043
-