- 27 Aug, 2013 8 commits
-
-
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 9 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
-
Brad Fitzpatrick authored
This was breaking people setting GOARCH=386 before running all.bash on amd64 machines. cmd/go puts different architecture binaries where "go tool" can't find them. R=golang-dev, r, khr CC=golang-dev https://golang.org/cl/13139044
-
Mikio Hara authored
R=golang-dev, dave CC=golang-dev https://golang.org/cl/12917050
-
Nicolas Owens authored
Current for Plan 9 is implemented with /dev/user for Uid/Gid/Username/Name, and $home environment variable for HomeDir. Implementing Lookup/LookupId is not done, which would require parsing /adm/users. It is unclear of how much benefit this would be. R=golang-dev CC=bradfitz, golang-dev, r https://golang.org/cl/13203043
-
Rémy Oudompheng authored
Also use clone(2) syscall instead of fork(). Fixes #6214. R=golang-dev, bradfitz, dave CC=golang-dev https://golang.org/cl/13159044
-
Keith Randall authored
the use of the flag, especially for objects which actually do have pointers but we don't want the GC to scan them. R=golang-dev, cshapiro CC=golang-dev https://golang.org/cl/13181045
-
Keith Randall authored
slice type to an array type, the haspointer-ness may change. Before this change, we'd sometimes get types like [1]int marked as having pointers. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/13189044
-
- 23 Aug, 2013 16 commits
-
-
Carl Shapiro authored
Update #5780 R=golang-dev, cshapiro, dave, bradfitz CC=golang-dev https://golang.org/cl/12869049
-
Rémy Oudompheng authored
Update #6214 R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/13160043
-
Joel Sing authored
Enable remaining packages (crypto, mime, path, time) to build on dragonfly. R=bradfitz CC=golang-dev https://golang.org/cl/13190043
-
Joel Sing authored
Make the net package build and work on dragonfly. R=bradfitz CC=golang-dev https://golang.org/cl/13173044
-
Joel Sing authored
Make the os package build and work on dragonfly. R=bradfitz CC=golang-dev https://golang.org/cl/13183044
-
Joel Sing authored
Add generated z-files for dragonfly/amd64. R=bradfitz CC=golang-dev https://golang.org/cl/13056045
-
Joel Sing authored
Add syscall support for dragonfly/amd64. Also add support for generating syscall z* files for dragonfly. R=bradfitz CC=golang-dev https://golang.org/cl/13188043
-
Joel Sing authored
Go runtime support for dragonfly/amd64, largely based of the existing FreeBSD runtime (with some clues from the varialus/godfly work). R=bradfitz CC=golang-dev https://golang.org/cl/13088044
-
Jan Mercl authored
Fixes #6227 R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/13183043
-
Brad Fitzpatrick authored
Generated by addca. R=gobot CC=golang-dev https://golang.org/cl/13189043
-
Joel Sing authored
Add dragonflydynld to 5l and 8l so that they compile again. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/12739048
-
Joel Sing authored
Add dragonfly/amd64 support to the Go compiler, bootstrap and GOOS list. R=devon.odell, bradfitz CC=golang-dev https://golang.org/cl/12796050
-
Mikio Hara authored
Also avoids platform-dependent datagram truncation in raw IP tests. At least it's different between Windows and others. Fixes #6122. R=alex.brainman CC=golang-dev https://golang.org/cl/12843043
-
Mikio Hara authored
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/13141045
-
Alex Brainman authored
This is an attempt to make our slow windows-386 builder more reliable. R=golang-dev, dave CC=golang-dev https://golang.org/cl/12798045
-
Mikio Hara authored
Also makes variable names a bit cleaner. R=golang-dev, dave, r CC=golang-dev https://golang.org/cl/12808047
-
- 22 Aug, 2013 2 commits
-
-
Mikio Hara authored
Update #5344 R=alex.brainman CC=golang-dev https://golang.org/cl/12966046
-
Alex Brainman authored
R=golang-dev, adg CC=golang-dev, mikioh.mikioh https://golang.org/cl/12848047
-