- 20 Nov, 2009 29 commits
-
-
Russ Cox authored
except chameneosredux which i know is being edited require gofmt for test/bench R=r https://golang.org/cl/157110
-
Devon H. O'Dell authored
we can't use them interchangably. R=rsc, wjosephson CC=golang-dev https://golang.org/cl/156113
-
Robert Griesemer authored
Meant as illustration of the Go pattern that is using goroutines and channels to handle exceptional situations. Note: There is no need for "Finally" since the "try block" (the function f supplied to Try) cannot do a Smalltalk-style non-local return and terminate the function surrounding Try. Replaces CL 157083. R=r, rsc https://golang.org/cl/157087
-
Russ Cox authored
R=r, gri CC=golang-dev https://golang.org/cl/156115
-
Russ Cox authored
R=ken2 https://golang.org/cl/157114
-
Rob Pike authored
R=rsc https://golang.org/cl/159044
-
Russ Cox authored
what a terrible way to implement strings R=r https://golang.org/cl/156116
-
Rob Pike authored
in order of discovery. R=rsc https://golang.org/cl/157112
-
Rob Pike authored
fix %E: was same as %e. add tests. Fixes #278. R=rsc CC=golang-dev https://golang.org/cl/157111
-
Russ Cox authored
* add runtime sliceslice1 for x[lo:] * remove runtime arraytoslice, rewriting &arr into arr[0:len(arr)]. * port cgen_inline into 8g, 5g. * use native memmove in maps R=ken2 https://golang.org/cl/157106
-
Russ Cox authored
* reverse-complement: port C algorithm to Go saves 30% on my MacBook Pro and makes it a fairer comparison. * test reverse-complement with and without GC (another 15%) * revise timing.sh to work on more systems * avoid two glibcisms in fasta.c R=r https://golang.org/cl/156110
-
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 11 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
-