- 15 Dec, 2011 30 commits
-
-
Rob Pike authored
Also fix the errors it catches. Fixes #1654. R=rsc CC=golang-dev https://golang.org/cl/5489060
-
Volker Dobler authored
An example for a method M() of type T can be written as func ExampleT_M() { ... }. To differentiate between multiple examples for one function, type or method a suffix with a lowercase start may be appended to the name of the example function, e.g. ExampleFoo_basicUsage. Fixes #2465. R=golang-dev, adg, r, rsc, duperray.olivier, r CC=golang-dev https://golang.org/cl/5440100
-
Andrew Gerrand authored
bytes: add two Buffer examples R=golang-dev, r CC=golang-dev https://golang.org/cl/5490048
-
Nigel Tao authored
I'm not 100% sure I get all the corner cases right, for end tags, but I'll let the test suite smoke it out. Pass tests10.dat, test 1: <!DOCTYPE html><svg></svg><![CDATA[a]]> | <!DOCTYPE html> | <html> | <head> | <body> | <svg svg> | <!-- [CDATA[a]] --> Also pass tests through test 5: <!DOCTYPE html><body><table><svg></svg></table> R=andybalholm CC=golang-dev https://golang.org/cl/5495044
-
Robert Griesemer authored
In some rare cases, gofmt would accept more than the maximum number of empty lines (1) between source code snippets. The actual change is in printer.go, lines 773-775; the rest is some minor restructuring. Applied gofmt -w src misc . Fixes #2387. R=golang-dev, r CC=golang-dev https://golang.org/cl/5496047
-
Dave Cheney authored
If a Pipe method is called, return the underlying reader/writer from session.clientChan, bypassing the io.Copy and io.Pipe harness. StdoutPipe and StderrPipe now return an io.Reader not an io.ReadCloser as SSH cannot signal the close of the local reader to the remote process. R=rsc, agl, gustav.paul, cw CC=golang-dev https://golang.org/cl/5493047
-
Rob Pike authored
Just a rearrangement except for a couple of new functions and names so govet.go can have all the generic walk routines. R=rsc CC=golang-dev https://golang.org/cl/5489058
-
Rob Pike authored
%g down to two mallocs from four. Also a mild speedup. fmt_test.BenchmarkSprintfFloat 3016 2703 -10.38% Fixes #2557. R=rsc CC=golang-dev https://golang.org/cl/5491054
-
Brad Fitzpatrick authored
Before/after, best of 3: json.BenchmarkCodeEncoder 10 183495300 ns/op 10.58 MB/s -> json.BenchmarkCodeEncoder 10 133025100 ns/op 14.59 MB/s But don't get too excited about this. These benchmarks, while stable at any point of time, fluctuate wildly with any line of code added or removed anywhere in the path due to stack splitting issues. It's currently much faster, though, and this is the API that doesn't allocate so should always be faster in theory. R=golang-dev, dsymonds, rsc, r, gri CC=golang-dev https://golang.org/cl/5411052
-
Russ Cox authored
The plan is to make 'go test' replace gotest entirely, so it cannot refer to gotest's godoc. Instead, copy gotest's documentation in as three different help messages: 'go help test', 'go help testflag', and 'go help testfunc'. R=r CC=golang-dev https://golang.org/cl/5491048
-
Robert Griesemer authored
Several places mentioned tokens spanning "multiple lines" which is not a well-defined term in the spec; newline is. R=golang-dev, rsc, r CC=golang-dev https://golang.org/cl/5490046
-
Robert Griesemer authored
R=rsc CC=golang-dev https://golang.org/cl/5495049
-
Russ Cox authored
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5490047
-
Brad Fitzpatrick authored
Also, fix package name in error messages. Fixes #2453 R=rsc CC=golang-dev https://golang.org/cl/5483088
-
Brad Fitzpatrick authored
Not a fix yet (help wanted), but part of Issue 2331 R=rsc CC=golang-dev https://golang.org/cl/5490043
-
Russ Cox authored
It is probably a mistake to have these here at all - os is supposed to be portable - but this only fixes the build issue. R=golang-dev, r, r, iant CC=golang-dev https://golang.org/cl/5487073
-
Russ Cox authored
I have included a few important microbenchmarks, but the overall intent is to have mostly end-to-end benchmarks timing real world operations. The jsondata.go file is a summary of agl's activity in various open source repositories. It gets used as test data for many of the benchmarks. Everything links into one binary (even the test data) so that it is easy to run the benchmarks on many computers: there is just one file to copy around. R=golang-dev, r, bradfitz, adg, r CC=golang-dev https://golang.org/cl/5484071
-
Christopher Nielsen authored
R=golang-dev, jsing CC=golang-dev https://golang.org/cl/5482068
-
Luuk van Dijk authored
R=rsc CC=golang-dev https://golang.org/cl/5487077
-
Luuk van Dijk authored
Fixes #2563 R=rsc CC=golang-dev https://golang.org/cl/5495047
-
Luuk van Dijk authored
This avoids degraded performance caused by extra labels emitted by inlining (breaking strconv ftoa alloc count unittest) and is better in any case. R=rsc CC=golang-dev https://golang.org/cl/5483071
-
Roger Peppe authored
R=rsc CC=golang-dev https://golang.org/cl/5465044
-
Dave Cheney authored
Also, rename ServerConfig.PubKeyCallback to PublicKeyCallback. R=rsc, agl CC=golang-dev https://golang.org/cl/5477059
-
Russ Cox authored
For issue 680. R=ken2 CC=golang-dev https://golang.org/cl/5492046
-
Andrew Gerrand authored
Curses! R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5489048
-
Andrew Gerrand authored
R=r CC=golang-dev https://golang.org/cl/5489046
-
Andrew Gerrand authored
R=golang-dev, r CC=golang-dev https://golang.org/cl/5494045
-
Rob Pike authored
This change guarantees that whether the line ending convention when the source is created includes carriage returns is irrelevant to the value of the string. See issue 680. The compilers do not yet implement this. R=golang-dev, adg, r, gri, rsc, iant CC=golang-dev https://golang.org/cl/5491043
-
Russ Cox authored
clean is gone; all the intermediate files are created in a temporary tree that is wiped when the command ends. Not using go/build's Script because it is not well aligned with this API. The various builder methods are copied from go/build and adapted. Probably once we delete goinstall we can delete the Script API too. R=rogpeppe, adg, adg CC=golang-dev https://golang.org/cl/5483069
-
Rob Pike authored
Fixes #2555. R=golang-dev, dsymonds, r CC=golang-dev https://golang.org/cl/5486076
-
- 14 Dec, 2011 10 commits
-
-
Andrew Balholm authored
Pass tests6.dat, test 26: foo<col> | <col> Also pass tests through test 35: <table><tr><div><td> R=nigeltao CC=golang-dev https://golang.org/cl/5482074
-
Rémy Oudompheng authored
R=rsc, iant CC=golang-dev, remy https://golang.org/cl/5485070
-
Anthony Martin authored
For real this time. :-) R=rsc, ken CC=golang-dev https://golang.org/cl/5486061
-
Vadim Vygonets authored
I realize I didn't send the tests in last time. Anyway, I added a test that knows too much about the package's internal structure, and I'm not sure whether it's the right thing to do. Vadik. R=bradfitz, rsc, go.peter.90 CC=golang-dev https://golang.org/cl/5450073
-
Vadim Vygonets authored
R=golang-dev, edsrzf, bradfitz, rsc CC=golang-dev https://golang.org/cl/5451087
-
Russ Cox authored
R=golang-dev, gri CC=golang-dev https://golang.org/cl/5482073
-
Scott Lawrence authored
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5472043
-
Rob Pike authored
This redefinition means that the public signature of html/template does not refer to text/template. Fixes #2546. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5487083
-
Robert Hencke authored
Fixes https://golang.org/cl/5480060/#msg4 R=golang-dev, r CC=golang-dev https://golang.org/cl/5485051
-
Brad Fitzpatrick authored
We only want to attempt to un-gzip if there's a body (not in response to a HEAD) This was accidentally passing before, but revealed to be broken when c3c6e72d7cc went in. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5477093
-