MCPcopy Index your code
hub / github.com/klauspost/compress / IgnoreChecksum

Function IgnoreChecksum

zstd/decoder_options.go:193–198  ·  view source on GitHub ↗

IgnoreChecksum allows to forcibly ignore checksum checking. Can be changed with ResetWithOptions.

(b bool)

Source from the content-addressed store, hash-verified

191// IgnoreChecksum allows to forcibly ignore checksum checking.
192// Can be changed with ResetWithOptions.
193func IgnoreChecksum(b bool) DOption {
194 return func(o *decoderOptions) error {
195 o.ignoreChecksum = b
196 return nil
197 }
198}
199
200// WithDecoderDictDelete removes dictionaries by ID.
201// If no ids are passed, all dictionaries are deleted.

Callers 5

FuzzDecodeAllFunction · 0.85
FuzzDecoderFunction · 0.85
TestNewDecoderFunction · 0.85
TestIgnoreChecksumFunction · 0.85

Calls

no outgoing calls

Tested by 5

FuzzDecodeAllFunction · 0.68
FuzzDecoderFunction · 0.68
TestNewDecoderFunction · 0.68
TestIgnoreChecksumFunction · 0.68

Used in the wild real call sites across dependent graphs

searching dependent graphs…