- 23 Sep, 2013 2 commits
-
-
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 8 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
-
Russ Cox authored
Fixes issues 6420. R=ken2 CC=golang-dev https://golang.org/cl/13703044
-
Russ Cox authored
The line number alone does not help when the line is case '~', '*', '(', ')', '[', ']', '{', '}', '?', ':', ';', ',', '*', '%', '^', '!', '=', '<', '>', '+', '-', '&', '|': R=ken2 CC=golang-dev https://golang.org/cl/13431046
-
Russ Cox authored
If a fault happens in malloc, inevitably the next thing that happens is a deadlock trying to allocate the panic value that says the fault happened. Stop doing that, two ways. First, reject panic in malloc just as we reject panic in garbage collection. Second, runtime.panicstring was using an error implementation backed by a Go string, so the interface held an allocated *string. Since the actual errors are C strings, define a new error implementation backed by a C char*, which needs no indirection and therefore no allocation. This second fix will avoid allocation for errors like nil panic derefs or division by zero, so it is worth doing even though the first fix should take care of faults during malloc. Update #6419 R=golang-dev, dvyukov, dave CC=golang-dev https://golang.org/cl/13774043
-
Robert Griesemer authored
See also issue 6428. R=r, rsc CC=golang-dev https://golang.org/cl/13794043
-
Shenghou Ma authored
Fixes #6245. R=golang-dev, bradfitz, rsc CC=golang-dev https://golang.org/cl/13751045
-
David Symonds authored
R=golang-dev, r CC=golang-dev https://golang.org/cl/13775045
-
- 19 Sep, 2013 9 commits
-
-
Ian Lance Taylor authored
R=golang-dev, r CC=golang-dev https://golang.org/cl/13788043
-
Andrew Gerrand authored
Looks like the dist tool really doesn't like tags. R=golang-dev, r CC=golang-dev https://golang.org/cl/13354049
-
Rémy Oudompheng authored
Keeping pointers from the pre-walk phase confuses the race detection instrumentation. Fixes #6418. R=golang-dev, dvyukov, r CC=golang-dev https://golang.org/cl/13368057
-
Andrew Gerrand authored
R=golang-dev, dave, r CC=golang-dev https://golang.org/cl/13777043
-
Andrew Gerrand authored
This will allow us to cut binaries with names like: go1.2rc1.darwin-amd64-osx10.6.pkg go1.2rc1.darwin-amd64-osx10.8.pkg R=golang-dev, r CC=golang-dev https://golang.org/cl/13629045
-
Shenghou Ma authored
Was causing "invalid symbol binding" and thus "malformed pe file" error. R=golang-dev, alex.brainman, adg CC=golang-dev https://golang.org/cl/13722050
-
Shenghou Ma authored
Fixes #5986. R=golang-dev, rsc, alex.brainman CC=golang-dev https://golang.org/cl/13261055
-
Shenghou Ma authored
Fixes #5740. R=iant, rsc, luisbebop CC=gobot, golang-dev https://golang.org/cl/10345046
-
Rob Pike authored
Unlike the other output from the -x flag, it was going to stdout. Fixes #6362. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/13746044
-
- 18 Sep, 2013 8 commits
-
-
Ian Lance Taylor authored
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/13632057
-
Ian Lance Taylor authored
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/13451045
-
Alan Donovan authored
R=gri CC=golang-dev https://golang.org/cl/13471045
-
Ian Lance Taylor authored
R=golang-dev, r CC=golang-dev https://golang.org/cl/13683046
-
-
Andrew Gerrand authored
R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/13501050
-
Dave Cheney authored
R=rsc, r CC=golang-dev https://golang.org/cl/13749044
-
Ian Lance Taylor authored
This is a framework for docs on the subject more than it is actual docs. The section header in go/doc.go just says "C", not "C/C++," because otherwise godoc doesn't recognize the line as a section header. Fixes #5473. R=golang-dev, r CC=golang-dev https://golang.org/cl/13280050
-
- 17 Sep, 2013 6 commits
-
-
Robert Griesemer authored
See also issue 6414. R=r CC=golang-dev https://golang.org/cl/13683044
-
Robert Griesemer authored
Avoid future 'declared and not used error'. See also issue 6414. R=r CC=golang-dev https://golang.org/cl/13242058
-
Ian Lance Taylor authored
Gccgo got this wrong, and evidently nothing else tests it. R=golang-dev, r CC=golang-dev https://golang.org/cl/13709045
-
Russ Cox authored
This eliminates ~75% of the nil checks being emitted, on all architectures. We can do better, but we need a bit more general support from the compiler, and I don't want to do that so close to Go 1.2. What's here is simple but effective and safe. A few small code generation cleanups were required to make the analysis consistent on all systems about which nil checks are omitted, at least in the test. Fixes #6019. R=ken2 CC=golang-dev https://golang.org/cl/13334052
-
Adam Langley authored
47ec7a68b1a2 added support for ECDSA ciphersuites but didn't alter the cipher suite selection to take that into account. Thus Go servers could try and select an ECDSA cipher suite while only having an RSA certificate, leading to connection failures. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/13239053
-
Ian Lance Taylor authored
In particular document that the Go tool will look for certain file extensions and compile with them with either the C or the C++ compiler. Fixes #6393. R=golang-dev, r CC=golang-dev https://golang.org/cl/13733043
-