summaryrefslogtreecommitdiff
path: root/src/encoding/gob
Commit message (Expand)AuthorAgeFilesLines
* encoding/gob: warn about decoding data from untrusted sourcesBrad Fitzpatrick2017-06-292-42/+46
* encoding/gob: speedup decoding of maps by zeroing valuesFilip Gruszczyński2017-05-262-4/+33
* encoding/gob: use MakeMapWithSize when decoding mapFilip Gruszczyński2017-05-032-5/+4
* encoding/gob: replace RWMutex usage with sync.MapBryan C. Mills2017-04-274-43/+31
* encoding/gob: parallelize Encode/Decode benchmarksBryan C. Mills2017-04-261-131/+54
* all: remove some unused parameters in test codeDaniel Martí2017-04-251-19/+19
* all: remove redundant returnsDaniel Martí2017-04-192-2/+0
* encoding/gob: Speedup map decoding by reducing the allocations.Filip Gruszczyński2017-03-243-4/+39
* encoding/gob: document the extra byte after a singletonRob Pike2017-03-211-0/+6
* encoding/gob: speedup floats encoding and decodingAlberto Donizetti2017-03-182-13/+3
* encoding/gob: make integers encoding fasterAlberto Donizetti2017-03-172-9/+9
* encoding/gob: add Encode-Decode Int slices testsAlberto Donizetti2017-03-131-0/+65
* encoding/gob: remove unused ut and atyp parametersDaniel Martí2017-03-061-7/+7
* time: record monotonic clock reading in time.Now, for more accurate comparisonsRuss Cox2017-02-031-1/+1
* encoding/gob: error out instead of panicking on nil dereferenceEmmanuel Odeke2016-08-192-0/+17
* encoding/gob: document Encode, EncodeValue nil pointer panicsEmmanuel Odeke2016-07-053-13/+66
* encoding/gob: avoid allocating string for map keyDavid Crawshaw2016-06-281-3/+3
* all: fix copy-and-paste errors in testsAlberto Donizetti2016-05-061-2/+2
* encoding/gob: document compatibilityRob Pike2016-04-221-0/+6
* all: remove unnecessary type conversionsMatthew Dempsky2016-04-151-1/+1
* all: delete dead test codeDominik Honnef2016-03-211-4/+0
* all: single space after period.Brad Fitzpatrick2016-03-0211-46/+46
* all: replace strings.Index with strings.Contains where possibleNathan VanBenschoten2016-02-193-7/+7
* encoding/gob: document behavior of zero-valued arrays, slices, and mapsRob Pike2015-12-071-12/+14
* encoding/gob: reduce the amount of memory allocations.Aliaksandr Valialkin2015-11-257-43/+105
* encoding/gob: document that zero elements of arrays and slices are sentRob Pike2015-11-241-1/+2
* encoding/gob: fix typo in documentationTormod Erevik Lea2015-10-061-1/+1
* encoding/gob: document allocation/merge behaviorRob Pike2015-09-171-0/+6
* encoding/gob: remove always false comparisonTodd Neal2015-08-251-1/+1
* all: fix some vet-caught formatting errors, mostly but not only in testsRob Pike2015-08-211-1/+1
* all: link to https for golang subdomains tooBrad Fitzpatrick2015-07-121-1/+1
* encoding/gob: fix infinite recursion caused by ignoring recursive typeRob Pike2015-06-012-14/+44
* encoding/gob: fix docsShenghou Ma2015-05-201-9/+9
* encoding/gob: add "too big" check when writing a messageRob Pike2015-05-122-0/+24
* encoding/gob: fix hang from skipping large slicesMatthew Dempsky2015-04-172-0/+5
* encoding/gob: more checks for corrupted dataRob Pike2015-04-092-47/+51
* encoding/gob: clean up decoderMap after errBadTypeHåvard Haugen2015-04-082-1/+22
* encoding/gob: more cleanups handling slice lengthRob Pike2015-04-072-20/+38
* encoding/gob: make method doc string match method namekortschak2015-04-071-1/+1
* encoding/gob: change panic into error for corrupt inputRob Pike2015-04-062-1/+19
* encoding/gob: address go vet reportEmil Hessman2014-12-281-1/+1
* encoding/gob: add custom decoder buffer for performanceRob Pike2014-10-203-39/+78
* encoding/gob: fix print format in generated decoder helpersRob Pike2014-10-192-17/+17
* encoding/gob: use simple append-only buffer for encodingRob Pike2014-10-174-35/+59
* encoding/gob: custom array/slice decodersRob Pike2014-10-177-29/+874
* encoding/gob: speed up encoding of arrays and slicesRob Pike2014-10-174-3/+708
* encoding/gob: make encoding structs a little fasterRob Pike2014-10-141-4/+6
* encoding/gob: fix 386 buildRob Pike2014-09-251-9/+6
* encoding/gob: error rather than panic when decoding enormous slicesRob Pike2014-09-253-4/+39
* encoding/gob: speedup encodingDmitriy Vyukov2014-09-183-66/+91