summaryrefslogtreecommitdiff
path: root/src/pkg/gob/encoder_test.go
AgeCommit message (Expand)AuthorFilesLines
2012-04-06Imported Upstream version 1upstream/1Ondřej Surý1-580/+0
2011-09-13Imported Upstream version 60upstream/60Ondřej Surý1-0/+580
2011-09-13Imported Upstream version 60Ondřej Surý1-551/+0
2011-04-28Imported Upstream version 2011.04.27upstream/2011.04.27Ondřej Surý1-2/+37
2011-04-26Imported Upstream version 2011.04.13upstream/2011.04.13Ondřej Surý1-1/+1
2011-04-20Imported Upstream version 2011.03.07.1upstream/2011.03.07.1Ondřej Surý1-0/+18
2011-02-18Imported Upstream version 2011.02.15upstream/2011.02.15Ondřej Surý1-1/+71
2011-02-14Imported Upstream version 2011-02-01.1upstream/2011-02-01.1Ondřej Surý1-9/+52
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý1-73/+132
2010-06-28gob: allow transmission of things other than structs at the top level.Rob Pike1-8/+57
2009-12-31trivial bug: []byte is special but [3]byte is not.Rob Pike1-1/+2
2009-12-29fix dumb bug: must write out default values inside arrays and slicesRob Pike1-0/+20
2009-12-151) Change default gofmt default settings forRobert Griesemer1-82/+82
2009-12-02test that arrays work properly.Rob Pike1-4/+22
2009-12-01explicitly catch attempt to decode into a value - must be a pointer to see th...Rob Pike1-2/+13
2009-12-01more gob bugsRob Pike1-0/+12
2009-11-16Rework gobs to fix bad bug related to sharing of id's between encoder and dec...Rob Pike1-114/+2
2009-11-09remove semis after statements in one-statement statement listsRobert Griesemer1-40/+40
2009-11-05gofmt-ify gobRobert Griesemer1-31/+37
2009-10-11fix bugs in gob.Rob Pike1-0/+56
2009-09-21move strings.Buffer into bytesRob Pike1-2/+1
2009-09-21step 2 of the great buffer shift.Rob Pike1-1/+1
2009-09-17use buf.String() instead of string(buf.Bytes())Rob Pike1-1/+1
2009-09-17unused importsRuss Cox1-1/+0
2009-08-30can't encode array or slice - catch in sendType rather than failing in EncodeRob Pike1-0/+22
2009-08-12convert gob to whole-package compilation.Russ Cox1-1/+0
2009-07-29handle unsupported types safely.Rob Pike1-3/+3
2009-07-29clean up EOFRob Pike1-1/+1
2009-07-29handle some error conditions involving bad data.Rob Pike1-0/+17
2009-07-28change the encoding of uints to simplify overflow checking and to make themRob Pike1-2/+1
2009-07-27clean up for public use: make some stuff private, add doc comments.Rob Pike1-3/+3
2009-07-17ignore missing structsRob Pike1-12/+10
2009-07-16clean up the code, flow errors out to decoder.Rob Pike1-5/+3
2009-07-16- allow wire type and receive type to differ.Rob Pike1-4/+5
2009-07-16clean up the decode loop and fix a couple of bad printsRob Pike1-3/+3
2009-07-15make the low-level encoder and decoder private and have them access byte.Buff...Rob Pike1-15/+35
2009-07-13the name of the type was being sent twice. drop the outer instance.Rob Pike1-2/+2
2009-07-11first cut at gob decoder.Rob Pike1-1/+96
2009-07-10one more piece of testing: 2nd send should not send type info.Rob Pike1-0/+25
2009-07-10a better encoder test, with a couple of fixes for bugs it uncovered.Rob Pike1-0/+56
2009-07-09store ids rather than Types in the structs so they can be encoded.Rob Pike1-0/+37