- 22 Nov, 2010 4 commits
-
-
Yves Junqueira authored
Fixes #1281. R=adg CC=golang-dev https://golang.org/cl/3150041
-
Yves Junqueira authored
Fixes #1282. R=adg CC=golang-dev https://golang.org/cl/3152041
-
Wei Guangjing authored
Fixes #1275. R=rsc, brainman CC=golang-dev https://golang.org/cl/3136042
-
Anthony Martin authored
# test program 1 package main 2 3 type C chan int 4 5 func F(c C) { 6 c <- true 7 } # old error test.go:6: cannot use true (type bool) as type int in function argument # new error test.go:6: cannot use true (type bool) as type int in channel send R=rsc, ejsherry CC=golang-dev https://golang.org/cl/3231042
-
- 21 Nov, 2010 1 commit
-
-
Robert Griesemer authored
This will make it easier to use Pos values together with suffix arrays by slightly de- coupling the mapping of Pos values to global offsets. R=rsc CC=golang-dev https://golang.org/cl/3231041
-
- 20 Nov, 2010 1 commit
-
-
Ken Thompson authored
thanks to vskrap, andrey mirtchovski, and Eoghan Sherry. R=rsc CC=golang-dev https://golang.org/cl/3245041
-
- 19 Nov, 2010 5 commits
-
-
Robert Griesemer authored
- compare against fsModified to check if index is out of date - don't change fsModified if there are no user-mapped file systems R=rsc, iant CC=golang-dev https://golang.org/cl/3213041
-
Adam Langley authored
(Files which I left out of the initial commit to keep it small.) R=rsc CC=golang-dev https://golang.org/cl/3183043
-
Russ Cox authored
R=gri CC=golang-dev https://golang.org/cl/3200041
-
Adam Langley authored
cipher is intended to replace crypto/block over time. This change only adds basic parts: CBC and CTR mode and doesn't add the package to the top-level Makefile. R=r, rsc CC=golang-dev https://golang.org/cl/3069041
-
Robert Griesemer authored
R=rsc CC=golang-dev https://golang.org/cl/3209041
-
- 18 Nov, 2010 8 commits
-
-
Ken Thompson authored
typecheck of composit literals to get rid of n^2 behavior. R=rsc CC=golang-dev https://golang.org/cl/3208041
-
Ian Lance Taylor authored
R=rsc CC=golang-dev https://golang.org/cl/3207041
-
Ian Lance Taylor authored
R=rsc, gri CC=golang-dev https://golang.org/cl/3206041
-
Ian Lance Taylor authored
This makes it much easier to use a tool like Swig which needs to run either 8c or 6c on generated code which #include's "runtime.h". R=ken2, rsc CC=golang-dev https://golang.org/cl/3205041
-
Russ Cox authored
Backwards incompatible change, but makes it easier to reason about non-idiomatic searches: now f specifies what is sought. R=gri CC=golang-dev https://golang.org/cl/3195042
-
Russ Cox authored
Change comment to be more generic, with indexed data structure search as one common use case. Fix typo []data. R=gri, rog CC=golang-dev https://golang.org/cl/3159041
-
Andrew Gerrand authored
R=r, r2 CC=golang-dev https://golang.org/cl/2890041
-
Robert Griesemer authored
R=rsc CC=golang-dev https://golang.org/cl/3183041
-
- 17 Nov, 2010 2 commits
-
-
Robert Griesemer authored
- adjustments to position.go due to changed sort.Search semantics - various minor fixes R=rsc CC=golang-dev, r https://golang.org/cl/3079041
-
Robert Griesemer authored
This fixes a problem with relativePath, where a prefix was not recognized because it ended in "//" as opposed to just "/". Also: Minor unrelated cleanup of a declaration. R=rsc CC=golang-dev https://golang.org/cl/3146041
-
- 13 Nov, 2010 3 commits
-
-
Robert Griesemer authored
A pos value represents a file-set specific, accurate source position value. It is 8x smaller in size than the corresponding Position value (4 bytes vs 32 bytes). Using Pos values instead of Position values in AST saves approx. 25MBytes of memory when running godoc on the current repository. This CL introduces the Pos, File, and FileSet data types; it does not affect existing code. Another (pending CL) will make the change to all dependent source files. Missing: tests R=r CC=golang-dev, rsc https://golang.org/cl/2936041
-
Alex Brainman authored
Fixes #1104. R=golang-dev, mattn, r CC=Joe Poirier, golang-dev https://golang.org/cl/3051041
-
Robert Griesemer authored
(+ some cosmetic changes) R=iant, iant2 CC=golang-dev https://golang.org/cl/3076041
-
- 12 Nov, 2010 8 commits
-
-
Roger Peppe authored
As discussed earlier. R=gri CC=golang-dev https://golang.org/cl/3025042
-
Kyle Consalus authored
Cleaner, but also results in a 25%+ performance improvement for Get()/SetValue() on my machine. R=golang-dev, r CC=golang-dev https://golang.org/cl/3072041
-
Ken Thompson authored
R=rob CC=golang-dev https://golang.org/cl/3075041
-
Benny Siegert authored
The need for a LastIndexAny function has come up in the discussion for https://golang.org/cl/3008041/. This function is implemented analogously to lastIndexFunc, using functions from the utf8 package. R=r, rsc, PeterGo CC=golang-dev https://golang.org/cl/3057041
-
Rob Pike authored
R=ken2 CC=golang-dev https://golang.org/cl/3074041
-
Adam Langley authored
elliptic implements several standard elliptic curves over prime fields. R=r, r2 CC=golang-dev https://golang.org/cl/3065041
-
Anschel Schaffer-Cohen authored
Added a "return" to the end of an example which previously threw a compile error if used. R=golang-dev, gri CC=golang-dev https://golang.org/cl/3052041
-
Ken Thompson authored
R=rsc CC=golang-dev https://golang.org/cl/3053041
-
- 11 Nov, 2010 4 commits
-
-
Robert Griesemer authored
R=r CC=golang-dev https://golang.org/cl/3048041
-
Robert Griesemer authored
R=r CC=golang-dev https://golang.org/cl/3042041
-
Adam Langley authored
* Add support for certificate policy identifiers * Fix the version number of generated certificates * Fix the parsing of version numbers * Fix the case of multiple name entries (it should have been a list of tagged values, not a tagged list of values). R=r CC=golang-dev https://golang.org/cl/3044041
-
Robert Griesemer authored
R=r CC=golang-dev https://golang.org/cl/3016043
-
- 10 Nov, 2010 4 commits
-
-
Alex Brainman authored
R=golang-dev, r2 CC=golang-dev https://golang.org/cl/3003043
-
Ian Lance Taylor authored
R=r CC=golang-dev https://golang.org/cl/3026041
-
Ian Lance Taylor authored
R=r, r2 CC=golang-dev https://golang.org/cl/3024041
-
Rob Pike authored
R=gri CC=golang-dev https://golang.org/cl/2986042
-