- 15 Mar, 2012 17 commits
-
-
Russ Cox authored
TBR=golang-dev CC=golang-dev https://golang.org/cl/5832047
-
Russ Cox authored
Fixes #3324. Robert suggested not reporting errors until the end of the output. which I'd also like to do, but errPrintedOutput makes that a bigger change than I want to do before Go 1. This change should at least remove the confusion we had. # Building packages and commands for linux/amd64. runtime errors sync/atomic unicode unicode/utf8 math sync unicode/utf16 crypto/subtle io syscall hash crypto crypto/md5 hash/crc32 crypto/cipher crypto/hmac crypto/sha1 go install unicode: copying /tmp/go-build816525784/unicode.a to /home/rsc/g/go/pkg/linux_amd64/unicode.a: short write hash/adler32 container/list container/ring ... R=golang-dev, r CC=golang-dev https://golang.org/cl/5837054
-
Francisco Souza authored
Originally published on The Go Programming Language Blog, March 24, 2011. http://blog.golang.org/2011/03/gobs-of-data.html R=adg CC=golang-dev https://golang.org/cl/5834043
-
Andrew Gerrand authored
This leaves only the project page, which now resides at the web root. R=golang-dev, bsiegert, rsc CC=golang-dev https://golang.org/cl/5833044
-
Russ Cox authored
R=golang-dev, bradfitz, r CC=golang-dev https://golang.org/cl/5824053
-
Russ Cox authored
Fixes #3310. R=golang-dev, r CC=golang-dev https://golang.org/cl/5823051
-
Russ Cox authored
Fixes #3323. R=golang-dev, remyoudompheng, gri CC=golang-dev https://golang.org/cl/5837047
-
Russ Cox authored
R=golang-dev, gri CC=golang-dev https://golang.org/cl/5820064
-
Russ Cox authored
srcLink includes the / now; adding another yields //, which means something else entirely in URLs. Fixes #3327. R=golang-dev, gri CC=golang-dev https://golang.org/cl/5823060
-
Stefan Nilsson authored
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5833047
-
Brad Fitzpatrick authored
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5834049
-
Yasuhiro Matsumoto authored
R=golang-dev CC=golang-dev https://golang.org/cl/5823058
-
Andrew Gerrand authored
Fixes #3241. R=golang-dev, r CC=golang-dev https://golang.org/cl/5835043
-
Alex Brainman authored
Fixes #3321. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5831043
-
Francisco Souza authored
Originally published on The Go Programming Language Blog, March 31, 2011. http://blog.golang.org/2011/03/godoc-documenting-go-code.html R=golang-dev, adg CC=golang-dev https://golang.org/cl/5830043
-
Robert Hencke authored
R=golang-dev, bradfitz, dsymonds, dave, r CC=golang-dev https://golang.org/cl/5795069
-
Andrew Gerrand authored
R=golang-dev, r CC=golang-dev https://golang.org/cl/5781069
-
- 14 Mar, 2012 21 commits
-
-
Stefan Nilsson authored
R=golang-dev, adg CC=golang-dev https://golang.org/cl/5820048
-
Brad Fitzpatrick authored
Makes certain virus scanners happier. R=golang-dev, rsc, adg CC=golang-dev https://golang.org/cl/5823053
-
Andrew Gerrand authored
R=golang-dev, gri CC=golang-dev https://golang.org/cl/5819048
-
Robert Griesemer authored
R=rsc CC=golang-dev https://golang.org/cl/5820052
-
Russ Cox authored
Fixes #3306. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5821048
-
Russ Cox authored
Fixes #3320. R=golang-dev, gri CC=golang-dev https://golang.org/cl/5824051
-
Shenghou Ma authored
This function uses 48-byte of precious non-split stack for every callback function, and without this CL, it can easily overflow the non-split stack. I encountered this when trying to enable misc/cgo/test on windows/amd64. R=rsc CC=golang-dev https://golang.org/cl/5784075
-
Volker Dobler authored
Direct reference to go help build where the flags are described. R=golang-dev, adg, rsc CC=golang-dev https://golang.org/cl/5825046
-
Shenghou Ma authored
Also update documentation about IsExist() and IsNotExist(), they are not about files only. R=rsc CC=golang-dev https://golang.org/cl/5794073
-
Brad Fitzpatrick authored
R=golang-dev, bsiegert, rsc CC=golang-dev https://golang.org/cl/5822046
-
Andrew Gerrand authored
Fixes #3317. R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5784074
-
Yasuhiro Matsumoto authored
Currently, ftdetect/gofiletype.vim set fileencodings to open the file as utf-8 encoding event if the file does not contain multibyte characters. But fileencodings is global option. $ vim foo.txt :set fileencodings utf-8,ucs-bom,cp932 $ vim foo.go :set fileencodings utf-8 This change restore fileencodings before opening the file. Also added specify fileformats=unix. R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5718045
-
Andrew Gerrand authored
R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5823045
-
Rob Pike authored
Fixes #3272. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5819046
-
Mikio Hara authored
Fixes #3314. Fixes #3101 (again). R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5820047
-
Mikio Hara authored
Fixes #3101 (again). R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5825043
-
Andrew Gerrand authored
R=golang-dev CC=golang-dev https://golang.org/cl/5784072
-
Andrew Gerrand authored
src/cmd/godoc/filesystem.go:337:10: os.PathError struct literal uses untagged fields src/cmd/godoc/filesystem.go:355:10: os.PathError struct literal uses untagged fields R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5820046
-
Francisco Souza authored
Originally published on The Go Programming Language Blog, September 23, 2010. http://blog.golang.org/2010/09/go-concurrency-patterns-timing-out-and.html Update #2547. R=golang-dev, adg CC=golang-dev https://golang.org/cl/5815044
-
Robert Griesemer authored
R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5820045
-
Johan Euphrosine authored
Originally published on The Go Programming Language Blog, September 29, 2011. http://blog.golang.org/2011/09/go-imagedraw-package.html Update #2547. R=golang-dev, adg, rsc CC=golang-dev https://golang.org/cl/5755057
-
- 13 Mar, 2012 2 commits
-
-
Brad Fitzpatrick authored
Fixes #3281 R=golang-dev, r CC=golang-dev https://golang.org/cl/5819044
-
Rob Pike authored
R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5821044
-