- 20 Nov, 2009 18 commits
-
-
Russ Cox authored
R=r https://golang.org/cl/157103
-
Russ Cox authored
R=r https://golang.org/cl/157102
-
Rob Pike authored
simple regexps run 20x faster. the regex-dna benchmark goes 3x faster. R=rsc CC=golang-dev https://golang.org/cl/156108
-
Eden Li authored
fatal error. Fixes #126. R=rsc https://golang.org/cl/157101
-
Russ Cox authored
R=r https://golang.org/cl/156104
-
Russ Cox authored
once more with feeling. TBR=kaib https://golang.org/cl/157100
-
James Meneghello authored
Allows the developer to pass a map either by itself for evaluation, or inside a struct. Access to data inside maps is identical to the current system for structs, ie. -Psuedocode- mp map[string]string = { "header" : "A fantastic header!", "footer" : "A not-so-fantastic footer!", } template.Execute(mp) ...can be accessed using {header} and {footer} in the template. Similarly, for maps inside structs: type s struct { mp map[string]string, } s1 = new s s1.mp["header"] = "A fantastic header!"; template.Execute(s1) ...is accessed using {mp.header}. Multi-maps, ie. map[string](map[string]string) and maps of structs containing more maps are unsupported, but then, I'm not even sure if that's supported by the language. Map elements can be of any type that can be written by the formatters. Keys should really only be strings. Fixes #259. R=r, rsc https://golang.org/cl/157088
-
James Meneghello authored
R=rsc, r https://golang.org/cl/156106
-
Michael Hoisie authored
R=rsc CC=golang-dev https://golang.org/cl/157068
-
Michael Hoisie authored
R=rsc https://golang.org/cl/156081
-
Evan Shaw authored
There's no functional change here. io gives the Read and Write methods byte slice arguments, but tar called them uint8. It's the same thing, but I think this is clearer and it matches what other packages do. R=rsc CC=golang-dev https://golang.org/cl/157099
-
Russ Cox authored
Fixes #269. TBR=kaib https://golang.org/cl/156107
-
Russ Cox authored
Fixes #144. R=ken2 CC=agl1 https://golang.org/cl/156102
-
Rob Pike authored
1) if char class contains a single character, make it a single character. (this is used to quote, e.g. [.] rather than \. 2) if regexp begins with ordinary text substring, use plain string match to start engine R=rsc CC=golang-dev https://golang.org/cl/157095
-
Robert Griesemer authored
R=rsc https://golang.org/cl/157096
-
Robert Griesemer authored
R=r, rsc https://golang.org/cl/157082
-
Trevor Strohman authored
No benchmarks are run unless the --benchmarks=<regexp> flag is specified on the gotest command line. This change includes sample benchmarks for regexp. % gotest --benchmarks=.* (standard test output redacted) testing.BenchmarkSimpleMatch 200000 7799 ns/op testing.BenchmarkUngroupedMatch 20000 76898 ns/op testing.BenchmarkGroupedMatch 50000 38148 ns/op R=r, rsc https://golang.org/cl/154173
-
Russ Cox authored
of keeping a checked-in copy. doesn't slow down make.bash appreciably. R=r https://golang.org/cl/156099
-
- 19 Nov, 2009 14 commits
-
-
Ken Thompson authored
R=rsc https://golang.org/cl/156100
-
Rob Pike authored
thanks to lionkov for the fix. Fixes #262. R=rsc CC=golang-dev https://golang.org/cl/156097
-
Russ Cox authored
Fixes #265. R=r CC=golang-dev https://golang.org/cl/157084
-
Robert Griesemer authored
R=r, rsc https://golang.org/cl/157085
-
Rob Pike authored
- actually test the results R=rsc, ken2 CC=golang-dev https://golang.org/cl/156094
-
Rob Pike authored
R=rsc https://golang.org/cl/156093
-
Adam Langley authored
I missed a case. R=rsc, agl CC=golang-dev https://golang.org/cl/156092
-
Rob Pike authored
also pick off the special case in strings.Index. don't want strings.IndexByte because the call site will very rarely need to allocate and we can handle the test in the code itself. bytes.IndexByte can avoid a common allocation. R=rsc CC=golang-dev https://golang.org/cl/156091
-
Robert Griesemer authored
Built-in function copy. Addresses issue 203. R=rsc, r, iant https://golang.org/cl/156089
-
Russ Cox authored
R=r https://golang.org/cl/157077
-
Devon H. O'Dell authored
R=rsc CC=golang-dev https://golang.org/cl/157074
-
Adam Langley authored
TBR=rsc R=rsc https://golang.org/cl/157075
-
Adam Langley authored
R=rsc CC=golang-dev https://golang.org/cl/157056
-
Adam Langley authored
R=rsc CC=golang-dev https://golang.org/cl/156054
-
- 18 Nov, 2009 8 commits
-
-
Russ Cox authored
R=r https://golang.org/cl/156085
-
Rob Pike authored
R=rsc, ken2 CC=golang-dev https://golang.org/cl/156084
-
Rob Pike authored
replace all calls with calls to copy use copy in regexp and bytes.Buffer R=rsc CC=golang-dev https://golang.org/cl/157073
-
Rob Pike authored
- has arguments (no stack split) - MOVL does not set condition R=ken2, rsc https://golang.org/cl/156086
-
Russ Cox authored
when used as arg to copy. R=ken2 https://golang.org/cl/157071
-
Russ Cox authored
necessary on freebsd. R=r, dho CC=golang-dev https://golang.org/cl/157069
-
Rob Pike authored
R=rsc CC=ken2, golang-dev https://golang.org/cl/156083
-
Adam Langley authored
Previously a netFd could be queued for reading/writing in the channel, but close(2)'ed before pollServer got to it. In this case, the kernel would consider the descriptor closed and the attempt to add it to the epoll set would fail and panic. This patch makes Close a roundtrip to the pollServer, although the actual close(2) still occurs elsewhere to avoid blocking the pollServer. Fixes #143. R=rsc CC=golang-dev https://golang.org/cl/152130
-