summaryrefslogtreecommitdiff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* bufio: make it a little clearer how the default Scanner splits lines.Rob Pike2013-04-031-2/+3
* net/http: don't allocate 0-byte io.LimitedReaders for GET requestsBrad Fitzpatrick2013-04-031-25/+22
* bytes: don't leave mprotect-ed pages after unsafe test.R?my Oudompheng2013-04-031-0/+2
* go/parser: ParseExpr must accept type expressionsRobert Griesemer2013-04-036-12/+55
* go/build: disable cgo when cross compilingDave Cheney2013-04-031-1/+7
* cmd/gc: be more tolerant with recursive types when checking map types.R?my Oudompheng2013-04-031-2/+11
* runtime: avoid hashing strings until needed in single-bucket mapsBrad Fitzpatrick2013-04-022-13/+81
* runtime: new map tests and benchmarksBrad Fitzpatrick2013-04-022-4/+57
* net/http: fewer allocations in chunkWriter.WriteHeaderBrad Fitzpatrick2013-04-021-43/+89
* runtime: Implement faster equals for strings and bytes.Keith Randall2013-04-0214-62/+416
* net/http: new server Handler benchmarksBrad Fitzpatrick2013-04-021-0/+61
* cmd/gc: preserve safe annotation of package def.David Symonds2013-04-034-299/+304
* runtime: fix a comment regarding default floating point precisionCarl Shapiro2013-04-021-1/+1
* net: delete DialOpt and DialOption; add struct DialerBrad Fitzpatrick2013-04-025-185/+129
* cmd/gofmt: handle ... in rewrite of callsRobert Griesemer2013-04-026-1/+73
* cmd/go: fix typo in docsShenghou Ma2013-04-032-12/+14
* net/http: remove useless named result arguments in typeBrad Fitzpatrick2013-04-021-1/+1
* cmd/godoc: don't linkify index entriesRobert Griesemer2013-04-021-5/+3
* sort: be consistent when describing "less: function in the multiKeys exampleRob Pike2013-04-021-3/+3
* sort: new example: programmatic sort by multiple keysRob Pike2013-04-021-0/+132
* compress/gzip: add Writer.Flush to call flate.Writer's FlushBrad Fitzpatrick2013-04-022-1/+63
* cmd/gc: recognize (a.b[0]<<1 | a.b[0]>>31) as a rotate, not justNigel Tao2013-04-021-8/+23
* runtime: make map reads multithreaded safe.Keith Randall2013-04-014-23/+81
* testing: document that Log and Logf do not usually produce outputRob Pike2013-04-014-4/+9
* cmd/godoc: better error message for missing index filesRobert Griesemer2013-04-011-0/+2
* cmd/gc: use appropriate verb to print array type length.R?my Oudompheng2013-04-021-1/+1
* sync/atomic: make unaligned 64-bit atomic operation panic on ARMShenghou Ma2013-04-013-3/+27
* cmd/cc/cc.h: Add a #pragma for %S used (only) in cmd/cc/sub.c.Lucio De Re2013-04-011-0/+1
* cmd/ld: add -extld and -extldflags optionsIan Lance Taylor2013-04-016-5/+52
* cmd/gc: do not reuse bool temporaries for composite equality.R?my Oudompheng2013-04-011-5/+13
* runtime: add concurrent map read testBrad Fitzpatrick2013-04-011-0/+39
* cmd/go: prevent packages from being cleaned more than onceLucio De Re2013-04-011-0/+2
* testing: report test as failed if the test panics.Ewan Chou2013-04-011-0/+1
* lib9/utf: Remove superfluous header inclusion.Lucio De Re2013-03-311-2/+0
* net: update documentation for UnixConn, UnixListener and related stuffMikio Hara2013-03-313-12/+6
* net: update documentation for UDPConn and related stuffMikio Hara2013-03-313-25/+19
* net: update documentation for TCPConn, TCPListener and related stuffMikio Hara2013-03-313-32/+25
* net: update documentation for IPConn and related stuffMikio Hara2013-03-313-20/+16
* net/http: Transport: be paranoid about any non-100 1xx responseBrad Fitzpatrick2013-03-303-13/+53
* runtime: TestGcSys: if GOGC=off, skip instead of failingAlbert Strasheim2013-03-301-1/+1
* net/http: fix incredibly racy TestTransportReading100ContinueBrad Fitzpatrick2013-03-301-22/+5
* net/textproto: report allocs in benchmarksBrad Fitzpatrick2013-03-301-0/+2
* cmd/gc, cmd/ld: fix warnings on Plan 9David du Colombier2013-03-303-6/+4
* cmd/6g: fix warnings on Plan 9David du Colombier2013-03-302-5/+5
* os/exec, syscall: fix tests to pass when GOGCTRACE=1 is setAlbert Strasheim2013-03-302-2/+2
* net: avoid use of listener socket options on active open socketsMikio Hara2013-03-301-1/+6
* net/http: ignore 100-continue responses in TransportBrad Fitzpatrick2013-03-292-0/+102
* cmd/dist, cmd/ld: GO_EXTLINK_ENABLED=0 defaults to -linkmode=internalIan Lance Taylor2013-03-299-3/+61
* bytes: Benchmark Buffer's compactionsRobert Obryk2013-03-291-0/+16
* bytes: document that Buffer.Write grows the bufferRob Pike2013-03-291-28/+21