- 14 Dec, 2010 17 commits
-
-
Rob Pike authored
Fixes a bug reported on golang-nuts. R=rsc, adg CC=golang-dev https://golang.org/cl/3641042
-
Christopher Wedgwood authored
R=r, rsc CC=golang-dev https://golang.org/cl/3578041
-
Rob Pike authored
R=rsc CC=golang-dev https://golang.org/cl/3641041
-
Nigel Tao authored
R=r, nigeltao_gnome, rog, niemeyer CC=golang-dev https://golang.org/cl/3529042
-
Rob Pike authored
R=rsc CC=golang-dev https://golang.org/cl/3545044
-
Russ Cox authored
This Flush is equivalent to zlib's Z_SYNC_FLUSH. The addition of the explicit Writer type opens the door to adding a PartialFlush if needed for SSH and maybe even FullFlush. It also opens the door for a SetDictionary method to be added. http://www.bolet.org/~pornin/deflate-flush.html documents the various intricacies of flushing a DEFLATE stream. R=agl1, r CC=golang-dev https://golang.org/cl/3637041
-
Rob Pike authored
The code used interfaces in a pretty, pedagogical way but not efficiently. Remove unnecessary interface code for significant speedups. Before: regexp.BenchmarkLiteral 1000000 2629 ns/op regexp.BenchmarkNotLiteral 100000 18131 ns/op regexp.BenchmarkMatchClass 100000 26647 ns/op regexp.BenchmarkMatchClass_InRange 100000 27092 ns/op regexp.BenchmarkReplaceAll 100000 27014 ns/op After: regexp.BenchmarkLiteral 1000000 2077 ns/op regexp.BenchmarkNotLiteral 100000 13738 ns/op regexp.BenchmarkMatchClass 100000 20418 ns/op regexp.BenchmarkMatchClass_InRange 100000 20999 ns/op regexp.BenchmarkReplaceAll 100000 21825 ns/op There's likely more to do without major surgery, but this is a simple, significant step. R=rsc CC=golang-dev https://golang.org/cl/3572042
-
Robert Griesemer authored
R=rsc CC=golang-dev https://golang.org/cl/3540042
-
Anthony Martin authored
R=adg, rsc CC=golang-dev https://golang.org/cl/3631041
-
Anthony Martin authored
R=rsc CC=golang-dev https://golang.org/cl/3545042
-
Anthony Martin authored
R=rsc, agl1 CC=golang-dev https://golang.org/cl/3536043
-
Anthony Martin authored
R=rsc, agl1 CC=golang-dev https://golang.org/cl/3573044
-
Russ Cox authored
Will mail a warning to golang-nuts once this is submitted. R=r, niemeyer CC=golang-dev https://golang.org/cl/3573043
-
Russ Cox authored
R=iant CC=golang-dev https://golang.org/cl/3582042
-
Anthony Martin authored
R=gri CC=golang-dev https://golang.org/cl/3580042
-
Robert Griesemer authored
R=golang-dev, r2 CC=golang-dev https://golang.org/cl/3541044
-
Robert Griesemer authored
R=r CC=golang-dev https://golang.org/cl/3574044
-
- 13 Dec, 2010 18 commits
-
-
Russ Cox authored
R=r CC=golang-dev https://golang.org/cl/3628041
-
Russ Cox authored
Too many programs complain that we even try. This was a bit of security paranoia and not worth the bother. Fixes #1340. R=r, r2 CC=golang-dev https://golang.org/cl/3579042
-
Rob Pike authored
R=rsc CC=golang-dev https://golang.org/cl/3609042
-
Russ Cox authored
Fixes #1231. R=ken2 CC=golang-dev https://golang.org/cl/3627041
-
Russ Cox authored
cc: same runtime: test cc alignment (required moving #define of offsetof to runtime.h) fix bug260 Fixes #482. Fixes #609. R=ken2, r CC=golang-dev https://golang.org/cl/3563042
-
Russ Cox authored
Fixes #1250. R=r CC=golang-dev https://golang.org/cl/3562042
-
Russ Cox authored
Reported by W. Michael Petullo <mike@flyn.org> Fixes #1269. R=r, r2 CC=golang-dev https://golang.org/cl/3618041
-
Russ Cox authored
Fixes #1162. R=r CC=golang-dev https://golang.org/cl/3619041
-
Russ Cox authored
Fixes #1232. R=ken2 CC=golang-dev https://golang.org/cl/3621041
-
Russ Cox authored
R=ken2 CC=golang-dev https://golang.org/cl/3620041
-
Russ Cox authored
Fixes #1316. R=ken2 CC=golang-dev https://golang.org/cl/3575042
-
Russ Cox authored
Clean up an error message and error exit too. Insert blank line after "DO NOT EDIT" comment to keep it from being a doc comment. Fixes #1213. Fixes #1222. R=r CC=golang-dev https://golang.org/cl/3608042
-
Russ Cox authored
No semantic changes here, but working toward being able to align structs based on the maximum alignment of the fields inside instead of having a fixed alignment for all structs (issue 482). R=ken2 CC=golang-dev https://golang.org/cl/3617041
-
Russ Cox authored
Fixes #1169. R=ken2 CC=golang-dev https://golang.org/cl/3595043
-
Russ Cox authored
Don't crash in dwarf for foreign functions. R=ken2 CC=golang-dev https://golang.org/cl/3576043
-
Russ Cox authored
Fixes #550. R=r CC=golang-dev https://golang.org/cl/3469044
-
Alex Brainman authored
R=rsc, peterGo CC=golang-dev https://golang.org/cl/3095042
-
Wei Guangjing authored
R=brainman, rsc CC=golang-dev https://golang.org/cl/3533041
-
- 12 Dec, 2010 4 commits
-
-
Gustavo Niemeyer authored
R=golang-dev, gri CC=golang-dev https://golang.org/cl/3606043
-
Robert Griesemer authored
- improved search result page - clicking on files shows highlighted search phrase (.go files loose their godoc-specific formatting and highlighting in this mode - a better solution is in the works) - support for textual results - fixed bug with non-URL escaped URL parameter (Query) R=rsc, adg CC=golang-dev https://golang.org/cl/3585041
-
Eoghan Sherry authored
If an %lld argument can be 32 or 64 bits wide, cast to vlong. If always 32 bits, drop the ll. Fixes #1336. R=brainman, rsc CC=golang-dev https://golang.org/cl/3580041
-
Nigel Tao authored
R=r CC=golang-dev https://golang.org/cl/3601041
-
- 11 Dec, 2010 1 commit
-
-
Mikio Hara authored
R=golang-dev, gri CC=golang-dev https://golang.org/cl/3592041
-