- 09 Feb, 2012 9 commits
-
-
Alex Brainman authored
Do not rewrite commands if they have .bash extnsion. Use path/filepath to manipulate file paths everywhere. Use all.bat on windows, not all.bash. Use HOMEDRIVE/HOMEPATH to find .gobuildkey on windows. R=rsc CC=golang-dev https://golang.org/cl/5630062
-
Rob Pike authored
Fixes #2798. R=golang-dev, bradfitz, r, rsc, rsc CC=golang-dev https://golang.org/cl/5642071
-
Rob Pike authored
Fixes bug 2922. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5642072
-
Rob Pike authored
Put the 'go test' flags into 'go help test', so 'go help testflags' is about the flags for the compiled test binary. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5641060
-
Brad Fitzpatrick authored
Made the godoc overview section oddly indented compared to the other code blocks. R=golang-dev, mikioh.mikioh, dsymonds, r CC=golang-dev https://golang.org/cl/5645060
-
Gary Burd authored
R=golang-dev, gri CC=golang-dev https://golang.org/cl/5645053
-
Rob Pike authored
Fixes #2629. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5642069
-
Rob Pike authored
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5644063
-
Andrew Gerrand authored
R=golang-dev, rsc, bradfitz CC=golang-dev https://golang.org/cl/5639063
-
- 08 Feb, 2012 31 commits
-
-
Mikio Hara authored
R=r, rsc CC=golang-dev https://golang.org/cl/5644055
-
Rob Pike authored
The doc is not linked anywhere yet; that will come later. R=golang-dev, adg, gri, rsc, edsrzf CC=golang-dev https://golang.org/cl/5647050
-
Shenghou Ma authored
R=rsc CC=golang-dev https://golang.org/cl/5642064
-
Rob Pike authored
R=rsc CC=golang-dev https://golang.org/cl/5642065
-
Rob Pike authored
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5644059
-
Shenghou Ma authored
R=rsc CC=golang-dev https://golang.org/cl/5642063
-
Russ Cox authored
Fixes #2921. R=golang-dev, n13m3y3r CC=golang-dev https://golang.org/cl/5647057
-
Russ Cox authored
R=golang-dev, r CC=golang-dev https://golang.org/cl/5641057
-
Russ Cox authored
R=golang-dev, gri CC=golang-dev https://golang.org/cl/5646055
-
Russ Cox authored
Other wordings are possible but defining this as one of the ways to proceed means we don't have to add language about this to the description of select. Fixes #2825. R=golang-dev, gri, r CC=golang-dev https://golang.org/cl/5643062
-
Rob Pike authored
Today is Size day and the compiler will reject old code using these functions. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5644053
-
Robert Griesemer authored
Issue 2856 asks for a rename of a few methods to a more idiomatic Go style. This is a very early API that evolved organically throughout the years. Together with the fact that ErrorVectors were embedded in other data structures (e.g. Parser), just renaming methods (e.g. GetError -> Error) would lead to undesired behavior (e.g., Parser would act like an Error). Instead, cleaned up API a bit more: - removed ErrorVector in favor of ErrorList (already present) - simplified Scanner.Init by making the error handler a function instead of requiring an ErrorHandler implementation - adjusted helper functions accordingly - updated Go 1 doc Fixes #2856. R=rsc CC=golang-dev https://golang.org/cl/5624047
-
Paul Borman authored
On 64 bit UML it is not possible to reserve memory at 0xF8<<32. Detect when linux cannot use these high virtual memory addresses and drop back to the 32 bit memory allocator. R=rsc, cw CC=golang-dev https://golang.org/cl/5634050
-
Shenghou Ma authored
R=rsc CC=golang-dev https://golang.org/cl/5643061
-
Russ Cox authored
Fixes #1814. R=golang-dev, gri CC=golang-dev https://golang.org/cl/5647054
-
Russ Cox authored
Fixes #1797. R=golang-dev, gri CC=golang-dev https://golang.org/cl/5645058
-
Russ Cox authored
Otherwise, the registration semantics are init-order-dependent, which I was trying very hard to avoid in the API. This may break broken programs. Fixes #2900. R=golang-dev, r, bradfitz, dsymonds, balasanjay, kevlar CC=golang-dev https://golang.org/cl/5644051
-
Russ Cox authored
Fixes #1955. R=golang-dev, gri CC=golang-dev https://golang.org/cl/5643058
-
Robert Griesemer authored
R=r, rsc CC=golang-dev https://golang.org/cl/5639053
-
Dmitriy Vyukov authored
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5642059
-
Russ Cox authored
R=golang-dev, iant CC=golang-dev https://golang.org/cl/5646053
-
Russ Cox authored
Same idea as heap profile: how did each thread get created? Low memory (256 bytes per OS thread), high reward for programs that suddenly have many threads running. Fixes #1477. R=golang-dev, r, dvyukov CC=golang-dev https://golang.org/cl/5639059
-
Jamie Gennis authored
This changes makes constant propagation compare 'from' values using node pointers rather than symbol names when checking to see whether a set operation is redundant. When a function is inlined multiple times in a calling function its arguments will share symbol names even though the values are different. Prior to this fix the bug409 test would hit a case with 6g where an LEAQ instruction was incorrectly eliminated from the second inlined function call. 8g appears to have had the same bug, but the test did not fail there. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5646044
-
Russ Cox authored
R=golang-dev, iant CC=golang-dev https://golang.org/cl/5646051
-
Russ Cox authored
Fixes #2918. TBR=golang-dev CC=golang-dev https://golang.org/cl/5639062
-
Andrew Pritchard authored
- convert from nil pointers to the nil interface{} - dereference non-nil pointers - convert from nil interface{}s to nil pointers - allocate pointers for non-nil interface{}s - tests for all of the above R=golang-dev, bradfitz, rsc, rogpeppe CC=golang-dev https://golang.org/cl/5630052
-
Brad Fitzpatrick authored
Fixes #2875 R=golang-dev, r, rsc CC=golang-dev https://golang.org/cl/5641052
-
Russ Cox authored
R=golang-dev, r, iant CC=golang-dev https://golang.org/cl/5641051
-
Brad Fitzpatrick authored
R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5646049
-
Russ Cox authored
Add Expand, ExpandString for access to the substitution functionality. Fixes #2736. R=r, bradfitz, r, rogpeppe, n13m3y3r CC=golang-dev https://golang.org/cl/5638046
-
Russ Cox authored
encoding/xml: handle time.Time as recognized type The long term plan is to define an interface that time.Time can implement and that encoding/xml can call, but we are not going to try to define that interface before Go 1. Instead, special-case time.Time in package xml, because it is such a fundamental type, as a stop-gap. The eventual methods will behave this way. Fixes #2793. R=golang-dev, r, r, n13m3y3r CC=golang-dev https://golang.org/cl/5634051
-