- 29 Aug, 2013 10 commits
-
-
Lucio De Re authored
These instructions are emitted when GO386=387 or the target i386 CPU does not have SSE2 capabilities. Fixes #6215. R=golang-dev, remyoudompheng CC=golang-dev https://golang.org/cl/12812045
-
Rémy Oudompheng authored
The compiler computes initialization order by finding a spanning tree between a package's global variables. But it does so by walking both variables and functions and stops detecting cycles between variables when they mix with a cycle of mutually recursive functions. Fixes #4847. R=golang-dev, daniel.morsing, rsc CC=golang-dev https://golang.org/cl/9663047
-
Rémy Oudompheng authored
Fixes #6140. R=golang-dev, iant CC=golang-dev https://golang.org/cl/13083043
-
Rob Pike authored
Thanks to beatgammit for the fix. Fixes #5408. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/13261048
-
Robert Daniel Kortschak authored
R=r, dvyukov CC=golang-dev https://golang.org/cl/13348045
-
Andrew Gerrand authored
Accidentally submitted. ««« original CL description encoding/json: add "overflow" struct tag option Fixes #6213. R=golang-dev, dsymonds, bradfitz CC=golang-dev https://golang.org/cl/13180043 »»» R=golang-dev CC=golang-dev https://golang.org/cl/13234045
-
Andrew Gerrand authored
Before this fix, it was always an error to use the Close method on the io.WriteCloser obtained from Cmd.StdinPipe, as it would race with the Close performed by Cmd.Wait. Fixes #6270. R=golang-dev, r, remyoudompheng, bradfitz, dsymonds CC=golang-dev https://golang.org/cl/13329043
-
Andrew Gerrand authored
Fixes #6213. R=golang-dev, dsymonds, bradfitz CC=golang-dev https://golang.org/cl/13180043
-
Dave Cheney authored
Adapted from https://golang.org/cl/11564044. Fixes breakage of darwin-amd64-race builder. R=golang-dev, r CC=golang-dev https://golang.org/cl/13352045
-
Rob Pike authored
See how it flies. We'll disable it again if the underlying issue is not resolved. See issue 4155 for details. Fixes #4155. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/13368045
-
- 28 Aug, 2013 2 commits
-
-
Mikio Hara authored
Update #4856 R=golang-dev, bradfitz, dave CC=golang-dev https://golang.org/cl/12916046
-
Mikio Hara authored
Fixes #3944. R=golang-dev, r CC=golang-dev https://golang.org/cl/13263043
-
- 29 Aug, 2013 2 commits
-
-
Rob Pike authored
Causes the package dependencies to include those for race detection. Fixes #5653. R=golang-dev, dave, bradfitz CC=golang-dev https://golang.org/cl/13236045
-
Rob Pike authored
R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/13334043
-
- 28 Aug, 2013 4 commits
-
-
Robin Eklind authored
R=golang-dev, remyoudompheng CC=golang-dev https://golang.org/cl/12795052
-
Brad Fitzpatrick authored
Merge the comment from runtime/time.goc ("at least") and also note that negative is okay and won't crash. I see people going out of their way to avoid passing a negative value to Sleep. R=golang-dev, adg, r, alex.brainman CC=golang-dev https://golang.org/cl/13271045
-
Rob Pike authored
The method is simple: the parser just parses {{if A}}a{{else if B}}b{{end}} to the same tree that would be produced by {{if A}}a{{else}}{{if B}}b{{end}}{{end}} Thus no changes are required in text/template itself or in html/template, only in text/template/parse. Fixes #6085 R=golang-dev, adg CC=golang-dev https://golang.org/cl/13327043
-
Josh Bleecher Snyder authored
The previous wording, though accurate, was hard to parse. In particular, it was tempting to interpret "the method" as referring to "the function f" instead of "Do", and required effort to find the correct antecedent for "this receiver". R=golang-dev, bradfitz, r CC=golang-dev https://golang.org/cl/13307043
-
- 27 Aug, 2013 14 commits
-
-
Andrew Gerrand authored
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/13313043
-
Brad Fitzpatrick authored
Fixes #6221 R=golang-dev, r CC=golang-dev https://golang.org/cl/13289043
-
Brad Fitzpatrick authored
It wasn't obvious that the Auth could be nil. R=golang-dev, iant CC=golang-dev https://golang.org/cl/13060048
-
Rémy Oudompheng authored
Fixes #5910. Fixes #6260. R=golang-dev, daniel.morsing CC=golang-dev https://golang.org/cl/13257044
-
Rémy Oudompheng authored
Fixes #6247. R=golang-dev, lucio.dere, bradfitz CC=golang-dev https://golang.org/cl/13216043
-
Shivakumar GN authored
Removed posix assumptions in temporary file generation Removed curl dependence Changed opening of svg file These must now work including symbol resolution. [1] go tool pprof <prog_name> http://.../debug/pprof/profile [2] go tool pprof http://.../debug/pprof/profile Fixes 6177. R=golang-dev, alex.brainman, bradfitz, kamil.kisiel CC=golang-dev https://golang.org/cl/13085043
-
Caleb Spare authored
A bullet list was getting mangled in godoc. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/13060047
-
Volker Dobler authored
Reduce the number of allowed swap operations during stable sort. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/12907045
-
Alan Donovan authored
Some users have multiple Go development trees and invoke the 'go' tool via a wrapper that sets GOROOT and GOPATH based on the current directory. Such users should customize go-command to point to the wrapper script. R=dominik.honnef CC=golang-dev https://golang.org/cl/13233043
-
Volker Dobler authored
No measurable impact on performance on amd64 R=golang-dev, khr, bradfitz CC=golang-dev https://golang.org/cl/13096045
-
Mathieu Lonjaret authored
R=golang-dev, dave CC=golang-dev https://golang.org/cl/13274043
-
Alex Brainman authored
Fixes #4195 R=golang-dev, mikioh.mikioh CC=golang-dev https://golang.org/cl/12960046
-
Rob Pike authored
R=golang-dev, adg CC=golang-dev https://golang.org/cl/13262043
-
Rob Pike authored
Apply the same rules for argument evaluation and indirection that are used by the regular evaluator. Fixes #5802 R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/13257043
-
- 26 Aug, 2013 4 commits
-
-
Mikio Hara authored
Just forgot to include this in CL 12843043. Also consolidates the code dealing with test environment. Update #6122 R=alex.brainman CC=golang-dev https://golang.org/cl/13184043
-
Evan Shaw authored
R=golang-dev, dave, bradfitz, adg CC=golang-dev https://golang.org/cl/13249043
-
Adam Langley authored
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/13232043
-
Volker Dobler authored
RFC 6265 allows a leading dot in a cookie domain attribute but is clear (see section 4.1.1) that a Set-Cookie header should be sent without these dots. R=bradfitz CC=golang-dev https://golang.org/cl/13111043
-
- 25 Aug, 2013 1 commit
-
-
Rob Pike authored
With my apologies. R=golang-dev, alex.brainman CC=golang-dev https://golang.org/cl/12984045
-
- 24 Aug, 2013 3 commits
-
-
Mikio Hara authored
NetBSD 6 kernel and beyond require 64-bit aligned access to routing facilities. Fixes #6226. R=golang-dev, bsiegert, bradfitz CC=golang-dev https://golang.org/cl/13170043
-
Brad Fitzpatrick authored
== isn't defined on slices, so don't use it in docs. R=golang-dev, iant CC=golang-dev https://golang.org/cl/12983045
-
Brad Fitzpatrick authored
OS X in particular deletes tmp files (but not directories) pretty reliably. Ask hg whether the go.tools directory in tmp is good before using it. Fixes issue Rob and others were reporting, which I just hit myself now. R=golang-dev, r CC=golang-dev https://golang.org/cl/13084049
-