- 17 Feb, 2012 33 commits
-
-
Anthony Martin authored
R=golang-dev, r, gri CC=golang-dev https://golang.org/cl/5675081
-
Robert Griesemer authored
Fixes #3048. R=rsc CC=golang-dev https://golang.org/cl/5672081
-
Russ Cox authored
Fixes #2989. R=ken2 CC=golang-dev https://golang.org/cl/5674091
-
Gustavo Niemeyer authored
Fixes #3061. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5656089
-
Robert Griesemer authored
Fixes #3041. R=rsc CC=golang-dev https://golang.org/cl/5671087
-
Robert Griesemer authored
R=r CC=golang-dev https://golang.org/cl/5675074
-
Robert Griesemer authored
R=r CC=golang-dev https://golang.org/cl/5676074
-
Joe Poirier authored
files moved from misc/windows, bash packager file replaced with Windows batch file R=golang-dev, alex.brainman, rsc CC=golang-dev https://golang.org/cl/5677074
-
Shenghou Ma authored
1, strip last path separator from $GOROOT The user might define GOROOT=/path/to/go/, but then the dir check in defaulttarg() will always complain the current dir is not within $GOROOT/src/. 2, resolve symlinks in the default goroot Or if getcwd() returns a fully-resolved path, the check in defaulttarg() will always fail. R=rsc CC=golang-dev https://golang.org/cl/5649073
-
Evan Shaw authored
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5673081
-
Shenghou Ma authored
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5677076
-
Ian Lance Taylor authored
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5671081
-
Dmitriy Vyukov authored
R=golang-dev, r, rsc, remyoudompheng, r CC=golang-dev https://golang.org/cl/5674086
-
Dmitriy Vyukov authored
The panic happens if -benchtime flag is specified: go test -bench=EndToEndAsyncHTTP -benchtime=120 R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5677075
-
Alex Brainman authored
R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5656084
-
Rob Pike authored
Fixes #2778. R=bradfitz, rsc, iant, adg CC=golang-dev https://golang.org/cl/5672078
-
Russ Cox authored
X ,s;^// \$G (\$D/)?\$F\.go *$;// compile;g X ,s;^// \$G (\$D/)?\$F\.go && \$L \$F\.\$A *$;// build;g X ,s;^// \$G (\$D/)?\$F\.go && \$L \$F\.\$A && \./\$A\.out *$;// run;g X ,s;^// errchk \$G( -e)? (\$D/)?\$F\.go *$;// errorcheck;g R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5671080
-
Russ Cox authored
X ,s;^// \$G (\$D/)?\$F\.go *$;// compile;g X ,s;^// \$G (\$D/)?\$F\.go && \$L \$F\.\$A *$;// build;g X ,s;^// \$G (\$D/)?\$F\.go && \$L \$F\.\$A && \./\$A\.out *$;// run;g X ,s;^// errchk \$G( -e)? (\$D/)?\$F\.go *$;// errorcheck;g R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5673079
-
Russ Cox authored
X ,s;^// \$G (\$D/)?\$F\.go *$;// compile;g X ,s;^// \$G (\$D/)?\$F\.go && \$L \$F\.\$A *$;// build;g X ,s;^// \$G (\$D/)?\$F\.go && \$L \$F\.\$A && \./\$A\.out *$;// run;g X ,s;^// errchk \$G( -e)? (\$D/)?\$F\.go *$;// errorcheck;g R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5656083
-
Russ Cox authored
X ,s;^// \$G (\$D/)?\$F\.go *$;// compile;g X ,s;^// \$G (\$D/)?\$F\.go && \$L \$F\.\$A *$;// build;g X ,s;^// \$G (\$D/)?\$F\.go && \$L \$F\.\$A && \./\$A\.out *$;// run;g X ,s;^// errchk \$G( -e)? (\$D/)?\$F\.go *$;// errorcheck;g R=golang-dev CC=golang-dev https://golang.org/cl/5673078
-
Russ Cox authored
X ,s;^// \$G (\$D/)?\$F\.go *$;// compile;g X ,s;^// \$G (\$D/)?\$F\.go && \$L \$F\.\$A *$;// build;g X ,s;^// \$G (\$D/)?\$F\.go && \$L \$F\.\$A && \./\$A\.out *$;// run;g X ,s;^// errchk \$G( -e)? (\$D/)?\$F\.go *$;// errorcheck;g R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5656082
-
Russ Cox authored
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5676077
-
Russ Cox authored
Convert cryptotype to general go1rename fix. Add os.Exec -> syscall.Exec fix along with new URL fixes. Fixes #2946. R=golang-dev, r, dsymonds CC=golang-dev https://golang.org/cl/5672072
-
David Symonds authored
R=bradfitz CC=golang-dev https://golang.org/cl/5676076
-
Nigel Tao authored
Fixes #2583. R=rsc, r CC=golang-dev https://golang.org/cl/5671078
-
David Symonds authored
Fixes #3037. R=rsc, minux.ma, r, rsc CC=golang-dev https://golang.org/cl/5674072
-
Rob Pike authored
Shows error handling and slices for Read and Write. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5676075
-
Russ Cox authored
We want to be able to implement good Windows support after Go 1. Right now Windows tries to use Unix domain sockets, and I'd rather just have it not be available. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5671076
-
Brad Fitzpatrick authored
Fixes #2774 R=golang-dev, r CC=golang-dev https://golang.org/cl/5673076
-
Mikio Hara authored
Also fixes plan9 cross-build. R=rsc, r CC=golang-dev https://golang.org/cl/5675073
-
Rob Pike authored
Fixes #2844. R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5675072
-
Mike Rosset authored
R=golang-dev, r, r CC=golang-dev https://golang.org/cl/5674067
-
Rob Pike authored
Sigh. R=golang-dev, gri, nigeltao CC=golang-dev https://golang.org/cl/5675071
-
- 16 Feb, 2012 7 commits
-
-
Rob Pike authored
This revolutionary transfiguration undergirding the code base Fixes #2945. R=golang-dev, gri CC=golang-dev https://golang.org/cl/5676072
-
Rob Pike authored
The set of errors forwarded by the os package varied with system and was therefore non-portable. Three helpers added for portable error checking: IsExist, IsNotExist, and IsPermission. One or two more may need to come, but let's keep the set very small to discourage thinking about errors that way. R=mikioh.mikioh, gustavo, r, rsc CC=golang-dev https://golang.org/cl/5672047
-
Rob Pike authored
/tmp being itself a symlink causes problems for the test, so use / as the absolute path. R=golang-dev, gri CC=golang-dev https://golang.org/cl/5675070
-
Rémy Oudompheng authored
Invalid return statements were accidentally compiling or triggering internal errors. Fixes #3044. R=golang-dev, rsc CC=golang-dev, remy https://golang.org/cl/5673074
-
Robert Griesemer authored
Complete list of tokens that can start a top-level expression. R=rsc CC=golang-dev https://golang.org/cl/5671074
-
Robert Griesemer authored
Fixes #3031. R=golang-dev, rsc, r, iant CC=golang-dev https://golang.org/cl/5676054
-
David Symonds authored
Update some other docs too. Update #2955. R=rsc CC=golang-dev https://golang.org/cl/5676060
-