- 03 Mar, 2010 4 commits
-
-
Stephen Ma authored
Set defaults to the same values as various C DNS resolver libraries. Use the timeout value from the configuration. Fixes #632. R=rsc CC=golang-dev https://golang.org/cl/223094
-
Russ Cox authored
R=ken2 CC=golang-dev https://golang.org/cl/223106
-
Ken Thompson authored
getting close. R=rsc CC=golang-dev https://golang.org/cl/224105
-
Robert Griesemer authored
- gofmt -w src misc R=rsc, r CC=golang-dev https://golang.org/cl/223101
-
- 02 Mar, 2010 5 commits
-
-
Andrew Gerrand authored
hg.parseurl now returns a two-value tuple; codereview.py expected 3. Changed to merely take the first return value. R=rsc, iant CC=golang-dev https://golang.org/cl/223087
-
Andrew Gerrand authored
Fixes #622. R=rsc CC=golang-dev https://golang.org/cl/224084
-
Robert Griesemer authored
- gofmt -w src misc - looking for feedback R=rsc, r CC=golang-dev https://golang.org/cl/223076
-
Robert Griesemer authored
Fixes #633. R=adg CC=golang-dev https://golang.org/cl/224090
-
Andrey Mirtchovski authored
R=rsc, adg CC=golang-dev https://golang.org/cl/224087
-
- 01 Mar, 2010 1 commit
-
-
Andrew Gerrand authored
May address issue 624. R=rsc CC=golang-dev https://golang.org/cl/223083
-
- 28 Feb, 2010 1 commit
-
-
Stephen Ma authored
that pad() still counts bytes, but it's currently only used for 1 byte runes. Fixes #612. R=r CC=golang-dev https://golang.org/cl/217064
-
- 27 Feb, 2010 1 commit
-
-
Russ Cox authored
R=wcn CC=golang-dev https://golang.org/cl/223075
-
- 26 Feb, 2010 13 commits
-
-
Raif S. Naffah authored
R=rsc CC=golang-dev https://golang.org/cl/217116
-
Russ Cox authored
R=gri CC=golang-dev https://golang.org/cl/223073
-
Robert Griesemer authored
R=rsc CC=golang-dev https://golang.org/cl/223071
-
Russ Cox authored
R=ken2 CC=golang-dev https://golang.org/cl/223070
-
Ian Lance Taylor authored
This permits more flexibility with cgo and swig in cases where the program is run on a machine other than the one on which it is built. Rather than storing the absolute path to the shared library in the DT_NEEDED entry, we can store just the name, and let the dynamic linker find it using DT_RUNPATH or the LD_LIBRARY_PATH environment variable. R=rsc CC=golang-dev https://golang.org/cl/223068
-
Russ Cox authored
R=ken2 CC=golang-dev https://golang.org/cl/223069
-
Robert Griesemer authored
Background: This didn't matter until recently, because '\n' don't appear as token starts in source code and thus the exact position was irrelevant (and set as was easiest in the code). With auto semicolon insertion, a virtual semicolon may be inserted when a '\n' is seen. The position of the semicolon is the position of the '\n'. Without this fix, these semicolons appeared on the next line instead of the line where they were inserted. This affected the association of comments to declarations in the parser. As a result, some lead comments where considered line comments, not collected in the ast, and not shown in godoc pages. (This affected only godoc pages, not gofmt-formatted programs). Fixes #592. R=rsc CC=golang-dev https://golang.org/cl/224068
-
Micah Stetson authored
Adds tests and fixes for two cases that fail with the current release. R=golang-dev, r CC=golang-dev https://golang.org/cl/217115
-
Rob Pike authored
R=rsc CC=golang-dev https://golang.org/cl/223061
-
Christopher Wedgwood authored
R=rsc, r CC=golang-dev https://golang.org/cl/224069
-
Russ Cox authored
R=gri CC=golang-dev https://golang.org/cl/223059
-
Robert Griesemer authored
- gofmt -w src misc - improves several lists and fixes minor degradation introduced with the fix for issue 628 - removed some dead code (stringList) R=rsc CC=golang-dev https://golang.org/cl/223058
-
Russ Cox authored
gofmt -w -r 'strings.Bytes(a) -> []byte(a)' src/cmd src/pkg test/bench gofmt -w -r 'strings.Runes(a) -> []int(a)' src/cmd src/pkg test/bench delete unused imports R=r CC=golang-dev https://golang.org/cl/224062
-
- 25 Feb, 2010 14 commits
-
-
Robert Griesemer authored
R=rsc CC=golang-dev https://golang.org/cl/224063
-
Russ Cox authored
R=ken2 CC=golang-dev https://golang.org/cl/224060
-
Stephen Weinberg authored
R=rsc CC=golang-dev https://golang.org/cl/224061
-
Robert Griesemer authored
- applied gofmt to src and misc Note: This fix improved formatting of src/pkg/math/all_test.go but leads to a degradation in src/pkg/exp/4s/xs.go. The latter happened to "work" before accidentally. Fixing the alignment in that case in general will be a separate CL. Fixes #628. R=rsc CC=golang-dev https://golang.org/cl/223054
-
Robert Griesemer authored
R=rsc CC=golang-dev https://golang.org/cl/224057
-
Russ Cox authored
various caching. make benchmark data a list in a single per-builder,benchmark record instead of having one record for each data point. significant reduction in datastore cpu charges. R=agl1, agl CC=golang-dev https://golang.org/cl/217111
-
Ian Lance Taylor authored
R=rsc CC=golang-dev https://golang.org/cl/224053
-
Robert Griesemer authored
(per suggestion from Heresy.Mc@gmail.com) R=rsc CC=golang-dev https://golang.org/cl/223052
-
Kevin Ballard authored
path.Match() errors out when testing "*x" against "xxx" because it matches the star non-greedily. Ensure that the last chunk consumes the rest of the name. R=r, rsc CC=golang-dev https://golang.org/cl/223050
-
Rob Pike authored
R=rsc CC=golang-dev https://golang.org/cl/224051
-
Robert Griesemer authored
R=rsc CC=golang-dev https://golang.org/cl/223044
-
Ian Lance Taylor authored
This permits cgo generated code to use these header files even if the Go sources are not around. R=rsc CC=golang-dev https://golang.org/cl/224045
-
Robert Griesemer authored
- always include position information about opening/closing parens/braces - replace uses of []*ast.Field with *ast.FieldList Fixes #473. R=rsc CC=golang-dev https://golang.org/cl/223043
-
Russ Cox authored
R=eridius, r, rog CC=golang-dev https://golang.org/cl/217088
-
- 24 Feb, 2010 1 commit
-
-
Russ Cox authored
default to HTTP/1.1 R=petar-m CC=golang-dev https://golang.org/cl/224041
-