1. 63acc48 encoding/gob: add custom decoder buffer for performance by Rob Pike · 10 years ago
  2. 9965e40 encoding/gob: custom array/slice decoders by Rob Pike · 10 years ago
  3. 868948b encoding/gob: fix 386 build by Rob Pike · 10 years ago
  4. 9c3fc83 encoding/gob: error rather than panic when decoding enormous slices Fixes #8084. by Rob Pike · 10 years ago
  5. c007ce8 build: move package sources from src/pkg to src by Russ Cox · 10 years ago[Renamed from src/pkg/encoding/gob/decode.go]
  6. fdaeec5 encoding/gob: save a call to userType by Rob Pike · 10 years ago
  7. e4bc3c4 encoding/gob: fewer decAlloc calls by Russ Cox · 11 years ago
  8. ce5bbfd encoding/gob: simplify allocation in decode. by Rob Pike · 11 years ago
  9. 3050a0a encoding/gob: remove unsafe, use reflection. by Rob Pike · 11 years ago
  10. 13e359b encoding/gob: improve interface assignment error message by Kelsey Hightower · 11 years ago
  11. 7a73f32 encoding/gob: fix two crashes on corrupted data. by Rémy Oudompheng · 11 years ago
  12. 77913e9 encoding/gob: do not hide an unsafe.Pointer in a uintptr by Carl Shapiro · 11 years ago
  13. 7a480a8 undo CL 14154043 / 3e485428767e by Carl Shapiro · 11 years ago
  14. 6ffd70e encoding/gob: do not hide pointer argument for the garbage collector by Carl Shapiro · 11 years ago
  15. ce3ba12 encoding/gob: support new generic interfaces in package encoding by Russ Cox · 11 years ago
  16. 941db1e encoding/gob: consistently use unsafe.Pointer for pointer values by Ian Lance Taylor · 12 years ago
  17. f6d0ade build: remove dead code by Russ Cox · 12 years ago
  18. 5a2c275 fmt, encoding/gob: fix misuse of Read by Shenghou Ma · 12 years ago
  19. e855fcc encoding/gob: fix data race in Register Fixes #4214. by Rob Pike · 12 years ago
  20. 1fa32d2 encoding/gob: fix check for short input in slice decode by Rob Pike · 13 years ago
  21. c8b1f85 encoding/gob: fix memory corruption Fixes #3175. by Dmitriy Vyukov · 13 years ago
  22. 1f0f459 encoding/gob: more hardening for lengths of input strings. by David Symonds · 13 years ago
  23. 420f713 encoding/gob: cache engine for user type, not base type by Rob Pike · 13 years ago
  24. e574480 encoding/gob: catch internal error when it happens by Rob Pike · 13 years ago
  25. 6a75ece runtime: delete Type and implementations (use reflect instead) by Russ Cox · 13 years ago
  26. 9440d82 gob: fuzz testing, plus a fix for very large type names. by David Symonds · 13 years ago
  27. 793768e encoding/gob: fix panic when decoding []byte to incompatible slice types by Alexey Borzenkov · 13 years ago
  28. ba576b2 encoding/gob: better error messages when types mismatch by Rob Pike · 13 years ago
  29. f4cd802 encoding: move asn1, csv, gob, json, xml into encoding by Rob Pike · 13 years ago[Renamed from src/pkg/gob/decode.go]
  30. c2049d2 src/pkg/[a-m]*: gofix -r error -force=error by Russ Cox · 13 years ago
  31. 32f3770 pkg: remove .String() from some print arguments by Russ Cox · 13 years ago
  32. 313c822 gofix -r mapdelete by Russ Cox · 13 years ago
  33. 3e02fff gob: slightly simpler decodeUint by Robert Griesemer · 13 years ago
  34. 9ddc2b5 gob: fix allocation for singletons. by Rob Pike · 13 years ago
  35. bf595ba gob: don't allocate a slice if there's room to decode already Fixes #2275. by Rob Pike · 13 years ago
  36. 3a52cf5 gob: delete some unused bits from the GobEncoder/GobDecoder code. by Rob Pike · 14 years ago
  37. 712fb6d os.Error API: don't export os.ErrorString, use os.NewError consistently by Robert Griesemer · 14 years ago
  38. cf9f380 gc: unsafe.Alignof, unsafe.Offsetof, unsafe.Sizeof now return uintptr by Russ Cox · 14 years ago
  39. c8727c8 pkg: spelling tweaks, A-H by Robert Hencke · 14 years ago
  40. 07abf1c fix tree for reflect rename by Russ Cox · 14 years ago
  41. c4cc9c2 gob: have errorf always prefix the message with "gob: " by Rob Pike · 14 years ago
  42. 220f831 gob: use new Implements and AssignableTo methods in reflect by Rob Pike · 14 years ago
  43. cded21a changes for more restricted reflect.SetValue by Russ Cox · 14 years ago
  44. a696da1 gob: when decoding a string, allocate a string, not a []byte. by Ian Lance Taylor · 14 years ago
  45. c94f5fb gob: fix handling of indirect receivers for GobDecoders. by Rob Pike · 14 years ago
  46. db5c5d6 update go tree for reflect changes by Russ Cox · 14 years ago
  47. 9ad091e gob: eliminate two more allocations in decode. by Rob Pike · 14 years ago
  48. 90f3f91 gob: remove a few more allocations. by Rob Pike · 14 years ago
  49. eb864e9 gob: keep free lists of encoder and decoder states. by Rob Pike · 14 years ago
  50. f8f3145 gob: turn two panics into errors because they can be triggered by Rob Pike · 14 years ago
  51. 8c76218 gob: finish up GobEncoder/Decoder by providing indirection by Rob Pike · 14 years ago
  52. 22c45c5 gob: support GobEncoder for type T when the receiver is *T. Still to do: **T. by Rob Pike · 14 years ago
  53. 369c48c gob: don't send type information about unexported fields. by Rob Pike · 14 years ago
  54. 9442e95 gob: enable the GobEncoder and GobDecoder interfaces. by Rob Pike · 14 years ago
  55. c91daef gob: beginning of support for GobEncoder/GobDecoder interfaces. by Rob Pike · 14 years ago
  56. e46acb0 reflect: add PtrTo, add Value.Addr (old Addr is now UnsafeAddr) by Russ Cox · 14 years ago
  57. c54b5d0 gob: make recursive map and slice types work. by Rob Pike · 14 years ago
  58. c9b90c9 gob: protect against pure recursive types. by Rob Pike · 14 years ago
  59. 14b6a47 gob: compute information about a user's type once. by Rob Pike · 14 years ago
  60. 1778f50 gob: decode into nil, this time for sure. by Rob Pike · 14 years ago
  61. 9b82481 gob: make nested interfaces work. Also clean up the code, make it more regular. by Rob Pike · 14 years ago
  62. 5b5a674 gob: better debugging, commentary by Rob Pike · 14 years ago
  63. f2b5a07 delete float, complex - code changes by Russ Cox · 14 years ago
  64. a80cdcb gob: make (en|dec)code(Ui|I)nt methods rather than functions. by Rob Pike · 14 years ago
  65. 3036604 gob: do not encode or decode unexported fields Such fields are simply ignored. by Rob Pike · 14 years ago
  66. d84317b gob: generate a better error message in one confusing place by Rob Pike · 14 years ago
  67. 7f7cb16 gob: several fixes. by Rob Pike · 14 years ago
  68. c28fa51 gob: error cleanup 2 Simplify error handling during the compilation phase. by Rob Pike · 14 years ago
  69. f593b37 gobs: error cleanup part 1. by Rob Pike · 14 years ago
  70. 5d90646 gob: allow exchange of interface values by Rob Pike · 14 years ago
  71. c8b3d02 gob: make robust when decoding a struct with non-struct data. by Rob Pike · 14 years ago
  72. be443ee 5g: register allocation bugs by Russ Cox · 14 years ago
  73. 0aa2317 arm: work around reg allocator bug in 5g, in two parts. by Rob Pike · 14 years ago
  74. 12a4d84 gob: add DecodeValue and EncodeValue by Rob Pike · 15 years ago
  75. a26ab29 gob: allow transmission of things other than structs at the top level. by Rob Pike · 15 years ago
  76. 37a6bc8 gob: add support for complex numbers by Rob Pike · 15 years ago
  77. fc090a3 reflect: add Type.Bits method, add tags to prohibit conversions by Russ Cox · 15 years ago
  78. 45bdf03 reflect: add Kind, remove Int8Type, Int8Value, etc. by Russ Cox · 15 years ago
  79. 9088f9f gob: add test for indirect maps, slices, arrays. by Rob Pike · 15 years ago
  80. 7861da7 gob: add support for maps. by Rob Pike · 15 years ago
  81. 00f9f0c single argument panic by Russ Cox · 15 years ago
  82. f44fa9b gofmt: experiment: align values in map composites where possible by Robert Griesemer · 15 years ago
  83. a58b69e improve some type switches now that multiple types per case are supported. by Rob Pike · 15 years ago
  84. 1f55115 remove all references to gobType() from the decoder. Fixes #470. by Rob Pike · 15 years ago
  85. a3d1045 1) Change default gofmt default settings for by Robert Griesemer · 15 years ago
  86. 33649bd runtime: introduce unsafe.New and unsafe.NewArray by Russ Cox · 15 years ago
  87. 10a349a The String() method requires global state that makes it not work outside of this package, by Rob Pike · 15 years ago
  88. a0f742d more gob bugs by Rob Pike · 15 years ago
  89. 30b1b9a Rework gobs to fix bad bug related to sharing of id's between encoder and decoder side. by Rob Pike · 15 years ago
  90. baba292 - replaced gofmt expression formatting algorithm with by Robert Griesemer · 15 years ago
  91. 40621d5 remove semis after statements in one-statement statement lists by Robert Griesemer · 15 years ago
  92. 368f8cb - fine-tuning of one-line func heuristic (nodes.go) by Robert Griesemer · 15 years ago
  93. f65e42d gofmt-ify gob by Robert Griesemer · 15 years ago
  94. c0e0f82 better code for allocation through indirection by Rob Pike · 15 years ago
  95. 330ab5f fix bugs in gob. by Rob Pike · 15 years ago
  96. c2ec958 apply gofmt to go, gob, hash, http, image, io, json, log by Russ Cox · 15 years ago
  97. ca6a0fe more "declared and not used". by Russ Cox · 15 years ago
  98. b5c57fe delete forward type declarations by Russ Cox · 15 years ago
  99. a5bf45e convert gob to whole-package compilation. had to reorder some init code. by Russ Cox · 15 years ago
  100. 1f6e18f handle some error conditions involving bad data. by Rob Pike · 15 years ago