- 15 Feb, 2012 37 commits
-
-
Rémy Oudompheng authored
Fixes #3019. R=golang-dev, rsc CC=golang-dev, remy https://golang.org/cl/5674044
-
Brad Fitzpatrick authored
Fixes #3022 R=golang-dev, r CC=golang-dev https://golang.org/cl/5674060
-
Brad Fitzpatrick authored
R=golang-dev, dsymonds, adg, rogpeppe, bradfitz CC=golang-dev https://golang.org/cl/5673052
-
Andrew Gerrand authored
Fixes #2896. R=golang-dev, gri CC=golang-dev https://golang.org/cl/5677047
-
Brad Fitzpatrick authored
Whoops. Consume the body of the first request before making the subsequent /quit request. R=golang-dev, untheoretic CC=golang-dev https://golang.org/cl/5674054
-
Robert Griesemer authored
Also: Simplified handling of selector expressions. As a result, complicated multi-line expressions containing selectors and calls/indices with arguments broken accross lines don't get indented the same way as before, but the change is minimal (see tests) and there's no such code in the std library. It seems a worthwhile compromise given the much simpler code. Applied gofmt -w $GOROOT/src $GOROOT/misc . Fixes #1847. R=rsc CC=golang-dev https://golang.org/cl/5675062
-
David du Colombier authored
R=rsc CC=golang-dev https://golang.org/cl/5677053
-
Russ Cox authored
R=golang-dev, gri CC=golang-dev https://golang.org/cl/5672055
-
Shenghou Ma authored
Fixes #3023. R=rsc CC=golang-dev https://golang.org/cl/5674055
-
Shenghou Ma authored
Previous CL (5674043) omit the case where runtime/cgo itself is out-of-date. Fixes #2936 (again). R=rsc CC=golang-dev https://golang.org/cl/5674048
-
Russ Cox authored
Makes it possible to run GOARCH=amd64 make.bash GOARCH=386 make.bash --no-clean to avoid deleting some of the work done by the first one. R=golang-dev CC=golang-dev https://golang.org/cl/5673056
-
Ian Lance Taylor authored
Similar to bug190, but without recursive reference. Crashed gccgo. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5672053
-
Mikio Hara authored
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5672052
-
Alex Brainman authored
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5672050
-
Shenghou Ma authored
CL 5666043 fixed the same checking for 5g. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5666045
-
Brad Fitzpatrick authored
R=golang-dev, r CC=golang-dev https://golang.org/cl/5671051
-
Albert Strasheim authored
R=rsc, iant, iant CC=golang-dev https://golang.org/cl/5656058
-
Nigel Tao authored
return (*Template, error), not just *Template. Fixes #2757. R=r CC=golang-dev https://golang.org/cl/5665044
-
Rob Pike authored
Just an oversight they didn't work and easy to address. Fixes #3025. R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5656059
-
Alex Brainman authored
R=golang-dev, r CC=golang-dev https://golang.org/cl/5671049
-
Andrew Gerrand authored
R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5676046
-
Nigel Tao authored
Fixes #2979. R=rsc, r CC=golang-dev https://golang.org/cl/5664046
-
Yasuhiro Matsumoto authored
R=golang-dev, mpimenov, alex.brainman CC=golang-dev https://golang.org/cl/5667045
-
Brad Fitzpatrick authored
R=golang-dev, adg, r, bradfitz CC=golang-dev https://golang.org/cl/5675054
-
Andrew Gerrand authored
R=bradfitz, dsymonds CC=golang-dev https://golang.org/cl/5675056
-
Andrew Gerrand authored
R=golang-dev, dsymonds, r, mikioh.mikioh CC=golang-dev https://golang.org/cl/5675055
-
Lai Jiangshan authored
use ':' instead of ';' to keep consistency with the other panic strings R=golang-dev, dsymonds, r CC=golang-dev https://golang.org/cl/5666048
-
Andrew Gerrand authored
R=r, bradfitz CC=golang-dev, rogpeppe https://golang.org/cl/5673049
-
Lai Jiangshan authored
When I build it, I got: /home/njubee/work/golang/doc/codewalk/markov.go:124: undefined: time.Nanoseconds time.Nanoseconds() does not exist now, use time.Now().UnixNano() instead R=golang-dev, adg CC=golang-dev https://golang.org/cl/5668044
-
Andrew Gerrand authored
R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5677046
-
Andrew Gerrand authored
R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5649087
-
Andrew Gerrand authored
R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5672048
-
Brad Fitzpatrick authored
R=golang-dev, adg, bradfitz, r CC=golang-dev https://golang.org/cl/5675053
-
Gustavo Niemeyer authored
R=golang-dev, adg CC=golang-dev https://golang.org/cl/5677043
-
Gustavo Niemeyer authored
Changeset 36c9c7810f14 broke support for grsec-patched kernels. Those do not give back the address requested without MAP_FIXED, so when verifying an mmap without this flag for success, the resulting address must not be compared against the requested address since it may have succeeded at a different location. R=golang-dev, rsc, gustavo, iant CC=golang-dev https://golang.org/cl/5650072
-
Brad Fitzpatrick authored
copy of strings/reader{,_test}.go with a few s/string/[]byte/ Fixes #2861 R=adg, rsc, r CC=golang-dev https://golang.org/cl/5666044
-
Brad Fitzpatrick authored
Apparently some distros don't let you ptrace attach to your own existing processes. Run strace on the child directly, instead, which reportedly is more often allowed, and makes the code simpler too. R=golang-dev, n13m3y3r CC=golang-dev https://golang.org/cl/5675050
-
- 14 Feb, 2012 3 commits
-
-
Andrew Gerrand authored
R=gri CC=golang-dev https://golang.org/cl/5675049
-
David Symonds authored
Before this, make.bash --dist-tool would fail, because $GOROOT/bin/tool was being mkdir'd instead of $GOROOT/pkg/tool/linux_amd64. R=rsc CC=golang-dev https://golang.org/cl/5666046
-
Robert Griesemer authored
- if a package path leads to subdirectories only, show command instead, if any - to force documentation for a command, use the cmd/ prefix, as in: godoc cmd/go (note that for the go command, the prefix is not required since there is no actual go library package at the moment) Fixes #3012. R=rsc CC=golang-dev https://golang.org/cl/5665049
-