summaryrefslogtreecommitdiff
path: root/src/encoding/gob
Commit message (Expand)AuthorAgeFilesLines
* all: go fmt std cmd (but revert vendor)Russ Cox2021-02-204-0/+4
* all: update references to symbols moved from io/ioutil to ioRuss Cox2020-10-201-2/+2
* all: fix a number of misuses of the word "an"Daniel Martí2019-12-101-1/+1
* src: gofmt -sAinar Garipov2019-09-091-1/+1
* encoding/gob: properly ignore errorsLeon Klingele2019-05-222-2/+6
* encoding/gob: rename encBuffer.WriteByte to writeByteRuss Cox2019-05-091-2/+2
* encoding/gob: adding missing fuzz skip to one of the fuzz testsBrad Fitzpatrick2019-04-301-4/+6
* encoding/gob: update documentation in doc.go for wireTypeRob Pike2019-03-081-4/+11
* encoding/gob: mention that Encoder and Decoder are safe for concurrent useMostyn Bramley-Moore2018-12-282-2/+4
* encoding/gob: delete out of memory testRob Pike2018-10-221-22/+0
* encoding/gob: increase "tooBig" from 1GB to 8GB on 64-bit machinesRob Pike2018-10-221-4/+4
* encoding/gob: correct issue number typo in commentIan Lance Taylor2018-06-131-1/+1
* all: skip unsupported tests for js/wasmRichard Musiol2018-04-301-0/+4
* all: remove some unused return parametersDaniel Martí2018-03-241-4/+4
* all: fix non-standard "DO NOT EDIT" comments for generated filesMark Rushakoff2018-03-104-4/+4
* encoding/gob: work around TestFuzzOneByte panicDaniel Martí2018-03-091-0/+4
* encoding/gob: avoid race on idToTypeIan Lance Taylor2018-01-042-0/+44
* encoding/gob: fix a typo in the package documentationLaurent Voisin2017-10-081-1/+1
* all: join some chained ifs to unindent codeDaniel Martí2017-08-291-4/+2
* all: remove some double spaces from commentsDaniel Martí2017-08-261-1/+1
* encoding/gob: fix Debug to properly print uintDanny Rosseau2017-08-252-1/+2
* 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