- 22 Sep, 2010 14 commits
-
-
Robert Griesemer authored
R=rsc CC=golang-dev https://golang.org/cl/2213045
-
Andrew Gerrand authored
R=nigeltao, nigeltao_golang CC=golang-dev https://golang.org/cl/2206044
-
Andrew Gerrand authored
R=r CC=golang-dev https://golang.org/cl/2199043
-
Robert Griesemer authored
This is a replacement for pending CL 2219042. It only contains the raw suffixarray functionality with two methods: - New create a new index from some data - Lookup lookup occurences of a bytes slice in the data Any other functionality (dealing with multiple data sets and the corresponding position lists) is generic and doesn't have to be part of this package. Known performance bug: This implementation works fine for data sets up to several megabytes as long as it doesn't contain very long contiguous sequences of equal bytes. For instance, index creation for all .go files under GOROOT (250KLOCs, approx. 9MB) takes ~50s on 2.66 GHz Intel Xeon as long as test/fixedbugs/257.go is excluded. With that file, index creation times takes several days. 257.go contains a string of 1M smiley faces. There are more sophisticated suffixarray creation algorithms which can handle very long common prefixes. The implementation can be updated w/o the need to change the interface. R=rsc, r, PeterGo CC=golang-dev https://golang.org/cl/2265041
-
Anthony Martin authored
R=r CC=golang-dev https://golang.org/cl/2237044
-
Russ Cox authored
Sent from my phone. R=adg CC=golang-dev https://golang.org/cl/2192049
-
Andrew Gerrand authored
R=rsc CC=golang-dev https://golang.org/cl/2248043
-
Alex Brainman authored
Fixes #1124. Implementation is suggested by Skip. Test is suggested by PeterGo. R=r, PeterGo, rsc CC=golang-dev, skip.tavakkolian https://golang.org/cl/2256041
-
Roger Peppe authored
R=r, rsc CC=golang-dev https://golang.org/cl/2250042
-
Russ Cox authored
R=kaib CC=golang-dev https://golang.org/cl/2254044
-
Russ Cox authored
* Add documentation about array arguments. Fixes issue 1125. * Do not interpret x, y := z, w as special errno form. Fixes issue 952. * Fix nested Go calls (brainman). Fixes issue 907. R=r CC=golang-dev https://golang.org/cl/2214044
-
Nigel Tao authored
R=rsc CC=golang-dev https://golang.org/cl/2257042
-
Andrew Gerrand authored
R=rsc, r2 CC=golang-dev https://golang.org/cl/2213044
-
Andrew Gerrand authored
The front page remains fixed-width. All other pages should look good in windows >=500px wide. Includes additional styles for search result highlighting, code comments, and general CSS clean-ups. Tested with Chrome 6, Firefox 3.6, IE 7, and IE 8. R=gri, r CC=golang-dev https://golang.org/cl/2229041
-
- 21 Sep, 2010 5 commits
-
-
Ian Lance Taylor authored
Regenerate zsyscall_linux_*.go files with recent changes to mksyscall.sh. Add socketpair to syscall_linux_amd64.go; for some reason it was in the generated file but not in the source file. R=rsc, r2 CC=golang-dev https://golang.org/cl/2190044
-
Rob Pike authored
They are unused and not that useful anyway. R=rsc CC=golang-dev https://golang.org/cl/2225045
-
Andrew Gerrand authored
- fix release upload - add -rev= flag to build specific revision and exit - added support for all-$GOARCH.bash R=rsc CC=golang-dev https://golang.org/cl/2247044
-
Alex Brainman authored
Fixes #1122. Thanks to BigBoss1964 for the solution. R=golang-dev, r2 CC=golang-dev https://golang.org/cl/2246042
-
Nigel Tao authored
Fix missing return in Set(x, y, color). R=r CC=golang-dev https://golang.org/cl/2256042
-
- 20 Sep, 2010 16 commits
-
-
Robert Griesemer authored
R=rsc CC=golang-dev https://golang.org/cl/2241043
-
Ken Thompson authored
static init redo R=rsc CC=golang-dev https://golang.org/cl/2254041
-
Joe Poirier authored
R=rsc CC=golang-dev https://golang.org/cl/2250041
-
Luuk van Dijk authored
R=rsc, ken2, r CC=golang-dev https://golang.org/cl/2151044
-
Adam Langley authored
The key/value format of X.500 names means that it's possible to encode a name with multiple values for, say, organisation. RFC5280 doesn't seem to consider this, but there are Verisign root certificates which do this and, in order to find the correct root certificate in some cases, we need to handle it. Also, CA certificates should set the CA flag and we now check this. After looking at the other X.509 extensions it appears that they are universally ignored/bit rotted away so we ignore them. R=rsc CC=golang-dev https://golang.org/cl/2249042
-
Adam Langley authored
asn1: add support for T61String because this is the string type which several www.google.com certificates are now using for fields like CommonName tls: force a handshake in Dial so that certificates are ready afterwards. Fixes #1114. R=rsc CC=golang-dev https://golang.org/cl/2216043
-
Rob Pike authored
R=adg CC=golang-dev https://golang.org/cl/2211044
-
Rob Pike authored
R=rsc CC=golang-dev https://golang.org/cl/2229044
-
Alex Brainman authored
R=rsc, Joe Poirier, r CC=golang-dev https://golang.org/cl/2248041
-
Russ Cox authored
missing from last CL, sorry R=r CC=golang-dev https://golang.org/cl/2214043
-
Russ Cox authored
Wasn't running the temp binary under $E (emulator). R=r CC=golang-dev https://golang.org/cl/2237043
-
Russ Cox authored
*Much* better on NaCl, where memory faults are deadly. R=r CC=golang-dev https://golang.org/cl/2249041
-
Russ Cox authored
NaCl rejects zero-length write using nil pointer. R=r CC=golang-dev https://golang.org/cl/2237042
-
Russ Cox authored
R=r CC=golang-dev https://golang.org/cl/2221042
-
Nigel Tao authored
R=r CC=golang-dev https://golang.org/cl/2192043
-
Rob Pike authored
This also silences some misleading logging. Also improve logging. R=rsc CC=golang-dev https://golang.org/cl/2245041
-
- 19 Sep, 2010 3 commits
-
-
Russ Cox authored
R=ken2 CC=golang-dev https://golang.org/cl/2204045
-
Rob Pike authored
Fixes #1118. R=rsc CC=golang-dev https://golang.org/cl/2225044
-
Rob Pike authored
The decoder was crashing when handling an rpc that expected a struct but was delivered something else. This diagnoses the problem. The other direction (expecting non-struct but getting one) was already handled. R=rsc CC=golang-dev https://golang.org/cl/2246041
-
- 18 Sep, 2010 2 commits
-
-
Rob Pike authored
Re-enable the test on Windows. R=brainman, alex.brainman CC=golang-dev https://golang.org/cl/2244041
-
Alex Brainman authored
R=r CC=golang-dev https://golang.org/cl/2225042
-