aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/gob
AgeCommit message (Expand)Author
2011-11-03encoding: move asn1, csv, gob, json, xml into encodingRob Pike
2011-11-01all: rename os.Error to error in various non-code contextsRuss Cox
2011-11-01src/pkg/[a-m]*: gofix -r error -force=errorRuss Cox
2011-10-27gob: split uses of gobError, remove unnecessary embeddingRuss Cox
2011-10-27pkg: remove .String() from some print argumentsRuss Cox
2011-10-25csv, gob, json, mail, mime, xml: use runeRuss Cox
2011-10-18gofix -r mapdeleteRuss Cox
2011-10-10gob: avoid one copy for every message written.Rob Pike
2011-10-05gob: when possible, allow sequential decoders on the same input stream.Rob Pike
2011-09-26gob: protect against invalid message lengthRob Pike
2011-09-21gob: slightly simpler decodeUintRobert Griesemer
2011-09-21gob: slightly simpler code for encodeUintRobert Griesemer
2011-09-20gob: fix allocation for singletons.Rob Pike
2011-09-19gob: don't allocate a slice if there's room to decode alreadyRob Pike
2011-09-10doc: link to notable blog postsAndrew Gerrand
2011-08-22gob: explain that Debug isn't useful unless it's compiled in.Rob Pike
2011-08-04gob: avoid a couple of init-time allocations.David Symonds
2011-08-04gob: add UpdateMemStats calls to malloc counterRob Pike
2011-08-04gob: don't invoke GobEncoder on zero values.Rob Pike
2011-07-21gob: send empty but non-nil maps.Rob Pike
2011-07-18gob: minor cleanupQuan Yong Zhai
2011-07-14go/printer: changed max. number of newlines from 3 to 2Robert Griesemer
2011-07-13gob: register more slice typesBobby Powers
2011-07-08gob: export fields in structs in the package documentation.David Symonds
2011-06-29gob: delete some unused bits from the GobEncoder/GobDecoder code.Rob Pike
2011-06-22os.Error API: don't export os.ErrorString, use os.NewError consistentlyRobert Griesemer
2011-06-17gc: unsafe.Alignof, unsafe.Offsetof, unsafe.Sizeof now return uintptrRuss Cox
2011-05-30gob: fix documentation on Decoder.Decode.David Symonds
2011-05-18pkg: spelling tweaks, A-HRobert Hencke
2011-05-07gob: Doc typo fixAnschel Schaffer-Cohen
2011-04-25fix tree for reflect renameRuss Cox
2011-04-20gob: have errorf always prefix the message with "gob: "Rob Pike
2011-04-20gob: use new Implements and AssignableTo methods in reflectRob Pike
2011-04-20src/pkg: make package doc comments consistently start with "Package foo".Nigel Tao
2011-04-19gob: fix trivial bug in map marshaling.Rob Pike
2011-04-18changes for more restricted reflect.SetValueRuss Cox
2011-04-15gob: when decoding a string, allocate a string, not a []byte.Ian Lance Taylor
2011-04-14gob: fix handling of indirect receivers for GobDecoders.Rob Pike
2011-04-14gob: test case for indirection to large field.Ian Lance Taylor
2011-04-08update go tree for reflect changesRuss Cox
2011-04-04os: New Open API.Rob Pike
2011-03-25gob: trivial cleanupRobert Hencke
2011-03-23gob: remove another allocation.Rob Pike
2011-03-22gob: fix up ugly formatting introduced by buggy (now fixed) gofmt.Rob Pike
2011-03-22gob: use pointers in bootstrapType so interfaces behave properlyRob Pike
2011-03-17gob: eliminate two more allocations in decode.Rob Pike
2011-03-16gob: remove a few more allocations.Rob Pike
2011-03-16testing: add -test.memprofile and -test.memprofilerate flags.Rob Pike
2011-03-15gob: keep free lists of encoder and decoder states.Rob Pike
2011-03-15gob: move benchmarks to a new timing_test.go file.Rob Pike