summaryrefslogtreecommitdiff
path: root/src/encoding
Commit message (Expand)AuthorAgeFilesLines
* encoding/json: ignore embedded fields of pointers to unexported non-structsJoe Tsai2017-07-222-70/+182
* encoding/json: fix indentation in Decode stream exampleIccha Sethi2017-07-151-8/+8
* encoding/binary: add examples for ByteOrder functionsRoss Light2017-07-151-0/+18
* encoding/base32: make NoPadding Encoding's DecodedLen return exact sizeGustav Westling2017-07-062-8/+11
* encoding/base32: support custom and disabled padding when decodingGustav Westling2017-07-062-4/+108
* Revert "encoding/json: reduce unmarshal mallocs for unmapped fields"Brad Fitzpatrick2017-06-291-28/+34
* encoding/binary: clarify the repercussions for not following the docsBrad Fitzpatrick2017-06-291-1/+2
* encoding/gob: warn about decoding data from untrusted sourcesBrad Fitzpatrick2017-06-292-42/+46
* encoding/binary: improve comment formatting consistencyDmitri Shuralyov2017-06-271-6/+6
* encoding/ascii85: make bigtest big againMark Ryan2017-06-231-13/+13
* encoding: fix endless loop in TestDecoderBufferingMark Ryan2017-06-163-9/+21
* encoding: report correct line numbers in testsMark Ryan2017-06-153-0/+3
* encoding/json: don't marshal unexported embedded fields of non struct typethoeni2017-06-142-1/+54
* encoding/json: clarify unmarshaling behaviour on bad fieldsAlberto Donizetti2017-06-051-1/+3
* encoding/gob: speedup decoding of maps by zeroing valuesFilip Gruszczyński2017-05-262-4/+33
* encoding/base32: add Encoding.WithPadding, StdPadding, NoPaddingGustav Westling2017-05-222-28/+94
* encoding/base32: ensure base32 decoder propagates errors correctlyMark Ryan2017-05-182-8/+188
* encoding/gob: use MakeMapWithSize when decoding mapFilip Gruszczyński2017-05-032-5/+4
* encoding/json: replace encoderCache RWMutex with a sync.MapBryan C. Mills2017-04-281-21/+13
* encoding/xml: replace tinfoMap RWMutex with sync.MapBryan C. Mills2017-04-281-12/+8
* encoding/gob: replace RWMutex usage with sync.MapBryan C. Mills2017-04-274-43/+31
* encoding/json: parallelize most benchmarksBryan C. Mills2017-04-262-63/+83
* encoding/gob: parallelize Encode/Decode benchmarksBryan C. Mills2017-04-261-131/+54
* encoding/xml: parallelize benchmarksBryan C. Mills2017-04-261-6/+10
* encoding/csv: add option to reuse slices returned by ReadJustin Nuß2017-04-262-20/+80
* all: remove some unused parameters in test codeDaniel Martí2017-04-251-19/+19
* encoding/base64: Optimize DecodeStringJosselin Costanzi2017-04-242-25/+41
* encoding/asn1: add NullBytes and NullRawValue for working with ASN.1 NULLAndrew Benton2017-04-243-0/+35
* encoding/base64: Rename rawUrlRef to rawURLRefMark Ryan2017-04-231-3/+3
* all: remove redundant returnsDaniel Martí2017-04-192-2/+0
* encoding/hex: change lookup table back to stringJosh Bleecher Snyder2017-04-181-4/+1
* encoding/asn1: support 31 bit identifiers with OIDMonis Khan2017-04-132-3/+15
* encoding/asn1: document "utc" and "generalized" tagsHiroshi Ioka2017-04-112-10/+12
* encoding/pem: yet another fuzz fake failureRuss Cox2017-04-031-3/+12
* encoding/pem: do not try to round trip value with leading/trailing spaceRuss Cox2017-04-031-3/+4
* encoding/gob: Speedup map decoding by reducing the allocations.Filip Gruszczyński2017-03-243-4/+39
* encoding/xml: unmarshal allow empty, non-string valuesSarah Adams2017-03-222-0/+175
* encoding/xml: format test output using subtestsSam Whited2017-03-221-36/+41
* encoding/gob: document the extra byte after a singletonRob Pike2017-03-211-0/+6
* encoding/json: reduce unmarshal mallocs for unmapped fieldsPascal S. de Kloe2017-03-202-34/+39
* 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/base64, html/template: fix grammar mistakesKevin Burke2017-03-071-1/+1
* encoding/base64: add alphabet and padding restrictionsJosselin Costanzi2017-03-071-1/+20
* encoding/base64: fix decode reports incorrect indexJosselin Costanzi2017-03-062-2/+6
* encoding/gob: remove unused ut and atyp parametersDaniel Martí2017-03-061-7/+7
* encoding/xml: remove unused start parameterDaniel Martí2017-03-061-3/+3
* encoding/pem: refuse extra data on ending lineJoe Shaw2017-03-012-2/+26
* encoding/xml: fix incorrect indirect code in chardata, comment, innerxml fieldsRuss Cox2017-02-142-16/+554