- 13 Oct, 2011 15 commits
-
-
Russ Cox authored
Fixes #693. R=ken2 CC=golang-dev https://golang.org/cl/5265045
-
Russ Cox authored
R=golang-dev, r, gri CC=golang-dev https://golang.org/cl/5240055
-
Mikkel Krautz authored
Fixes #1009. R=adg, rsc CC=golang-dev https://golang.org/cl/5262041
-
Christopher Wedgwood authored
On recent Debian systems the gold 2.20 check triggers though Debian doesn't have version 2.20 but rather has: GNU gold (GNU Binutils for Debian 2.21.52.20110606) 1.11 ^^^^ R=rsc, iant CC=golang-dev https://golang.org/cl/5252055
-
Russ Cox authored
R=ken2 CC=golang-dev https://golang.org/cl/5245056
-
Russ Cox authored
R=golang-dev, r CC=golang-dev https://golang.org/cl/5257057
-
Russ Cox authored
R=golang-dev, r CC=golang-dev https://golang.org/cl/5245057
-
Evan Martin authored
This runs godoc and displays its output in a new buffer. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5268041
-
Brad Fitzpatrick authored
Don't imply that the tour isn't browser-based. R=adg CC=golang-dev https://golang.org/cl/5265041
-
Dmitriy Vyukov authored
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5151043
-
http://golanguage.ru/Dmitriy Vyukov authored
I check it for several months and it always says ERR_NAME_RESOLUTION_FAILED R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5272041
-
Robert Hencke authored
R=golang-dev, nigeltao CC=golang-dev https://golang.org/cl/5266041
-
Benny Siegert authored
The decompression routine is in its own file because G3 encoding (which is more complicated) will be put there. R=nigeltao CC=golang-dev https://golang.org/cl/5177047
-
Andrew Balholm authored
(test # 25 in tests1.dat) #data <p><b><div></p></b></div>X #document | <html> | <head> | <body> | <p> | <b> | <div> | <b> | | <p> | "X" R=nigeltao CC=golang-dev https://golang.org/cl/5254060
-
Nigel Tao authored
R=andybalholm CC=golang-dev https://golang.org/cl/5248061
-
- 12 Oct, 2011 17 commits
-
-
Rob Pike authored
It said the default was zero, but it's actually $GOMAXPROCS. R=golang-dev, gri CC=golang-dev https://golang.org/cl/5229059
-
Rob Pike authored
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5229057
-
Christopher Wedgwood authored
(more are possible but omitted for now as they are part of specific tests where rather than changing what is there we should probably expand the tests to cover the new case) R=rsc, dvyukov CC=golang-dev https://golang.org/cl/5247058
-
Robert Griesemer authored
(go/types will be future replacement) R=r CC=golang-dev https://golang.org/cl/5232052
-
Brad Fitzpatrick authored
Its purpose is not only undocumented, it's also unknown (to me and Russ, at least) and leads to complexity, bugs and confusion. R=golang-dev, adg, rsc CC=golang-dev https://golang.org/cl/5213043
-
Rob Pike authored
Part of Go version 1 rearrangement. No gofix, since the new name is not in Go 1. R=golang-dev, gri CC=golang-dev https://golang.org/cl/5245055
-
Brad Fitzpatrick authored
R=golang-dev, adg, rsc CC=golang-dev https://golang.org/cl/5247055
-
Robert Griesemer authored
- automated app-engine setup with bash script - added README.godoc-app - removed orphaned files in misc/godoc R=rsc CC=golang-dev https://golang.org/cl/5231042
-
Albert Strasheim authored
R=bradfitz, rsc, iant CC=golang-dev https://golang.org/cl/5167043
-
Albert Strasheim authored
R=rsc, iant, mikioh.mikioh CC=golang-dev https://golang.org/cl/5128048
-
Russ Cox authored
The work buffer management used by the garbage collector during parallel collections leaks buffers. This CL tests for and fixes the leak. R=golang-dev, dvyukov, r CC=golang-dev https://golang.org/cl/5254059
-
Dmitriy Vyukov authored
Use FlagNoPointers and do not zeroize memory when allocate strings. test/garbage/parser.out old new run #1 32.923s 32.065s run #2 33.047s 31.931s run #3 32.702s 31.841s run #4 32.718s 31.838s run #5 32.702s 31.868s R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5259041
-
Luuk van Dijk authored
Fixes #2274 R=rsc, gri, dsymonds, bradfitz, lvd CC=golang-dev https://golang.org/cl/5149045
-
Robert Griesemer authored
This mode was needed before for clients of the go/scanner that were parsing non-Go code. All those clients have been moved to scanner or have been deleted from the library. R=r CC=golang-dev https://golang.org/cl/5232051
-
Robert Griesemer authored
The current implementation of formatting for incomplete programs cannot tolerate program rewrites; ignore -rewrite in that case with a warning message (temporary solution). Fix a couple of crashes that were introduced recently. Fixes #2348. R=rsc CC=golang-dev https://golang.org/cl/5233054
-
Robert Griesemer authored
R=r, bradfitz CC=golang-dev https://golang.org/cl/5249055
-
Robert Griesemer authored
pkg/ebnf -> pkg/exp/ebnf cmd/ebnflint -> pkg/exp/ebnflint R=golang-dev, r CC=golang-dev https://golang.org/cl/5188042
-
- 11 Oct, 2011 8 commits
-
-
Brad Fitzpatrick authored
R=golang-dev, r CC=golang-dev https://golang.org/cl/5238051
-
Rob Pike authored
Slices are better: http://code.google.com/p/go-wiki/wiki/SliceTricks R=golang-dev, bradfitz, dsymonds CC=golang-dev https://golang.org/cl/5248060
-
Alex Brainman authored
Fixes #2215. Fixes #2216. R=golang-dev, dave, rsc CC=golang-dev https://golang.org/cl/5248055
-
Rob Pike authored
A fun experiment but not carrying its weight. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5246054
-
Dave Cheney authored
Fixes #1998. ztypes_linux_arm.go has been regenerated on an arm5 debian sid host and includes a few new constants. R=golang-dev, mikioh.mikioh, rsc CC=golang-dev https://golang.org/cl/5240047
-
Robert Griesemer authored
This also shows the source code of exported functions in server mode (e.g. pkg/big/?m=src). Fixes #2360. R=rsc CC=golang-dev https://golang.org/cl/5254057
-
Louis Kruger authored
The following ciphersuites are added: TLS_RSA_WITH_3DES_EDE_CBC_SHA TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA This change helps conform to the TLS1.1 standard because the first ciphersuite is "mandatory" in RFC4346 R=golang-dev, agl, rsc CC=golang-dev https://golang.org/cl/5164042
-
Russ Cox authored
R=golang-dev, gri CC=golang-dev https://golang.org/cl/5229052
-