summaryrefslogtreecommitdiff
path: root/src/pkg/gob/codec_test.go
AgeCommit message (Expand)AuthorFilesLines
2012-04-06Imported Upstream version 1upstream/1Ondřej Surý1-1406/+0
2011-09-13Imported Upstream version 60upstream/60Ondřej Surý1-0/+1406
2011-09-13Imported Upstream version 60Ondřej Surý1-1399/+0
2011-08-03Imported Upstream version 59upstream/59Ondřej Surý1-1/+1
2011-04-28Imported Upstream version 2011.04.27upstream/2011.04.27Ondřej Surý1-2/+1
2011-04-26Imported Upstream version 2011.04.13upstream/2011.04.13Ondřej Surý1-25/+32
2011-04-20Imported Upstream version 2011.03.07.1upstream/2011.03.07.1Ondřej Surý1-12/+26
2011-02-14Imported Upstream version 2011-02-01.1upstream/2011-02-01.1Ondřej Surý1-64/+50
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý1-242/+530
2010-06-28gob: add DecodeValue and EncodeValueRob Pike1-1/+1
2010-06-28gob: allow transmission of things other than structs at the top level.Rob Pike1-9/+10
2010-06-24gob: add support for complex numbersRob Pike1-1/+62
2010-06-20reflect: add Kind, remove Int8Type, Int8Value, etc.Russ Cox1-4/+4
2010-05-06gob: add test for indirect maps, slices, arrays.Rob Pike1-0/+67
2010-05-05gob: add support for maps.Rob Pike1-0/+6
2010-03-02gofmt: experiment: align values in map composites where possibleRobert Griesemer1-8/+8
2010-02-25strings: delete Runes, BytesRuss Cox1-3/+3
2009-12-151) Change default gofmt default settings forRobert Griesemer1-395/+395
2009-11-16Rework gobs to fix bad bug related to sharing of id's between encoder and dec...Rob Pike1-45/+57
2009-11-09 - replaced gofmt expression formatting algorithm withRobert Griesemer1-7/+7
2009-11-09remove semis after statements in one-statement statement listsRobert Griesemer1-69/+69
2009-11-06- application of gofmt with one-line composite literal structs enabledRobert Griesemer1-48/+16
2009-11-05gofmt-ify gobRobert Griesemer1-210/+289
2009-09-16rename bytes.Buffer.Data() to bytes.Buffer.Bytes()Rob Pike1-34/+34
2009-09-15more "declared and not used".Russ Cox1-1/+1
2009-09-14fix "declared and not used" errors in non-test code.Russ Cox1-4/+0
2009-08-26fix codec test bug - uint -> uint8Russ Cox1-3/+3
2009-08-12convert gob to whole-package compilation.Russ Cox1-1/+0
2009-07-29handle unsupported types safely.Rob Pike1-8/+25
2009-07-28change the encoding of uints to simplify overflow checking and to make themRob Pike1-46/+44
2009-07-28- clean up code creating keys for type mapsRob Pike1-29/+193
2009-07-27clean up for public use: make some stuff private, add doc comments.Rob Pike1-7/+8
2009-07-17ignore missing structsRob Pike1-1/+6
2009-07-16- allow wire type and receive type to differ.Rob Pike1-8/+74
2009-07-15make the low-level encoder and decoder private and have them access byte.Buff...Rob Pike1-71/+71
2009-07-09store ids rather than Types in the structs so they can be encoded.Rob Pike1-1/+24
2009-07-02slicesRob Pike1-1/+3
2009-07-02indirection on array elements.Rob Pike1-0/+4
2009-07-02arrays, not slices, and only with non-pointer elements.Rob Pike1-77/+36
2009-07-02encode and decode for nested structures.Rob Pike1-0/+5
2009-07-02encoders and decoders for string, []uint8Rob Pike1-12/+73
2009-07-02now that we have a separate indirection test, simplify the scalar tests.Rob Pike1-497/+81
2009-07-02fix bug in decoders: got indirection wrong when allocation not required.Rob Pike1-3/+83
2009-07-01move dereference code out of the ops and into the interpreter loops.Rob Pike1-84/+95
2009-07-01Encode and decode engines for gobs.Rob Pike1-51/+93
2009-06-30scalar decodersRob Pike1-43/+480
2009-06-30pass the state to the encoders and decoders so error handling can be centrali...Rob Pike1-17/+25
2009-06-30encoders for booleans and numbers.Rob Pike1-0/+352
2009-06-29io.StringBytes -> strings.BytesRuss Cox1-4/+3
2009-06-29integer encode/decodeRob Pike1-0/+98