- 17 Feb, 2011 13 commits
-
-
Nigel Tao authored
R=rsc CC=golang-dev https://golang.org/cl/4169058
-
Russ Cox authored
Fixes #53. (again) R=agl1 CC=golang-dev https://golang.org/cl/4167054
-
Russ Cox authored
Almost the same definition as Go identifier names. (Leading digits are allowed.) Fixes #1520. R=r, r2 CC=golang-dev https://golang.org/cl/4173061
-
Russ Cox authored
Fixes #1526. R=ken2 CC=golang-dev https://golang.org/cl/4190051
-
Russ Cox authored
I have no idea how I meant to complete that sentence. R=r, r2 CC=golang-dev https://golang.org/cl/4191046
-
Russ Cox authored
R=r, r2 CC=golang-dev https://golang.org/cl/4173060
-
Albert Strasheim authored
R=agl1, rsc CC=golang-dev https://golang.org/cl/4170056
-
Andrew Gerrand authored
Fixes #1229. R=rsc CC=golang-dev https://golang.org/cl/4178048
-
Rob Pike authored
that should look in godoc. R=rsc, dsymonds CC=golang-dev https://golang.org/cl/4192041
-
Rob Pike authored
untested. Fixes #1523. R=rsc CC=golang-dev https://golang.org/cl/4171057
-
Andrew Gerrand authored
R=rsc CC=golang-dev https://golang.org/cl/4172051
-
Alex Brainman authored
R=golang-dev, rsc, hector CC=golang-dev, mattn https://golang.org/cl/4180052
-
Alex Brainman authored
R=golang-dev, r2 CC=golang-dev https://golang.org/cl/4184051
-
- 16 Feb, 2011 19 commits
-
-
Nigel Tao authored
I'm not sure if it's 100% correct wrt the HTML5 specification, but the test suite has plenty of HTML comment test cases, and we'll shake out any tokenization bugs as the parser improves its coverage. R=gri CC=golang-dev https://golang.org/cl/4186055
-
Jeff R. Allen authored
Make compile-time string const comparison match semantics of runtime.cmpstring. Fixes #1515. R=rsc CC=golang-dev, rog https://golang.org/cl/4172049
-
Dave Cheney authored
notes: Darwin is very particular about joining a multicast group if the listneing socket is not created in "udp4" mode, the other supported OS's are more flexible. A simple example sets up a socket to listen on the mdns/bonjour group 224.0.0.251:5353 // ensure the sock is udp4, and the IP is a 4 byte IPv4 socket, err := net.ListenUDP("udp4", &net.UDPAddr { IP: net.IPv4zero, // currently darwin will not allow you to bind to // a port if it is already bound to another process Port: 5353, }) if err != nil { log.Exitf("listen %s", err) } defer socket.Close() err = socket.JoinGroup(net.IPv4(224, 0, 0, 251)) if err != nil { log.Exitf("join group %s", err) } R=adg, rsc CC=golang-dev https://golang.org/cl/4066044
-
Mikio Hara authored
R=rsc CC=golang-dev https://golang.org/cl/4172045
-
Olivier Antoine authored
R=rsc CC=golang-dev https://golang.org/cl/4129042
-
Russ Cox authored
Also sort name lists. R=r, r2 CC=golang-dev https://golang.org/cl/4191044
-
Gustavo Niemeyer authored
R=rsc, rog, r CC=golang-dev https://golang.org/cl/3775048
-
Russ Cox authored
R=r, r2 CC=golang-dev https://golang.org/cl/4175053
-
Yasuhiro Matsumoto authored
Fixes #53. R=agl1, jacek.masiulaniec, adg, rsc, agl CC=golang-dev https://golang.org/cl/3794041
-
Rob Pike authored
R=rsc, gri, rsc1, bsiegert CC=golang-dev https://golang.org/cl/4183053
-
Rob Pike authored
Some significant improvements; e.g. pidigits goes from 8.33 to 6.37 Also add gccgo for regex-dna. R=rsc CC=golang-dev https://golang.org/cl/4160056
-
Russ Cox authored
Bitmaps were not being updated safely. Depends on 4188053. Fixes #1504. May fix issue 1479. R=r, r2 CC=golang-dev https://golang.org/cl/4184048
-
Russ Cox authored
implement runtime.casp on amd64. keep simultaneous panic messages separate. R=r CC=golang-dev https://golang.org/cl/4188053
-
Albert Strasheim authored
syscall: add MCL_* flags for mlockall R=rsc CC=golang-dev https://golang.org/cl/4177044
-
Roger Peppe authored
R=r, r2, rsc CC=golang-dev https://golang.org/cl/4119055
-
Yasuhiro Matsumoto authored
R=golang-dev, rsc, brainman CC=golang-dev https://golang.org/cl/4175049
-
Alex Brainman authored
Program listed http://code.google.com/p/go/issues/detail?id=1495 (with nRequester set to 10000) will crash with runtime: failed to create new OS thread (have 4526 already; errno=8) instead of runtime: failed to create new OS thread (have 618 already; errno=8). R=golang-dev, rsc, vcc CC=golang-dev https://golang.org/cl/4172046
-
Yasuhiro Matsumoto authored
R=golang-dev, brainman, rsc CC=golang-dev https://golang.org/cl/4179049
-
Nigel Tao authored
compression algorithms. R=rsc, r2, nigeltao_gnome CC=golang-dev https://golang.org/cl/4188054
-
- 15 Feb, 2011 7 commits
-
-
Andrew Gerrand authored
R=r, r2 CC=golang-dev https://golang.org/cl/4178055
-
Adam Langley authored
R=r, r2 CC=golang-dev https://golang.org/cl/4178054
-
Robert Griesemer authored
No language change. R=r, rsc, iant, ken2, r2 CC=golang-dev https://golang.org/cl/4168050
-
Andrew Gerrand authored
R=rsc CC=golang-dev https://golang.org/cl/4184046
-
Andrew Gerrand authored
R=rsc CC=golang-dev https://golang.org/cl/4191041
-
Adam Langley authored
Fixes #1509. R=r CC=golang-dev https://golang.org/cl/4167045
-
Robert Griesemer authored
Fixes #1514. R=r, r2 CC=golang-dev https://golang.org/cl/4173050
-
- 14 Feb, 2011 1 commit
-
-
Roger Peppe authored
R=r, rsc, r2 CC=golang-dev https://golang.org/cl/4171050
-