- 25 Sep, 2013 5 commits
-
-
Rob Pike authored
R=golang-dev, adg CC=golang-dev https://golang.org/cl/13877044
-
Andrew Gerrand authored
R=golang-dev, minux.ma CC=golang-dev https://golang.org/cl/13892043
-
Andrew Gerrand authored
Fixes #5663. R=golang-dev, r CC=golang-dev https://golang.org/cl/13891043
-
Ian Lance Taylor authored
Use the symbol prefixes with the prologue functions when using gccgo. Use an & when referring to a function declared as a variable. Fix the malloc prologue function. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/13878043
-
Rob Pike authored
After text/template.Parse, all the templates may have changed, so we need to set them all back to their unescaped state. The code did this but (mea culpa) forgot to set the Tree field of the html/template struct. Since the Tree is reset during escaping, this only matters if an error arises during escaping and we want to print a message. Fixes #6459. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/13877043
-
- 24 Sep, 2013 10 commits
-
-
Robert Griesemer authored
If Slice3 is set, the expression is a 3-index slice expression (2 colons). Required for type-checking. Backward-compatible API extension. R=r, rsc CC=golang-dev https://golang.org/cl/13826050
-
Kamil Kisiel authored
R=golang-dev, iant, gri CC=golang-dev https://golang.org/cl/13869043
-
Russ Cox authored
R=golang-dev, minux.ma, josharian CC=golang-dev https://golang.org/cl/13859043
-
Russ Cox authored
Fixes #6397. R=golang-dev, bradfitz, iant CC=golang-dev https://golang.org/cl/13858043
-
Shenghou Ma authored
Fixes #6426. R=golang-dev, dave, rsc CC=golang-dev https://golang.org/cl/13704044
-
Alex Brainman authored
Since CL 38bf89161a72 raw socket tests are not executed on windows builders. This change re-enable them again. It will attempt to run raw socket tests only if user is permitted to create raw socket by OS. Fixes #6392 R=golang-dev CC=golang-dev, mikioh.mikioh, rsc https://golang.org/cl/13422044
-
Brad Fitzpatrick authored
newTypeEncoder (called once per type and then cached) was looking at the first value seen of that type's addressability and caching the encoder decision. If the first value seen was addressable and a future one wasn't, it would panic. Instead, introduce a new wrapper encoder type that checks CanAddr at runtime. Fixes #6458 R=golang-dev, rsc CC=golang-dev https://golang.org/cl/13839045
-
Russ Cox authored
And same for UDP. Fixes #6465. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/13740048
-
Albert Strasheim authored
Fixes #6455. R=mikioh.mikioh, rsc CC=golang-dev https://golang.org/cl/13457058
-
Andrew Gerrand authored
Fixes #6460. R=golang-dev, r CC=golang-dev https://golang.org/cl/13761046
-
- 23 Sep, 2013 16 commits
-
-
Russ Cox authored
Fixes a bug reported privately. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/13846043
-
Dmitriy Vyukov authored
Fixes #6347. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/13845044
-
Brad Fitzpatrick authored
R=golang-dev, minux.ma CC=golang-dev https://golang.org/cl/13820046
-
Russ Cox authored
The syntax accepted is full build constraints, not just GOOS, GOARCH, and GOOS/GOARCH. R=golang-dev, iant CC=golang-dev https://golang.org/cl/13504048
-
Russ Cox authored
Fixes #6417. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/13843043
-
Russ Cox authored
Fixes #6456. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/13740047
-
Russ Cox authored
Makes build unnecessarily slower. Will fix the parser instead. ««« original CL description runtime/pprof: run TestGoroutineSwitch for longer Short test now takes about 0.5 second here. Fixes #6417. The failure was also seen on our builders. R=golang-dev, minux.ma, r CC=golang-dev https://golang.org/cl/13321048 »»» R=golang-dev, minux.ma CC=golang-dev https://golang.org/cl/13720048
-
Kamil Kisiel authored
Fix a few minor vet quibbles while I'm here. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/13235059
-
Shenghou Ma authored
Fixes #6431. Change suggested by kin.wilson.za. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/13314048
-
Péter Surányi authored
Fixes #6449. R=golang-dev, adg CC=golang-dev https://golang.org/cl/13829044
-
Rob Pike authored
In an indexed verb such as %[3]d, if the index is out of range, don't skip processing the rest of the verbs. The bug was that the bad index set a bit for the whole format instead of just the verb. Ok for 1.2 because this is a bug in a 1.2 feature. Fixes #6434 R=golang-dev, adg CC=golang-dev https://golang.org/cl/13632058
-
Shenghou Ma authored
doc/go1.2: document that godoc and vet will always be installed to their old locations (not $GOPATH/bin). R=golang-dev, r CC=golang-dev https://golang.org/cl/13830043
-
Andrew Gerrand authored
Fixes #6439. R=r, minux.ma CC=golang-dev https://golang.org/cl/13478045
-
Rob Pike authored
A number was wrong; adjust as suggested to make things clearer. Fixes #6452 R=golang-dev, minux.ma CC=golang-dev https://golang.org/cl/13422046
-
Dmitry Chestnykh authored
Date header indicated that it contained GMT time, however it actually sent local time. Fixed by converting time to UTC. Also fixes incorrect comment in appendTime(). Regression since CL 9432046. R=golang-dev, dave, bradfitz CC=golang-dev https://golang.org/cl/13386047
-
ChaiShushan authored
notepadplus can only support some normal golang's hex and imaginary numbers. it can't detect some special number, eg. 1./1.e/1.i/1+0.1i (omit "0" in ".0"). R=golang-dev, gvdschoot CC=ajstarks, golang-dev https://golang.org/cl/13401047
-
- 22 Sep, 2013 4 commits
-
-
Andrew Gerrand authored
Generated by addca. R=gobot CC=golang-dev https://golang.org/cl/13819045
-
Dmitriy Vyukov authored
Fixes #6305. R=golang-dev, dave, alex.brainman, r CC=golang-dev https://golang.org/cl/13359046
-
Alex Brainman authored
Short test now takes about 0.5 second here. Fixes #6417. The failure was also seen on our builders. R=golang-dev, minux.ma, r CC=golang-dev https://golang.org/cl/13321048
-
Brad Fitzpatrick authored
Fixes #6124 R=golang-dev, minux.ma CC=golang-dev https://golang.org/cl/13500046
-
- 21 Sep, 2013 3 commits
-
-
Dominik Honnef authored
R=r CC=golang-dev https://golang.org/cl/13735044
-
Rob Pike authored
These were bullet points that I had neglected to flesh out. R=golang-dev, dvyukov CC=golang-dev https://golang.org/cl/13816043
-
Carl Shapiro authored
The select2.go test assumed that the memory allocated between its two samplings of runtime.ReadMemStats is strictly increasing. To avoid failing the tests when this is not true, a greater-than check is introduced before computing the difference in allocated memory. R=golang-dev, r, cshapiro CC=golang-dev https://golang.org/cl/13701046
-
- 20 Sep, 2013 2 commits
-
-
Russ Cox authored
R=golang-dev, iant CC=golang-dev https://golang.org/cl/13588044
-
Russ Cox authored
Fixes #5087. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/13812043
-