1. 79b2cf9 pass the state to the encoders and decoders so error handling can be centralized. by Rob Pike · 16 years ago
  2. f6f8251 encoders for booleans and numbers. by Rob Pike · 16 years ago
  3. 832e72b delete io.ByteBuffer by Russ Cox · 16 years ago
  4. 5d5904b bug163 bug164 bug166 by Russ Cox · 16 years ago
  5. d3a412a io.StringBytes -> strings.Bytes io.ByteBuffer -> bytes.Buffer by Russ Cox · 16 years ago
  6. b948c43 integer encode/decode by Rob Pike · 16 years ago
  7. 8f9a953 make use of forward method declaration by Russ Cox · 16 years ago
  8. 9435dc2 allow forward declaration of struct in another file (in the same package). by Russ Cox · 16 years ago
  9. b32769b add os.Hostname by Russ Cox · 16 years ago
  10. 2b08372 add []byte as a special case: it will have a special, efficient encoding. by Rob Pike · 16 years ago
  11. 104d024 fix gobuild bug by Rob Pike · 16 years ago
  12. b2871b7 working on bgen by Kai Backman · 16 years ago
  13. d330c71 Getenv: almost no one wants the error, so make it return a string that may be empty. by Rob Pike · 16 years ago
  14. ac7f215 the first time a structure type appears when printing, identify it by name: by Rob Pike · 16 years ago
  15. d6197d9 Adding more debug output when 5l encounters a bad op combination. by Kai Backman · 16 years ago
  16. 4556c04 more changes to make 5g code generation arm compatible. by Kai Backman · 16 years ago
  17. 7986de6 gobs part 1: types. by Rob Pike · 16 years ago
  18. a2a8275 http Request parsing, plus a convenient accessor. by David Symonds · 16 years ago
  19. 480f512 bug165 by Russ Cox · 16 years ago
  20. a0bcaf4 Change os.Error convention: by Russ Cox · 16 years ago
  21. 70e232e separate local path lookup from standard package directories by Russ Cox · 16 years ago
  22. cf370a6 add ./ to imports where necessary by Russ Cox · 16 years ago
  23. 5851a1b allow by Russ Cox · 16 years ago
  24. 1ea2857 the any fix was too aggressive; allow any in any import. by Russ Cox · 16 years ago
  25. fa6df47 package main const foo = []int{1,2} by Russ Cox · 16 years ago
  26. 70a2734 better error; clean up lineno in a few places by Russ Cox · 16 years ago
  27. 4bce6d4 package main func foo(y) { } by Russ Cox · 16 years ago
  28. 30f2799 disable "any" except during canned imports. by Russ Cox · 16 years ago
  29. ae11e9e fix build by Russ Cox · 16 years ago
  30. 111ae83 6g: update for spec change CL 30586 by Russ Cox · 16 years ago
  31. 4866223 add reflect.Typeof; test for and fix nil interface bug in DeepEqual by Russ Cox · 16 years ago
  32. 6af5775 dreg by Russ Cox · 16 years ago
  33. 111005d Add Gobuf.r0 that stores arg0 or return value of goroutine. arm only. by Kai Backman · 16 years ago
  34. 190b5c9 fixes to 5g object file generation. arm specific regalloc. by Kai Backman · 16 years ago
  35. a50cbf6 style police: parens in if, for, switch, range by Russ Cox · 16 years ago
  36. 30533d6 Change strings.Split, bytes.Split to take a maximum substring count argument. by David Symonds · 16 years ago
  37. 466dd8d 6g crash re mail from gri jun 18. by Ken Thompson · 16 years ago
  38. 2ce8b44 base64: cut out some middle layers by Russ Cox · 16 years ago
  39. a1646fd make bytes.Copy both src- and dst- limited by Russ Cox · 16 years ago
  40. 354e61c Fix compile warnings in 5l. by Kai Backman · 16 years ago
  41. c3a087a Base64 encoder/decoder package. by Austin Clements · 16 years ago
  42. e6ff6c8 Fix http client handling of status messages with spaces (e.g. "HTTP/1.1 400 Bad by David Symonds · 16 years ago
  43. 0d77947 publish strconv.UnquoteChar by Russ Cox · 16 years ago
  44. a45c54d fix gobuild. errors introduced in CL 30601 by Russ Cox · 16 years ago
  45. 0aef57e fix a 6g crash after type errors. by Russ Cox · 16 years ago
  46. 5766553 fix io.Bytebuffer.Read for new EOF semantics by Rob Pike · 16 years ago
  47. 28ba977 rename Formatter to State and Format to Formatter, for nomenclatural consistency by Rob Pike · 16 years ago
  48. be639b9 Runtime is now starting up with a dummy c program as target: by Kai Backman · 16 years ago
  49. b6ce2a7 document the verbs for Printf by Rob Pike · 16 years ago
  50. bede992 set -e does not apply to ( ) blocks, so implement the check manually. sigh. by Russ Cox · 16 years ago
  51. 343bfcf Don't prefix Url.Path with a slash in Request.write, by David Symonds · 16 years ago
  52. 71f19d6 document requirements on Write method by Russ Cox · 16 years ago
  53. 8d343e2 a couple of cosmetic tweaks. by Rob Pike · 16 years ago
  54. 2fcc8f2 avoid pointer-to-slice operations in gobuild by Russ Cox · 16 years ago
  55. d281748 add arm support to mkasmh by Kai Backman · 16 years ago
  56. da5abb9 changes required if we disallow the implicit * by Russ Cox · 16 years ago
  57. 64684cc introduce os.EOF and io.ErrUnexpectedEOF. by Russ Cox · 16 years ago
  58. 022ee0c Add form body parsing to http.Request. better error handling throughout. by David Symonds · 16 years ago
  59. 2805eb9 fix build by Rob Pike · 16 years ago
  60. 08aab44 Add ReadByte to bytebuffer by Scott Schwartz · 16 years ago
  61. efc4088 make IP address available by Rob Pike · 16 years ago
  62. 7f3eb27 implement new spec language regarding conversions by Russ Cox · 16 years ago
  63. a6c7a80 Add a ReplaceAll method to Regexp. by Steve Newman · 16 years ago
  64. 1b9734b 1) Fix a problem with tabwriter.Flush: any pending text not yet by Robert Griesemer · 16 years ago
  65. 5eb5d4d `` strings may span multiple lines by Robert Griesemer · 16 years ago
  66. 05240bb use multiline string literal in gobuild by Russ Cox · 16 years ago
  67. eba82f4 better diagnostics for eof in a string. by Ken Thompson · 16 years ago
  68. ab7a8d4 make pkg/runtime/Makefile behave like the others: by Russ Cox · 16 years ago
  69. 5d2ee9d add Addr() string to net.Listener interface. by Russ Cox · 16 years ago
  70. f39fcd7 fix 386 build. some day... by Russ Cox · 16 years ago
  71. 3802009 Forgot to check in 386/asm.h. by Russ Cox · 16 years ago
  72. da5e962 shuffle some Linux system calls around for 386 by Russ Cox · 16 years ago
  73. 8522a47 update 386 to new runtime (CL 30381) by Russ Cox · 16 years ago
  74. 7343e03 runtime: stack growth adjustments, cleanup by Russ Cox · 16 years ago
  75. 76c87d5 386 system call fixes: by Russ Cox · 16 years ago
  76. cb89743 fix nesting level for parameters by Robert Griesemer · 16 years ago
  77. e15b64e clean gofmt by Rob Pike · 16 years ago
  78. 6202b0e add godoc to clean.bash by Rob Pike · 16 years ago
  79. 4c8fe76 - some fine-tuning of godoc templates per r's suggestion by Robert Griesemer · 16 years ago
  80. 536c2aa URL should have an empty Scheme if there is an invalid character (i.e. by Jacob Baskin · 16 years ago
  81. d8e4446 - install gofmt in src/cmd/gofmt - remove some left-over files by Robert Griesemer · 16 years ago
  82. 1ac2cfc grab bag of changes aimed at getting stack splitting to work: by Kai Backman · 16 years ago
  83. d45442e fix build by Robert Griesemer · 16 years ago
  84. f05c041 forgot to adjust tmproot by Robert Griesemer · 16 years ago
  85. 5071a5a move godoc to src/cmd/godoc by Robert Griesemer · 16 years ago
  86. 8c357ce fix another gc bug, one that i have only imagined, by Russ Cox · 16 years ago
  87. 36835c7 fix garbage collection race: save stack trace by Russ Cox · 16 years ago
  88. 30a28ae b/1909731 by Russ Cox · 16 years ago
  89. d4e57ff Fix a proto encoding crasher whereby a nil in a repeated group field would crash the server. by David Symonds · 16 years ago
  90. a893db8 gofmt (final resting place TBD): by Robert Griesemer · 16 years ago
  91. c2faeac fixed typo (slipped in with previous submit) by Robert Griesemer · 16 years ago
  92. 4a50434 Support for line comments trailing a field or declaration: by Robert Griesemer · 16 years ago
  93. be87e33 removed bogus if-statement by Robert Griesemer · 16 years ago
  94. cbd0092 Switch http client_test to use google.com/robots.txt to avoid redirect loop. by David Symonds · 16 years ago
  95. 61d6ad3 Add support for the basic extension done by Schilling's star. by David Symonds · 16 years ago
  96. 7fd9cfd - parser bug: return keyword may be followed by case or default keyword as well by Robert Griesemer · 16 years ago
  97. 5289195 Adding a batch of missing system calls. by Kai Backman · 16 years ago
  98. f220118 Added ld/go.c functionality into 5l, primarily dead code by Kai Backman · 16 years ago
  99. 1faf06e make 5g use 1 byte per binary asm statement. by Kai Backman · 16 years ago
  100. f315fb3 Basic HTTP client. by Steve Newman · 16 years ago