aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-09-30release.2010-09-29weekly.2010-09-29Andrew Gerrand
R=golang-dev, nigeltao_gnome CC=golang-dev https://golang.org/cl/2329041
2010-09-30doc: add to and consolidate non-english doc referencesAndrew Gerrand
R=r, r2 CC=golang-dev https://golang.org/cl/2315042
2010-09-30http: fix http handler signature changes previously missedStephen Ma
R=adg, rsc CC=golang-dev https://golang.org/cl/2303041
2010-09-30doc: update http handler usage for new signatureStephen Ma
R=adg, r2 CC=golang-dev https://golang.org/cl/2302041
2010-09-296prof: more accurate usage message.David Symonds
R=r, r2 CC=golang-dev https://golang.org/cl/2323042
2010-09-29build: disable archive/zip on armRuss Cox
R=adg TBR=adg CC=golang-dev https://golang.org/cl/2326041
2010-09-30archive/zip: new package for reading ZIP filesAndrew Gerrand
R=rsc CC=golang-dev https://golang.org/cl/2125042
2010-09-30misc/dashboard/builder: remove build files after benchmarkingAndrew Gerrand
R=r CC=golang-dev https://golang.org/cl/2270041
2010-09-30doc: faq updates part oneAndrew Gerrand
R=r, r2 CC=golang-dev https://golang.org/cl/2301041
2010-09-29install.html: minor sentence fixRobert Griesemer
R=r, r2 CC=golang-dev https://golang.org/cl/2312041
2010-09-296l, 8l: fix -K implementationRuss Cox
R=ken2 CC=golang-dev https://golang.org/cl/2313041
2010-09-29Effective Go: update for new http interface.Rob Pike
R=rsc, stephenm CC=golang-dev https://golang.org/cl/2310041
2010-09-29doc: consolidate FAQs into a single file, go_faq.htmlAndrew Gerrand
An entirely mechanical change, with these exceptions: - removed 'stub questions' that reference the other FAQs - removed "Why doesn't Go run on Windows yet?" - out of date I will follow this CL with another that updates many of the answers to make them more current. R=r CC=golang-dev https://golang.org/cl/2300041
2010-09-29http: revised http Handler interfaceStephen Ma
R=rsc CC=golang-dev https://golang.org/cl/1993043
2010-09-28build: clear custom variables like GREP_OPTIONSRuss Cox
Fixes #946. R=r, r2 CC=golang-dev https://golang.org/cl/2137048
2010-09-28arm: 10 more package tests passRuss Cox
R=ken2 CC=golang-dev https://golang.org/cl/2298041
2010-09-28gotest: leave _testmain.go for "make clean" to clean upRuss Cox
R=r, brainman CC=golang-dev https://golang.org/cl/2297041
2010-09-28libcgo: don't build for NaClRuss Cox
R=nigeltao CC=golang-dev https://golang.org/cl/2290041
2010-09-28runtime: fix freebsd buildRuss Cox
TBR=r CC=golang-dev https://golang.org/cl/2296041
2010-09-28arm code gen error in unsign extendKen Thompson
R=rsc CC=golang-dev https://golang.org/cl/2295041
2010-09-28runtime: fix buildRuss Cox
On systems where the mmap succeeds (e.g., sysctl -w vm.mmap_min_addr=0) it changes the signal code delivered for a nil fault from ``page not mapped'' to ``invalid permissions for page.'' TBR=r CC=golang-dev https://golang.org/cl/2294041
2010-09-28runtime: add mmap of null page just in caseRuss Cox
R=r, iant, robert.swiecki, rsc1 CC=golang-dev https://golang.org/cl/1904044
2010-09-28codereview: fix upload of hg copied fileRuss Cox
Fixes #1134. R=r, r2 CC=golang-dev https://golang.org/cl/2264043
2010-09-28go spec: clarifications for range clauseRobert Griesemer
R=iant, r, rsc, rog CC=golang-dev https://golang.org/cl/2226047
2010-09-286l, 8l: elfsetstring is only for .shstrtabRuss Cox
Was also recording for .dynstrtab which made the table run out of space and would have caused confusion if the ELF code tried to refer to any of the strings. R=r CC=golang-dev https://golang.org/cl/2288041
2010-09-28json: do not write to unexported fieldsRuss Cox
Fixes #977. Fixes #451. R=r, r2 CC=golang-dev https://golang.org/cl/2246049
2010-09-28gc: fix reflect table method receiverRuss Cox
Fixes #451. Fixes #770. R=ken2 CC=golang-dev https://golang.org/cl/2207045
2010-09-28various: appease the ubuntu gcc monsterRuss Cox
Silence warnings about not checking return values from read and write system calls. R=r, r2 CC=golang-dev https://golang.org/cl/2258045
2010-09-28gc: insert semicolon at EOF if neededRuss Cox
R=ken2, gri CC=golang-dev https://golang.org/cl/2208053
2010-09-28math: Fix off-by-one error in Ilogb and Logb.Charles L. Dorian
Fixes #1141. R=rsc CC=adg, golang-dev https://golang.org/cl/2194047
2010-09-27go_spec: EOF may insert a semicolonRobert Griesemer
R=rsc, r, iant CC=golang-dev https://golang.org/cl/2266043
2010-09-27http: support HTTP/1.0 Keep-AliveBrad Fitzpatrick
R=rsc, bradfitz1 CC=golang-dev https://golang.org/cl/2261042
2010-09-27http: correct escaping of different parts of URLRuss Cox
Fixes #1076. R=adg CC=golang-dev https://golang.org/cl/2248045
2010-09-27gofmt: stability improvementRobert Griesemer
There are a variety of token pairs that if printed without separating blank may combine into a different token sequence. Most of these (except for INT + .) don't happen at the moment due to the spacing introduced between expression operands. However, this will prevent errors should the expression spacing change. R=rsc CC=golang-dev https://golang.org/cl/2207044
2010-09-27go/scanner: treat EOF like a newline for purposes of semicolon insertionRobert Griesemer
R=rsc CC=golang-dev https://golang.org/cl/2216054
2010-09-27utf8.String: provide an Init method to avoid unnecessary allocationRob Pike
when creating an array of Strings. R=rsc CC=golang-dev https://golang.org/cl/2267046
2010-09-27gc: eliminate duplicates in method tableRuss Cox
Fixes #906. R=ken2 CC=golang-dev https://golang.org/cl/2279042
2010-09-27gc: fix non-canonical import error messageRuss Cox
Fixes #1142. R=ken2 CC=golang-dev https://golang.org/cl/2218046
2010-09-27runtime: correct stats in SysFreeRuss Cox
R=r CC=golang-dev https://golang.org/cl/2254047
2010-09-27gc: allow select case expr = <-cRuss Cox
Fixes #1139. R=ken2 CC=golang-dev https://golang.org/cl/2194046
2010-09-27syscall: add inotify on LinuxBalazs Lecz
R=rsc CC=golang-dev https://golang.org/cl/2241045
2010-09-27CONTRIBUTORS: add Balazs Lecz (Google CLA)Russ Cox
R=r, r2 CC=golang-dev https://golang.org/cl/2216053
2010-09-27libcgo: set g, m in thread local storage for windows 386.Wei Guangjing
R=rsc CC=golang-dev, vcc https://golang.org/cl/2216051
2010-09-27syscall: fix windows value of IPV6_V6ONLYAlex Brainman
R=golang-dev, adg CC=golang-dev https://golang.org/cl/2213048
2010-09-27bytes: fix typo in AddByte commentAndrew Gerrand
Fixes #1140. R=golang-dev CC=golang-dev https://golang.org/cl/2240043
2010-09-25syscall: add IPPROTO_IPV6 and IPV6_V6ONLY const to fix nacl and windows buildAlex Brainman
R=golang-dev CC=golang-dev https://golang.org/cl/2204050
2010-09-24test: Add test which causes incorrect error from gccgo.Ian Lance Taylor
R=gri CC=golang-dev https://golang.org/cl/2220048
2010-09-25utf8.String: Slice(i,j)Rob Pike
R=rsc CC=golang-dev https://golang.org/cl/2225048
2010-09-24gc: improve error message for x \= 0Russ Cox
was x.go:2: syntax error: unexpected $undefined now x.go:2: syntax error: unexpected \ R=ken2 CC=golang-dev https://golang.org/cl/2267044
2010-09-24go spec: ... changesRobert Griesemer
Also: Fixed a bug in the BuiltinCall production. R=iant, r, rsc CC=golang-dev https://golang.org/cl/2278041