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