- 03 Nov, 2011 14 commits
-
-
Rob Pike authored
This is Go 1 package renaming CL #2. This one merely moves the source; the import strings will be changed after the next weekly release. exp/template/html -> html/template big -> math/big cmath -> math/cmplx rand -> math/rand syslog -> log/syslog The only edits are in Makefiles and deps.bash. Note that this CL moves exp/template/html out of exp. I decided to do that so all the renamings can be done together, even though the API (and that of template, for that matter) is still fluid. R=r, rsc CC=golang-dev https://golang.org/cl/5332053
-
Brad Fitzpatrick authored
ClientConn's main feature (pipelining support) wasn't being used anyway. Ends up simpler to just not use it. This is prep for the http diet, moving ClientConn, ServerConn, etc into http/httputil. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5305088
-
Russ Cox authored
Now that vector is gone, there is no precedent to refer to. This is a confusing point for people looking to use the package. R=golang-dev, r, cw CC=golang-dev https://golang.org/cl/5322069
-
Rob Pike authored
Use simpler shell constructs. R=golang-dev CC=golang-dev https://golang.org/cl/5297080
-
Rob Pike authored
This is Go 1 package renaming CL #1. This one merely moves the source; the import strings will be changed after the next weekly release. The only edits are in Makefiles. R=r, rsc CC=golang-dev https://golang.org/cl/5331060
-
Luuk van Dijk authored
Fixes #2355. I have a test, but not sure if it's worth adding. Instead i've made the patching-over in reflect.c methods more fatal and more descriptive. R=rsc CC=golang-dev https://golang.org/cl/5302082
-
Russ Cox authored
R=lvd, lvd CC=golang-dev https://golang.org/cl/5332051
-
Russ Cox authored
Fixes #2333. R=r CC=golang-dev https://golang.org/cl/5316075
-
Russ Cox authored
R=ken2 CC=golang-dev https://golang.org/cl/5298091
-
Andrew Balholm authored
Pass tests1.dat, test 83: <title><meta></title><link><title><meta></title> | <html> | <head> | <title> | "<meta>" | <link> | <title> | "<meta>" | <body> Also pass test 84: <style><!--</style><meta><script>--><link></script> R=nigeltao CC=golang-dev https://golang.org/cl/5331061
-
Andrew Gerrand authored
R=golang-dev, r CC=golang-dev https://golang.org/cl/5337041
-
David Symonds authored
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5303095
-
Fumitoshi Ukai authored
websocket spec had changed server-side requiements to return an HTTP response with an appropriate error code (such as 400 Bad Request) when it finds client did not send a handshake that matches websocket protocol, rather than just closing connection. It needs to flush out response before closing connection. Fixes issues 2396. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5318072
-
Mikio Hara authored
R=golang-dev, r CC=golang-dev https://golang.org/cl/5330068
-
- 02 Nov, 2011 26 commits
-
-
Andrew Balholm authored
Pass tests1.dat, test 80: <a href=a>aa<marquee>aa<a href=b>bb</marquee>aa | <html> | <head> | <body> | <a> | href="a" | "aa" | <marquee> | "aa" | <a> | href="b" | "bb" | "aa" Also pass tests through test 82: <!DOCTYPE html><spacer>foo R=nigeltao CC=golang-dev https://golang.org/cl/5319071
-
Luuk van Dijk authored
R=rsc CC=golang-dev https://golang.org/cl/5323071
-
Russ Cox authored
R=golang-dev, r CC=golang-dev https://golang.org/cl/5319072
-
Russ Cox authored
Add ast.SortImports(fset, file) to go/ast, for use by both programs. Fixes #346. R=golang-dev, r CC=golang-dev https://golang.org/cl/5330069
-
Rob Pike authored
The recursive definitions are illegal Go, but godoc doesn't mind. R=bradfitz, r, n13m3y3r, rsc CC=golang-dev https://golang.org/cl/5322067
-
Brad Fitzpatrick authored
Fixes #2328 (float, bool) R=rsc, r CC=golang-dev https://golang.org/cl/5294067
-
Charles L. Dorian authored
R=rsc CC=golang-dev https://golang.org/cl/5298087
-
Luuk van Dijk authored
Fixes #2343. R=rsc CC=golang-dev https://golang.org/cl/5332048
-
Brad Fitzpatrick authored
R=golang-dev, adg CC=golang-dev https://golang.org/cl/5316069
-
Luuk van Dijk authored
mark OADDR inserted by typecheck as implicit OCOPY takes ->left and ->right, not ->list OMAKE*'s can all have arguments precedence for OIND was initalized twice fixes #2414 R=rsc, dave CC=golang-dev https://golang.org/cl/5319065
-
Dmitriy Vyukov authored
The change introduces 2 generic mutex implementations (futex- and semaphore-based). Each OS chooses a suitable mutex implementation and implements few callbacks (e.g. futex wait/wake). The CL reduces code duplication, extends some optimizations available only on Linux/Windows to other OSes and provides ground for futher optimizations. Chan finalizers are finally eliminated. (Linux/amd64, 8 HT cores) benchmark old new BenchmarkChanContended 83.6 77.8 ns/op BenchmarkChanContended-2 341 328 ns/op BenchmarkChanContended-4 382 383 ns/op BenchmarkChanContended-8 390 374 ns/op BenchmarkChanContended-16 313 291 ns/op (Darwin/amd64, 2 cores) benchmark old new BenchmarkChanContended 159 172 ns/op BenchmarkChanContended-2 6735 263 ns/op BenchmarkChanContended-4 10384 255 ns/op BenchmarkChanCreation 1174 407 ns/op BenchmarkChanCreation-2 4007 254 ns/op BenchmarkChanCreation-4 4029 246 ns/op R=rsc, jsing, hectorchu CC=golang-dev https://golang.org/cl/5140043
-
Nigel Tao authored
R=dsymonds CC=golang-dev https://golang.org/cl/5303092
-
Alex Brainman authored
R=rsc CC=golang-dev https://golang.org/cl/5318056
-
Andrew Gerrand authored
R=golang-dev, dsymonds, r CC=golang-dev https://golang.org/cl/5307080
-
David Symonds authored
R=golang-dev, adg CC=golang-dev https://golang.org/cl/5323070
-
Rob Pike authored
A profound change to christen the new tag. R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5327062
-
Russ Cox authored
I promised it wouldn't last very long. People who really need this can sync to 6a5647d82728. ««« original CL description gc: add GOEXPERIMENT=os.Error This won't last long, I promise. R=ken2 CC=golang-dev https://golang.org/cl/5330066 »»» R=ken2 CC=golang-dev https://golang.org/cl/5333053
-
Russ Cox authored
This won't last long, I promise. R=ken2 CC=golang-dev https://golang.org/cl/5330066
-
Andrew Gerrand authored
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5311083
-
Andrew Gerrand authored
R=golang-dev, bradfitz, rsc CC=golang-dev https://golang.org/cl/5308077
-
Russ Cox authored
R=adg CC=golang-dev https://golang.org/cl/5328062
-
Russ Cox authored
The Plan 9 build stops in runtime, but might as well fix these anyway. R=adg CC=golang-dev https://golang.org/cl/5336045
-
Russ Cox authored
R=adg CC=golang-dev https://golang.org/cl/5303091
-
Russ Cox authored
R=adg CC=golang-dev https://golang.org/cl/5333052
-
Russ Cox authored
R=golang-dev, iant, r, r CC=golang-dev https://golang.org/cl/5307066
-
Russ Cox authored
R=golang-dev, bsiegert, iant CC=golang-dev https://golang.org/cl/5294074
-