mirror of
https://github.com/containers/podman.git
synced 2025-11-02 06:37:09 +08:00
build(deps): bump github.com/containers/storage from 1.13.5 to 1.14.0
Bumps [github.com/containers/storage](https://github.com/containers/storage) from 1.13.5 to 1.14.0. - [Release notes](https://github.com/containers/storage/releases) - [Changelog](https://github.com/containers/storage/blob/master/docs/containers-storage-changes.md) - [Commits](https://github.com/containers/storage/compare/v1.13.5...v1.14.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
This commit is contained in:
committed by
Valentin Rothberg
parent
c673ff8cb6
commit
866391bb57
6
vendor/github.com/klauspost/compress/zstd/enc_dfast.go
generated
vendored
6
vendor/github.com/klauspost/compress/zstd/enc_dfast.go
generated
vendored
@ -235,7 +235,7 @@ encodeLoop:
|
||||
if debug && s-t > e.maxMatchOff {
|
||||
panic("s - t >e.maxMatchOff")
|
||||
}
|
||||
if debug {
|
||||
if debugMatches {
|
||||
println("long match")
|
||||
}
|
||||
break
|
||||
@ -259,7 +259,7 @@ encodeLoop:
|
||||
// but the likelihood of both the first 4 bytes and the hash matching should be enough.
|
||||
t = candidateL.offset - e.cur
|
||||
s += checkAt
|
||||
if debug {
|
||||
if debugMatches {
|
||||
println("long match (after short)")
|
||||
}
|
||||
break
|
||||
@ -275,7 +275,7 @@ encodeLoop:
|
||||
if debug && t < 0 {
|
||||
panic("t<0")
|
||||
}
|
||||
if debug {
|
||||
if debugMatches {
|
||||
println("short match")
|
||||
}
|
||||
break
|
||||
|
||||
Reference in New Issue
Block a user