- 26 Apr, 2012 11 commits
-
-
Andrew Gerrand authored
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/6125048
-
Andrew Gerrand authored
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/6123055
-
Russ Cox authored
The new logic is "use go1 if it's there, otherwise no tag." Nothing needs to say "I require go1.0.1", and I want to preserve some flexibility in defining what tags mean. Right now (before go1.0.1) there is only one possible tag, "go1", and I'd like to keep it that way. R=golang-dev, bradfitz, r, adg CC=golang-dev https://golang.org/cl/6112060
-
Joel Sing authored
Now that Go will no longer work on OpenBSD versions prior to 5.1, remove the sysctl workaround that was needed for 5.0 and earlier. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/6116050
-
Anthony Martin authored
1. Readdirnames was erroneously returning an empty slice on every invocation. 2. The logic for determining which files to close before exec was incorrect. If the set of files to be kept open (provided by the caller) did not include the files opened at startup, those files would be accidentally closed. I also cleaned up readdupdevice while I was in the vicinity. R=golang-dev, seed, rsc CC=golang-dev https://golang.org/cl/6016044
-
Anthony Martin authored
I also added some debugging code that's turned on with -xx. Fixes #3392. R=rsc, lvd CC=golang-dev https://golang.org/cl/5909058
-
David Symonds authored
Fixes #3569. R=golang-dev, r CC=golang-dev https://golang.org/cl/6116055
-
Nigel Tao authored
RGBA. R=adg, r, bsiegert CC=golang-dev https://golang.org/cl/6119054
-
Shenghou Ma authored
R=adg, dsymonds CC=golang-dev https://golang.org/cl/5849053
-
Andrew Balholm authored
Clean up flow of control. Handle </tbody>, </tfoot>, and </thead>. Pass 5 additional tests. R=nigeltao CC=golang-dev https://golang.org/cl/6117057
-
David Symonds authored
R=golang-dev, r CC=golang-dev https://golang.org/cl/6127050
-
- 25 Apr, 2012 18 commits
-
-
Russ Cox authored
R=adg CC=golang-dev https://golang.org/cl/6127048
-
Andrew Gerrand authored
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/6114053
-
Brad Fitzpatrick authored
Fixes #3538 R=golang-dev, adg, rsc CC=golang-dev https://golang.org/cl/6117058
-
Brad Fitzpatrick authored
Fixes #3562 R=golang-dev, adg, rsc CC=golang-dev https://golang.org/cl/6119051
-
Joel Sing authored
Switch from using the rfork() syscall on OpenBSD, to the __tfork() syscall. The __tfork() syscall is the preferred way of creating system threads and the rfork() syscall has recently been removed. Note: this will break compatibility with OpenBSD releases prior to 5.1. R=golang-dev, bradfitz, devon.odell, rsc CC=golang-dev https://golang.org/cl/6037048
-
Marcel van Lohuizen authored
collation table. At this moment, it only implements the generation of a root table. R=r CC=golang-dev https://golang.org/cl/6039047
-
Marcel van Lohuizen authored
context for change lists of lower-level types. The public APIs are defined in builder.go and collate.go. Type table is the glue between the lower and higher level code and might be a good starting point for understanding the collation code. R=r, r CC=golang-dev https://golang.org/cl/5999053
-
Marcel van Lohuizen authored
The trie code looks a lot like the trie in exp/norm. It uses different types, however. Also, there is only a lookup for []byte and the unsafe lookup methods have been dropped, as well as sparse mode. There is now a method for generating a trie. To output Go code, one now needs to first generate a trie and then call print() on it. R=r, r, mpvl CC=golang-dev https://golang.org/cl/5966064
-
Marcel van Lohuizen authored
(see http://www.unicode.org/reports/tr10/). R=r, r CC=golang-dev https://golang.org/cl/5981048
-
Marcel van Lohuizen authored
(See http://www.unicode.org/reports/tr10/#Contractions.) Each rune that is at the start of any contraction is associated a trie. This trie, in turn, may be shared by other runes that have the same set of suffixes. R=r, r CC=golang-dev https://golang.org/cl/5970066
-
Gustavo Niemeyer authored
Revert the following change set: changeset: 13018:97d027b3aa68 user: Gustavo Niemeyer <gustavo@niemeyer.net> date: Mon Apr 23 22:00:16 2012 -0300 summary: net/http: allow clients to disable keep-alive This broke a test on Windows 64 and somebody else will have to check. R=golang-dev, r CC=golang-dev https://golang.org/cl/6112054
-
Ian Lance Taylor authored
On Solaris versions before Solaris 11, the kernel will not return more than 1040 on a single read from /dev/urandom. R=golang-dev, agl, bradfitz, rsc, iant, dchest CC=golang-dev https://golang.org/cl/6113046
-
Bobby Powers authored
everything except backslash and the quote chars is fair game. Fixes #3546. R=rsc, r CC=golang-dev https://golang.org/cl/6048047
-
Mikio Hara authored
Fixes #3584. R=dave, dsymonds, rsc CC=golang-dev https://golang.org/cl/6119043
-
Dave Cheney authored
benchmark old ns/op new ns/op delta BenchmarkIndexByte32 459 126 -72.55% BenchmarkIndexByte4K 52404 10939 -79.13% BenchmarkIndexByte4M 54470800 11177370 -79.48% BenchmarkIndexByte64M 1010803000 178860500 -82.31% benchmark old MB/s new MB/s speedup BenchmarkIndexByte32 69.58 252.63 3.63x BenchmarkIndexByte4K 78.16 374.42 4.79x BenchmarkIndexByte4M 77.00 375.25 4.87x BenchmarkIndexByte64M 66.39 375.20 5.65x R=rsc, minux.ma CC=golang-dev https://golang.org/cl/6106044
-
Rob Pike authored
As in: const format = "%s" fmt.Printf(format, "hi") Also fix a couple of bugs by rewriting the routine. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/6099057
-
Rob Pike authored
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/6125044
-
Andrew Balholm authored
Don't foster-parent text nodes that consist only of whitespace. (I implemented this entirely in inTableIM instead of creating an inTableTextIM, because the sole purpose of inTableTextIM seems to be to combine character tokens into a string, which our tokenizer does already.) Use parseImpliedToken to clarify a couple of cases. Handle <style>, <script>, <input>, and <form>. Ignore doctype tokens. Pass 20 additional tests. R=nigeltao CC=golang-dev https://golang.org/cl/6117048
-
- 24 Apr, 2012 9 commits
-
-
Ian Lance Taylor authored
Gccgo used to get this wrong. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/6121044
-
Mikkel Krautz authored
Replaces the default OS X installer background with a more fitting image. R=golang-dev CC=golang-dev https://golang.org/cl/6116043
-
Shenghou Ma authored
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/6100053
-
Shenghou Ma authored
R=golang-dev, rsc, bradfitz CC=golang-dev https://golang.org/cl/5919054
-
Andrew Balholm authored
This CL corrects the remaining differences that I could find between the implementation of inBodyIM and the spec: Handle <rp> and <rt>. Adjust SVG and MathML attributes. Reconstruct active formatting elements in the "any other start tag" case. Pass 7 additional tests. R=nigeltao CC=golang-dev https://golang.org/cl/6101055
-
Brad Fitzpatrick authored
If a part ends with "--boundary--", without a final "\r\n", that's also a graceful EOF, and we should return io.EOF instead of the fmt-wrapped io.EOF from bufio.Reader.ReadSlice. I found this bug parsing an image attachment from gmail. Minimal test case stripped down from the original gmail-generated attachment included. R=golang-dev, r CC=golang-dev https://golang.org/cl/6118043
-
Rob Pike authored
Fixes #3492. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/6112044
-
Rob Pike authored
Changes suggested by rsc after last CL. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/6117044
-
Gustavo Niemeyer authored
Fixes #3540. R=golang-dev, bradfitz, gustavo CC=golang-dev https://golang.org/cl/5996044
-
- 23 Apr, 2012 2 commits
-
-
Rémy Oudompheng authored
R=golang-dev, dave, rsc CC=golang-dev, remy https://golang.org/cl/6097044
-
Ian Lance Taylor authored
This used to panic when compiled by gccgo. Updates #2876. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/6100055
-