- 08 Sep, 2011 6 commits
-
-
Paul Lalonde authored
I don't know the protocol regarding the zsyscall files which appear to be hand-generated, so I've re-done them and added them to the change. R=rsc, alex.brainman, nigeltao CC=golang-dev https://golang.org/cl/4975060
-
Nigel Tao authored
R=dsymonds CC=golang-dev https://golang.org/cl/4961073
-
Alex Brainman authored
R=golang-dev, adg CC=golang-dev https://golang.org/cl/4962057
-
Andrew Gerrand authored
R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/4973070
-
Andrew Gerrand authored
R=dsymonds, r, rsc CC=golang-dev https://golang.org/cl/4981047
-
Andrew Gerrand authored
R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/4978057
-
- 07 Sep, 2011 17 commits
-
-
Andrew Gerrand authored
R=r CC=golang-dev https://golang.org/cl/4991043
-
Andrew Gerrand authored
R=dsymonds, rsc, r CC=golang-dev https://golang.org/cl/4968070
-
Robert Griesemer authored
API change. Needs further reflection. ««« original CL description path/filepath: Simplify Walk interface The last argument of filepath.Walk was removed, and the Visitor interface now contains an Error method that is called on errors. Fixes #2237. R=golang-dev, gri, r CC=golang-dev https://golang.org/cl/4964067 »»» R=r CC=golang-dev https://golang.org/cl/4974065
-
Gustavo Niemeyer authored
The last argument of filepath.Walk was removed, and the Visitor interface now contains an Error method that is called on errors. Fixes #2237. R=golang-dev, gri, r CC=golang-dev https://golang.org/cl/4964067
-
Russ Cox authored
The linker would catch them if gc succeeded, but too often the cycle manifests as making the current package and the imported copy of itself appear as different packages, which result in type signature mismatches that confuse users. As a crutch, add the -p flag to say 'if you see an import of this package, give up early'. Results in messages like (during gotest in sort): export_test.go:7: import "sort" while compiling that package (import cycle) export_test.go:7: import "container/heap": package depends on "sort" (import cycle) Fixes #2042. R=ken CC=bradfitz, dsymonds, golang-dev https://golang.org/cl/4972057
-
Russ Cox authored
R=golang-dev, r CC=golang-dev https://golang.org/cl/4961069
-
Hector Chu authored
Verified with objdump -W. R=alex.brainman, rsc CC=golang-dev https://golang.org/cl/4974061
-
Russ Cox authored
Also add exp/regexp to build (forgot before). At this point I am very confident in exp/regexp's behavior. It should be usable as a drop-in replacement for regexp now. Later CLs could introduce a CompilePOSIX to get at traditional POSIX ``extended regular expressions'' as in egrep and also an re.MatchLongest method to change the matching mode to leftmost longest instead of leftmost first. On the other hand, I expect very few people to use either. R=r, r, gustavo CC=golang-dev https://golang.org/cl/4990041
-
Mikio Hara authored
Note that this CL will break your existing code which uses ParseCIDR. This CL changes ParseCIDR("172.16.253.121/28") to return the IP address "172.16.253.121", the network implied by the network number "172.16.253.112" and mask "255.255.255.240". R=rsc, borman CC=golang-dev https://golang.org/cl/4749043
-
Lucio De Re authored
R=golang-dev CC=golang-dev, rsc https://golang.org/cl/4975055
-
Ziad Hatahet authored
See http://research.swtch.com/2008/01/killing-quicksort.html for more info. Fixes #467. R=r, rsc CC=golang-dev https://golang.org/cl/4591051
-
Hector Chu authored
Extract Windows filenames correctly. Don't remove receivers from method names. Fixes #2227. R=rsc CC=golang-dev https://golang.org/cl/4969059
-
Russ Cox authored
R=golang-dev, r CC=golang-dev https://golang.org/cl/4964066
-
Dmitriy Vyukov authored
R=rsc CC=golang-dev https://golang.org/cl/4950060
-
Russ Cox authored
R=nigeltao CC=golang-dev https://golang.org/cl/4987041
-
Luuk van Dijk authored
Fixes #2225 R=rsc, nigeltao, dave CC=bradfitz, golang-dev, mikioh.mikioh https://golang.org/cl/4972056
-
David Symonds authored
It actually occurred with the previous weekly snapshot. R=golang-dev, adg CC=golang-dev https://golang.org/cl/4961066
-
- 06 Sep, 2011 7 commits
-
-
Robert Griesemer authored
R=r CC=golang-dev https://golang.org/cl/4984052
-
Rob Pike authored
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/4951066
-
Rob Pike authored
Fixes #2235 R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/4967056
-
Robert Griesemer authored
- func f(int,) is a legal signature - func f(...int,) is a legal signature Defer checking for correct use of "..." with last paremeter type to type checker instead of parser. R=rsc CC=golang-dev https://golang.org/cl/4973059
-
Robert Griesemer authored
There may be more fine-tuning down the line, but this CL fixes the most pressing issue at hand. Also: gofmt -w src misc Fixes #1524. R=rsc, bradfitz CC=golang-dev https://golang.org/cl/4975053
-
Russ Cox authored
Most web frameworks allow ; as a synonym for &, following a recommendation in some versions of the HTML specification. Do the same. Remove overuse of Split. Move ParseQuery tests from package http to package url. Fixes #2210. R=golang-dev, r CC=golang-dev https://golang.org/cl/4973062
-
Russ Cox authored
allocparams + tempname + compactframe all knew about how to place stack variables. Now only compactframe, renamed to allocauto, does the work. Until the last minute, each PAUTO variable is in its own space and has xoffset == 0. This might break 5g. I get failures in concurrent code running under qemu and I can't tell whether it's 5g's fault or qemu's. We'll see what the real ARM builders say. R=ken2 CC=golang-dev https://golang.org/cl/4973057
-
- 05 Sep, 2011 10 commits
-
-
Alex Brainman authored
Fixes #2129. R=rsc CC=golang-dev https://golang.org/cl/4934049
-
Russ Cox authored
Fixes #2232. R=ken2 CC=golang-dev https://golang.org/cl/4960054
-
Marcel van Lohuizen authored
- fixed performance bug that could lead to O(n^2) behavior - performance improvement for ASCII case R=r, r CC=golang-dev https://golang.org/cl/4956060
-
Joel Sing authored
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/4950064
-
Mikio Hara authored
R=fullung, golang-dev, rsc CC=golang-dev https://golang.org/cl/4986041
-
Mike Rosset authored
R=golang-dev, rsc CC=golang-dev, mike.rosset https://golang.org/cl/4950062
-
Christopher Wedgwood authored
There was a time (in the past) when this wasn't robust. R=rsc, dvyukov CC=golang-dev https://golang.org/cl/4965058
-
Andrew Gerrand authored
Fixes #2219. R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/4950063
-
Andrew Gerrand authored
R=n13m3y3r CC=golang-dev https://golang.org/cl/4918050
-
Robert Hencke authored
R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/4963059
-