summaryrefslogtreecommitdiff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* cmd/go: handle paths like \x.go on windowsAlex Brainman2014-09-262-2/+62
* liblink: fix cmd/ld -X flagRuss Cox2014-09-261-0/+2
* cmd/go: document that testdata directories are ignoredRuss Cox2014-09-262-11/+21
* cmd/go: add test -o flag to control where test binary is writtenRuss Cox2014-09-263-20/+63
* cmd/go: display program name when reporting crashRuss Cox2014-09-263-0/+28
* cmd/go: make malformed import path message more preciseRuss Cox2014-09-261-2/+2
* cmd/go: re-resolve and check vcs roots during go get -uRuss Cox2014-09-263-6/+135
* cmd/go: fix 'go get vanity/repo/...' in clean GOPATHRuss Cox2014-09-262-1/+20
* crypto/tls: ensure that we don't resume when tickets are disabled.Adam Langley2014-09-265-1/+206
* encoding/gob: fix 386 buildRob Pike2014-09-251-9/+6
* encoding/gob: error rather than panic when decoding enormous slicesRob Pike2014-09-253-4/+39
* cmd/go: install dependencies for 'go build -i' on a commandRuss Cox2014-09-252-47/+78
* bufio: fix handling of empty tokens at end of line/fileRob Pike2014-09-252-1/+39
* time: make it clear that time.Time values do not compare with ==Rob Pike2014-09-251-0/+5
* cmd/gc: emit error for out-of-bounds slice of constant stringRuss Cox2014-09-251-10/+15
* cmd/gc: print x++ (not x += 1) in errors about x++Russ Cox2014-09-254-262/+277
* cmd/gc: avoid infinite recursion on invalid recursive typeRuss Cox2014-09-252-2/+5
* runtime: add load_g call in arm callback.Keith Randall2014-09-255-9/+10
* cgo: adjust return value location to account for stack copies.Keith Randall2014-09-256-2/+50
* net/http: update ProxyFromEnvironment docs for HTTPS_PROXY additionBrad Fitzpatrick2014-09-241-3/+10
* net/http: allow double-quotes only on cookie values, not cookieNigel Tao2014-09-252-5/+37
* net/http: check for CloseWrite interface, not TCPConn implementationBrad Fitzpatrick2014-09-243-2/+35
* net/http: support https_proxy in ProxyFromEnvironmentBrad Fitzpatrick2014-09-243-6/+39
* cmd/go: fix bytes and net the right wayRuss Cox2014-09-243-16/+1
* net: only "build" empty.s in non-cgo modeRuss Cox2014-09-241-0/+2
* runtime: more NOPTRRuss Cox2014-09-2414-19/+20
* os: fix Args setup on WindowsBrad Fitzpatrick2014-09-241-1/+8
* runtime: more NOPTRRuss Cox2014-09-247-2/+22
* cmd/go: strip -fsanitize= flags when building cgo objectDmitriy Vyukov2014-09-251-0/+8
* build: fix elf buildsRuss Cox2014-09-244-10/+27
* fmt: document and fix the handling of precision for strings and byte slicesRob Pike2014-09-243-8/+25
* cmd/cc, cmd/ld, runtime: disallow conservative data/bss objectsRuss Cox2014-09-2432-77/+126
* debug/dwarf: correct name for clang-generated complex typeRuss Cox2014-09-241-0/+11
* cmd/gc: fix import of package with var func returning _Russ Cox2014-09-241-10/+5
* src: pass GO_GCFLAGS down to go test stdBrad Fitzpatrick2014-09-241-1/+1
* cmd/gc: run escape analysis always (even in -N mode)Russ Cox2014-09-243-13/+7
* cmd/go: prohibit C sources files unless using cgoRuss Cox2014-09-246-0/+26
* runtime: fix LastGC commentRuss Cox2014-09-241-2/+2
* runtime: keep g->syscallsp consistent after cgo->Go callbacksHector Martin Cantero2014-09-246-13/+49
* cmd/pack: fix c command for existing fileRob Pike2014-09-233-20/+57
* os: add a comment inside RemoveAllBrad Fitzpatrick2014-09-231-0/+2
* os: fix another case where RemoveAll should return nilBrad Fitzpatrick2014-09-231-0/+3
* runtime: fix runtime.Breakpoint on ARMv5Dave Cheney2014-09-231-1/+1
* runtime: remove unused function declarationDmitriy Vyukov2014-09-221-1/+0
* text/template: type-check chained node as argumentRob Pike2014-09-222-0/+10
* fmt: document that self-recursive data structures can be fatalRob Pike2014-09-221-0/+4
* fmt: make printing of ints 25-35% fasterRob Pike2014-09-222-4/+47
* text/template: allow comparison functions to work between any integersRob Pike2014-09-223-56/+105
* database/sql: Close per-tx prepared statements when the associated tx endsMarko Tiikkaja2014-09-222-5/+67
* net/http: replace z_last_test hack with testing.MainBrad Fitzpatrick2014-09-221-9/+21