1. 2e4334e minor manual format corrections by Robert Griesemer · 15 years ago
  2. 295ceb4 remove uses of string concatenation from src and misc directory by Robert Griesemer · 15 years ago
  3. a8ed75d added benchmarks to rand_test.go; by Roger Peppe · 15 years ago
  4. 51f2932 syscalls can return negative i/o counts. fix bugs in ReadAt and WriteAt not to include by Rob Pike · 15 years ago
  5. 9165331 Make the operations on the global rng thread safe. by Roger Peppe · 15 years ago
  6. 8a5b76c json package: Fixed handling of nil values by Ross Light · 15 years ago
  7. 6ebfd1e Added XTEA block cipher package to src/pkg/crypto by Adrian O'Grady · 15 years ago
  8. 0400a7f runtime: start new darwin/amd64 threads on correct stack, by Russ Cox · 15 years ago
  9. 132c42f bufio: use copy - significant speedup for writers by Russ Cox · 15 years ago
  10. 5a4a08f Fix stack on FreeBSD / add stack check across the board by Devon H. O'Dell · 15 years ago
  11. cdce732 When SA_SIGINFO is set, we should use __sa_sigaction on FreeBSD by Devon H. O'Dell · 15 years ago
  12. 0d3301a runtime: don't touch pages of memory unnecessarily. by Russ Cox · 15 years ago
  13. 33649bd runtime: introduce unsafe.New and unsafe.NewArray by Russ Cox · 15 years ago
  14. a4a8224 use a bootstrap array to avoid allocation for short vectors by Robert Griesemer · 15 years ago
  15. 8c22dd2 Remove copyBytes completely in favor of copy. by Christopher Wedgwood · 15 years ago
  16. 20c1ec2 pick off special one-byte case in copy. worth 2x in benchmarks (38ns->16ns). by Rob Pike · 15 years ago
  17. 80e17d6 the AST walker currently provides no way to find out how the by Roger Peppe · 15 years ago
  18. f91cd44 save a few ns by inlining (which mostly simplifies things anyway). by Rob Pike · 15 years ago
  19. 353ef80 unexport Fmt. it's not needed outside this package any more by Rob Pike · 15 years ago
  20. 4c0e51c Make printing faster by avoiding mallocs and some other advances. by Rob Pike · 15 years ago
  21. ed6fd1b runtime: disable pointer scan optimization * broken by reflect, gob by Russ Cox · 15 years ago
  22. 44c1eb6 Fix syscall.Statfs and syscall.Fstatfs for 386 GNU/Linux. by Ian Lance Taylor · 15 years ago
  23. 864c757 gc/runtime: pass type structure to makeslice. by Russ Cox · 15 years ago
  24. 2807621 net: more fiddling with the udp test. by Russ Cox · 15 years ago
  25. 9e0b68d Add syscall.Rename for NaCl. Fixes NaCl build. by Ian Lance Taylor · 15 years ago
  26. e79bcf8 runtime: shift the index for the sort by one. by Adam Langley · 15 years ago
  27. 0b5cc31 Add os.Rename. by Ian Lance Taylor · 15 years ago
  28. d1740bb Remove global chanlock. by Adam Langley · 15 years ago
  29. d6b3f37 bytes: asm for bytes.IndexByte by Russ Cox · 15 years ago
  30. 609eeee make Native Client support build again, by Russ Cox · 15 years ago
  31. 11384ee testing: compute MB/s in benchmarks by Russ Cox · 15 years ago
  32. 4ed5717 avoid an allocation inside bytes.Buffer by providing a static array. by Rob Pike · 15 years ago
  33. 3b858fb net: turn off empty packet test by default by Russ Cox · 15 years ago
  34. f3d63be Add Count, Cycle, ZipWith, GroupBy, Repeat, RepeatTimes, Unique to exp/iterable. by Michael Elkins · 15 years ago
  35. e93132c crypto/rsa: fix shadowing error. by Adam Langley · 15 years ago
  36. cf37254 runtime: fix Caller crash on 386. by Russ Cox · 15 years ago
  37. 7e5055c runtime: malloc fixes by Russ Cox · 15 years ago
  38. 10a349a The String() method requires global state that makes it not work outside of this package, by Rob Pike · 15 years ago
  39. fcc4dd6 error propagation in gob/encoder. by Rob Pike · 15 years ago
  40. bc3e347 Add ReadFrom and WriteTo methods to bytes.Buffer, to enable i/o without buffer allocation. by Rob Pike · 15 years ago
  41. 6db683f - include type-associated consts and vars when filtering a PackageDoc by Robert Griesemer · 15 years ago
  42. d984f98 minor improvement to formatting: don't allocate padding strings every time. by Rob Pike · 15 years ago
  43. b0683bd move ReadFile, WriteFile, and ReadDir into a separate io/ioutil package. by Rob Pike · 15 years ago
  44. 1eba218 Runes: turn string into []int Split: fixed typo in documentation by Peter Froehlich · 15 years ago
  45. dc7355a Add flag -tabindent to gofmt: forces use of by Robert Griesemer · 15 years ago
  46. e89441b net: test and fix support for 0-length datagram packets. by Russ Cox · 15 years ago
  47. d8bc797 apply gofmt to json files by Robert Griesemer · 15 years ago
  48. 114f73f fix segfault printing errors. add test case and improve messages. by Rob Pike · 15 years ago
  49. f6c0eba test that arrays work properly. by Rob Pike · 15 years ago
  50. 9e55d0d time: another bug in SecondsToUTC. added random test to look for more. by Russ Cox · 15 years ago
  51. 952b91e Add Shutdown to 32-bit GNU/Linux build. by Ian Lance Taylor · 15 years ago
  52. 8d652ee time: fix handling of Jan 1 1601, 1201, 801, ... by Russ Cox · 15 years ago
  53. eb16346 net: fix netFD.Close races by Devon H. O'Dell · 15 years ago
  54. ff3ea68 explicitly catch attempt to decode into a value - must be a pointer to see the result. by Rob Pike · 15 years ago
  55. f9810f1 make io.ReadFile use Stat.Size as a hint for preallocation by Rob Pike · 15 years ago
  56. 49ebcfb Add syscall.Shutdown to FreeBSD i386/amd64 by Devon H. O'Dell · 15 years ago
  57. 0b126c1 syscall: add Shutdown on OS X, add more constants in mkerror.sh by Russ Cox · 15 years ago
  58. ceb1fe2 update package unicode to Unicode 5.2 by Rob Pike · 15 years ago
  59. 2a54997 gob: fix build by Russ Cox · 15 years ago
  60. 4f6dbc6 Explicitly return values where it's shadowing the parameter. by Christopher Wedgwood · 15 years ago
  61. a0f742d more gob bugs by Rob Pike · 15 years ago
  62. 598f3e2 A first stab at porting the XCB X11 protocol bindings to go. by Tor Andersson · 15 years ago
  63. 9d50b46 json: Decode into native Go data structures by Sergey 'SnakE' Gromov · 15 years ago
  64. c1767db Typo in comment. Fixes #358. by Robert Griesemer · 15 years ago
  65. 12206f6 sync.RWMutex: rewritten to add support for concurrent readers. by Péter Szabó · 15 years ago
  66. 229807c Added a method on UDPConn so they can actually send broadcast packets. by Jonathan Wills · 15 years ago
  67. a85c258 a[b:len(a)] -> a[b:] by Christopher Wedgwood · 15 years ago
  68. 68d3b6e Handle \r as a whitespace when parsing JSON string. Fixes #272. by Andrew Skiba · 15 years ago
  69. c78710f Add trivial whitespace to CorruptInputError strings. by Christopher Wedgwood · 15 years ago
  70. f0c9719 Minimise bitrot: bytes.Copy -> copy (compile tested only) by Christopher Wedgwood · 15 years ago
  71. ed62d27 template: two bug fixes / nits by Russ Cox · 15 years ago
  72. be98bc4 websocket: avoid $GOROOT in case it has spaces by Russ Cox · 15 years ago
  73. 4689265 crypto/md4, exp/draw/x11: fix makefile to build when GOROOT has whitespaces by Sergio Luis O. B. Correia · 15 years ago
  74. f9f0184e Add WebSocket server framework hooked into http. by Fumitoshi Ukai · 15 years ago
  75. f3e0f21 Correct expression level for argument lists. Fixes #352. by Robert Griesemer · 15 years ago
  76. b5358e0 a few utf8 benchmarks. on my mac: by Rob Pike · 15 years ago
  77. 773e779 rewrite RuneCountInString to use range. by Rob Pike · 15 years ago
  78. f65427a Initial exp/draw/x11 implementation. by Nigel Tao · 15 years ago
  79. a0c5543 fix weird all.bash failures by running deps.bash before make clean runs in pkg directory. by Rob Pike · 15 years ago
  80. 28f19140 Handle presence of illegal semicolon after package clause better. by Robert Griesemer · 15 years ago
  81. a38ec58 Replace sort.Sort call with heapify algorithm in Init. by Robert Griesemer · 15 years ago
  82. bd80b5a test case for large angles in trig functions by Ken Thompson · 15 years ago
  83. b2bc1db bad sin/cos for large angles. fixes #326. by Ken Thompson · 15 years ago
  84. c6f8df0 fix for broken build (built-in new was invisible due to a parameter called 'new') by Robert Griesemer · 15 years ago
  85. 001a8b1 Change to container/vector interface: by Robert Griesemer · 15 years ago
  86. 9da8d88 A quick fix to ensure that json.Marshal returns errors correctly, as well as some error-related tests by Michael Hoisie · 15 years ago
  87. 5f484ec http: redirect to correct URL by Russ Cox · 15 years ago
  88. b320cf5 add Take, TakeWhile, Drop, DropWhile to exp/iterable by Michael Elkins · 15 years ago
  89. c14e265 print error's string when panicking. by Rob Pike · 15 years ago
  90. f586870 Add benchmarks for commonly used routines. by Trevor Strohman · 15 years ago
  91. c95c27a json: expose map in generic representation by Russ Cox · 15 years ago
  92. 8ebd7f7 Provides implementation of MD4 hashing algorithm. by Chris Lennert · 15 years ago
  93. 6fc8207 go: makes it build for the case $GOROOT has whitespaces by Sergio Luis O. B. Correia · 15 years ago
  94. edf7485 gofmt -r: documentation and minor fixes by Russ Cox · 15 years ago
  95. 9e95d97 Fix crash in xml.Unmarshal. Occasionally while running a scrape of some xml with many goroutines by Vish Subramanian · 15 years ago
  96. b90f673 io.ReadWriter: fix doc comment (ReadWrite -> ReadWriter) by Russ Cox · 15 years ago
  97. 3b7f552 fix bug in prefix code: must stop one character before any potential match of an empty string by Rob Pike · 15 years ago
  98. b050a1b Fix doc striing for NewReadLogger. by Rob Pike · 15 years ago
  99. 6e0842d crypto/tls: add initial client implementation. by Adam Langley · 15 years ago
  100. 28e392d gofmt: add -r flag to rewrite source code according to pattern by Russ Cox · 15 years ago