summaryrefslogtreecommitdiff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* cmd/gc: reject non-Go constantsRuss Cox2013-02-014-8/+139
* cmd/gc: silence redundant error prints for misuse of [...]intRuss Cox2013-02-013-7/+21
* cmd/gc: put 'not used' message on correct lineRuss Cox2013-02-013-1210/+638
* cmd/gc: clearer error for defer/go of conversion or invalid function callRuss Cox2013-02-013-14/+99
* reflect: explain StructField.Anonymous field as 'embedded'Russ Cox2013-02-011-1/+1
* testing: SkipNow, FailNow must be called from test goroutineRuss Cox2013-02-011-11/+18
* net: use windows GetAddrInfoW in LookupPort when possibleAlex Brainman2013-01-183-4/+42
* runtime, cmd/ld: make code more position-independentElias Naur2013-02-014-6/+6
* reflect: document that Value.Slice panics on an unaddressable array.Robert Daniel Kortschak2013-02-011-1/+1
* sort: delete now-duplicate example, fix buildBrad Fitzpatrick2013-02-011-30/+0
* sort: add Reverse as a functionMiek Gieben2013-02-013-0/+40
* bytes, strings: add TrimPrefix and TrimSuffixBrad Fitzpatrick2013-02-0121-54/+117
* cmd/6c, cmd/6g: add flag to support large-model code generationElias Naur2013-02-019-6/+34
* runtime: cgo-related fixesRuss Cox2013-02-0119-59/+143
* cmd/go: clean cgo compiler errorsRuss Cox2013-02-011-4/+15
* cmd/cgo: fix line number annotations in generated C codeRuss Cox2013-02-011-1/+25
* cmd/cgo: document //export preamble restrictionRuss Cox2013-02-011-0/+5
* cmd/dist: fix buildRuss Cox2013-01-311-0/+1
* cmd/dist: redirect acid output to file to separate from errorsRuss Cox2013-01-311-5/+15
* cmd/8l: fix buildRuss Cox2013-01-311-1/+1
* exp/cookiejar: remove external storageVolker Dobler2013-02-013-180/+16
* encoding/base64: fix test for ReadFull changeRuss Cox2013-01-311-0/+1
* cmd/vet: add missing -all logicRuss Cox2013-01-311-2/+3
* cmd/ld: support for linking with host linkerRuss Cox2013-01-3111-13/+340
* cmd/vet: check for misplaced and malformed build tagsRuss Cox2013-01-315-5/+130
* io: guarantee err == nil for full reads in ReadFull and ReadAtLeastRuss Cox2013-01-312-13/+26
* net/url: normalize scheme to lower case (http not HTTP)Russ Cox2013-01-312-0/+16
* crypto/x509: test for negative RSA parameters.Adam Langley2013-01-311-0/+7
* cmd/go: many bug fixesRuss Cox2013-01-3115-70/+346
* cmd/vet: handle added string constants in printf format checkRuss Cox2013-01-311-1/+23
* os: use signal strings where possible in ProcessState.StringRuss Cox2013-01-311-2/+2
* cmd/ld: retry short writes, to get error detailRuss Cox2013-01-311-11/+20
* encoding/json: document case-insensitive Unmarshal key matchingRuss Cox2013-01-311-0/+4
* cmd/8l: fix misassembling of MOVB involving (AX)(BX*1)R?my Oudompheng2013-01-311-15/+65
* cmd/gc: inlining of variadic functions.R?my Oudompheng2013-01-311-18/+128
* container/heap: split example into twoCaleb Spare2013-01-303-40/+78
* os: provide access to file LastAccessTime and CreationTime on windowsAlex Brainman2013-01-3111-168/+180
* exp/cookiejar: update PublicSuffixList doc comment to match theNigel Tao2013-01-311-1/+1
* fmt: improve go syntax handling of byte-derived arrays and slicesRobert Daniel Kortschak2013-01-302-15/+35
* encoding/json: improve performance of Unmarshal on primitive typesRick Arnold2013-01-301-1/+19
* math/big: make tests faster by reducing coverage in --test.short mode.Alan Donovan2013-01-301-14/+19
* net/http: fix raceBrad Fitzpatrick2013-01-301-10/+10
* cmd/go: fix build -n for cgo enabled packagesAnthony Martin2013-01-301-0/+18
* cmd/gc: support GNU Bison 2.7 in bisonerrorsAnthony Martin2013-01-301-2/+2
* crypto/cipher: avoid out of bounds error in CryptBlocksRuss Cox2013-01-302-0/+48
* cmd/godoc: fix buggy use of strings.HasSuffixBrad Fitzpatrick2013-01-301-4/+2
* exp/locale/collate/tools/colcmp: fixes some discrepancies betweenMarcel van Lohuizen2013-01-302-2/+2
* cmd/gc: fix export data for aggressive inlining.R?my Oudompheng2013-01-302-1/+12
* cmd/gc: Error out on division by constant zero.Daniel Morsing2013-01-301-0/+7
* syscall: handle empty address in ReadFrom betterJeff R. Allen2013-01-304-7/+138