1. 5b5d3ef crypto/x509: return a better error when we fail to load system roots. by Adam Langley · 12 years ago
  2. 0fb6f5f crypto/cipher: don't persist errors in StreamWriter. by Adam Langley · 12 years ago
  3. 9b568ef cmd/5l: reduce the size of Prog and Sym by Dave Cheney · 12 years ago
  4. 42c8682 cmd/api: sort features by Anthony Martin · 12 years ago
  5. 3454b6b undo CL 5687057 / 58bc8aae4abb by Mikio Hara · 12 years ago
  6. 254caaf cmd/8l, cmd/6l: avoid zeroing zeroed fields by Dave Cheney · 12 years ago
  7. 2bddbf5 cmd/8g, cmd/dist, cmd/gc: fix warnings on Plan 9 by Anthony Martin · 12 years ago
  8. 60826e0 cmd/6c, cmd/8c: fix print format for Prog by Anthony Martin · 12 years ago
  9. 92b2643 math/big: fix typo by Russ Cox · 12 years ago
  10. bb192d1 cmd/6c: Optimize rotate expressions to use rotate instructions. by Matthew Dempsky · 12 years ago
  11. 4730a22 encoding/xml: fix decoding of attributes in to pointer fields. Fixes #3719. by Kamil Kisiel · 12 years ago
  12. 059fed3 runtime: try to determine the actual type during garbage collection by Jan Ziak · 12 years ago
  13. c0d9bf5 cmd/gc: more robust checking of OIND nodes. by Daniel Morsing · 12 years ago
  14. b628470 syscall, os: fix a fork-exec/wait race in Plan 9. by Akshat Kumar · 12 years ago
  15. 1d6eb2e cmd/gc: fix handling of struct padding in hash/eq. by Rémy Oudompheng · 12 years ago
  16. 47568c7 cmd/5a, cmd/5c, cmd/6a, cmd/6c, cmd/8a, cmd/8c, cmd/ld: update reference by Carl Shapiro · 12 years ago
  17. d8626ef runtime: faster mcentral alloc. by Sébastien Paolacci · 12 years ago
  18. d127ed5 cmd/gc, cmd/6g: fix error on large stacks. by Rémy Oudompheng · 12 years ago
  19. 41ec481 cmd/6c: Improve peep hole optimization of rotate and shift instructions. by Matthew Dempsky · 12 years ago
  20. dfdfba1 cmd/gc: allow registerization of temporaries created by inlining. by Rémy Oudompheng · 12 years ago
  21. f579faa cmd/go: diagnose un-bootstrapped runtime by Russ Cox · 12 years ago
  22. e985d54 time: add note about Parse()'s choice of default year by Shenghou Ma · 12 years ago
  23. 0c026c4 cmd/dist: update for new flag parsing on Plan 9 by Anthony Martin · 12 years ago
  24. d795f07 build: change GO386=sse to GO386=sse2 by Russ Cox · 12 years ago
  25. ebf3516 compress/flate: Performance improvement for inflate by Raph Levien · 12 years ago
  26. 2ad57b4 cmd/gc: don't hash nor compare struct padding or blank fields. by Rémy Oudompheng · 12 years ago
  27. e0aa26a time: Sleep does better job then runtime.Gosched in TestAfterStress by Alex Brainman · 12 years ago
  28. e19cdc6 testing: allow examples to pass (fix build) by Andrew Gerrand · 12 years ago
  29. c022943 html/template: remove noescape support by Andrew Gerrand · 12 years ago
  30. 5bd5ed2 testing: catch panicking example and report, just like tests by Andrew Gerrand · 12 years ago
  31. d46d0f1 all: remove exec bit on files by Shenghou Ma · 12 years ago
  32. e487ea8 cmd/vet: don't complain about Error() Fixes #4598. by Shenghou Ma · 12 years ago
  33. c2aee3c cmd/godoc: when redirecting don't clear query string by Shenghou Ma · 12 years ago
  34. 40b3758 os: use SameFile in TestStartProcess Fixes #4650. by Shenghou Ma · 12 years ago
  35. 1e095b7 testing: introduce (*B).ReportAllocs() by Shenghou Ma · 12 years ago
  36. 44ff17e time: add Timer.Reset by Volker Dobler · 12 years ago
  37. 55740f7 exp/html: remove "INCOMPLETE" comment by Andrew Balholm · 12 years ago
  38. 5a4a197 go/types: correct result type for append (bug fix) by Robert Griesemer · 12 years ago
  39. 1a03580 net/http: Serve creates service goroutines, not service threads by Matthew Dempsky · 12 years ago
  40. 3b73aaa net/http: fix racy test by Brad Fitzpatrick · 12 years ago
  41. 6d725e9 net: simplify ListenMulticastUDP by Mikio Hara · 12 years ago
  42. c241f69 syscall: simplify socket control messages by Mikio Hara · 12 years ago
  43. 0822a62 go/types: set type of lhs ident in type switch guards by Robert Griesemer · 12 years ago
  44. 5e5c0a9 go/types: various minor fixes by Robert Griesemer · 12 years ago
  45. fd1abac time: fix race by Brad Fitzpatrick · 12 years ago
  46. 6c3736a go/types: mark completely imported packages as such by Robert Griesemer · 12 years ago
  47. 7f18f81 go/types: callback for *ast.Ident -> Object mapping by Robert Griesemer · 12 years ago
  48. 1590be9 html/template: Clarifying references to "text/template" in the documentation. by Francesc Campoy · 12 years ago
  49. a0509d8 syscall: simplify netlink sockets by Mikio Hara · 12 years ago
  50. 406ca3c encoding/json: fix panics on type mismatches. by Rémy Oudompheng · 12 years ago
  51. 06af0ea encoding/gob: fix broken test (fix build) by Alex Brainman · 12 years ago
  52. bc1152a encoding/gob: handle encoding of different indirects of GobEncoder by Kyle Lemons · 12 years ago
  53. be25964 cmd/godoc: support m=text parameter for text files by Andrew Gerrand · 12 years ago
  54. 9487807 go/types: Moving from *ast.Objects to types.Objects (step 2). by Robert Griesemer · 12 years ago
  55. 1a9a639 cmd/5l: fix invalid executable header on Plan 9 by Anthony Martin · 12 years ago
  56. c13866d cmd/5c: fix handling of side effects when assigning a struct literal. by Rémy Oudompheng · 12 years ago
  57. b78f5f0 testing: document whitespace trimming of example expected/actual output. by Caleb Spare · 12 years ago
  58. ad63c7e text/template: Document that range can be used on chan types. by Kamil Kisiel · 12 years ago
  59. 3073a02 testing: in example, empty output not distinguished from missing output by Ryan Slade · 12 years ago
  60. 05bf9a4 net/http/cgi: fix test case sensitivity on Windows by Brad Fitzpatrick · 12 years ago
  61. 8b62f54 go/types: export QualifiedName.IsSame and NamedType.AstObj by Robert Griesemer · 12 years ago
  62. 20130f1 database/sql: document args, add a couple examples by Brad Fitzpatrick · 12 years ago
  63. 5a9463b go/types: Moving from *ast.Objects to types.Objects (step 1). by Robert Griesemer · 12 years ago
  64. 7f0449a database/sql: check NumInput on Stmt.Exec by Gwenael Treguier · 12 years ago
  65. bef4cb4 net/http: buffer before chunking by Brad Fitzpatrick · 12 years ago
  66. 98259b9 os: use syscall.Pipe2 on Linux by Georg Reinke · 12 years ago
  67. b73a1a8 cmd/6g, cmd/8g: Allow optimization of return registers. by Daniel Morsing · 12 years ago
  68. 53e342f bytes: fix UnreadByte failure after ReadBytes by Stéphane Travostino · 12 years ago
  69. 9ae7f34 cmd/gc, cmd/ld: update doc.go for -race by Shenghou Ma · 12 years ago
  70. bdd9f29 cmd/5g: allow optimization of return registers. by Shenghou Ma · 12 years ago
  71. d5d4ee4 cmd/5l: support -Z (zero stack frame at function entry) by Shenghou Ma · 12 years ago
  72. 60abc6b encoding/json: improve performance of Unmarshal on primitive types by Rick Arnold · 12 years ago
  73. 810e439 net: use windows ConnectEx to dial (when possible) by Alex Brainman · 12 years ago
  74. e32d115 syscall: implement Pipe2 on Linux and use it in ForkExec by Georg Reinke · 12 years ago
  75. 6e981c1 runtime: work around 5c bug in GC code. by Rémy Oudompheng · 12 years ago
  76. 9204eb4 runtime: interpret type information during garbage collection by Jan Ziak · 12 years ago
  77. 7847f32 runtime: faster segmented stacks by Dmitriy Vyukov · 12 years ago
  78. f82db7d runtime: less aggressive per-thread stack segment caching by Dmitriy Vyukov · 12 years ago
  79. eee3dd1 cmd/cgo: for gccgo: use intgo, don't use slice as void return type by Ian Lance Taylor · 12 years ago
  80. ecb7548 container/list: avoid memory leaks by Robert Griesemer · 12 years ago
  81. 74c03cb cmd/ld: fix incompatible type signatures on Plan 9 by Anthony Martin · 12 years ago
  82. 593d8b0 cmd/go: remove $GOROOT as a go get target by Dave Cheney · 12 years ago
  83. 5ca4f5e cmd/go: get -m options from GOARCH when using gccgo by Ian Lance Taylor · 12 years ago
  84. e0bf037 go/types: don't parse imported packages multiple times. by Rémy Oudompheng · 12 years ago
  85. 8fff252 cmd/gc: add space to export data to match linker expectations by Rémy Oudompheng · 12 years ago
  86. 4ba27df cmd/dist: drop unneeded clang flags by Dave Cheney · 12 years ago
  87. 0141c92 go/printer, gofmt: don't print unneeded parentheses around parameter types by Robert Griesemer · 12 years ago
  88. 82accf4 go/parser: better error message for declaration error by Robert Griesemer · 12 years ago
  89. be36ab3 utf8: fix typo. by Andrey Mirtchovski · 12 years ago
  90. f38df4e net/http: don't buffer request writing if dest is already buffered by Brad Fitzpatrick · 12 years ago
  91. 65cb190 go/types: "inherit" type in constant declarations w/o initialization expressions (bug fix) by Robert Griesemer · 12 years ago
  92. 89a7c87 all: use io.ByteWriter now that it exists by Brad Fitzpatrick · 12 years ago
  93. 548e587 net/http/cgi: make it work without REQUEST_URI environment variable by Alex Brainman · 12 years ago
  94. f7320bf cmd/vet: fix doc typo. by Jason Travis · 12 years ago
  95. fba96e9 cmd/gc: fix uintptr(nil) issues. by Rémy Oudompheng · 12 years ago
  96. 77c3433 cmd/go: use filepath.SplitList when inspecting GOPATH by Dave Cheney · 12 years ago
  97. 60544b6 go/doc: recursively inspect selector expressions by Andrew Gerrand · 12 years ago
  98. 30ff063 image/jpeg: handle those (unusual) grayscale images whose sampling by Nigel Tao · 12 years ago
  99. 86aad66 cmd/vet: %#q is a valid format (uses raw quotes). by David Symonds · 12 years ago
  100. a091d2e cmd/gc, cmd/ld: rename -b to -race by Russ Cox · 12 years ago