mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
0809bd6859
full diff: https://github.com/klauspost/compress/compare/v1.12.3...v1.14.2 Relevant changes affecting vendor: - docs: Add combined LICENSE file - Add snappy replacement package - tests: Remove snappy dependency for tests - huff0: Add size estimation function - huff0: Improve 4X decompression speed - huff0: Improve 4X decompression speed 5-10% - huff0: Faster 1X Decompression - zstd: Spawn decoder goroutine only if needed - zstd: Detect short invalid signatures - zstd: Add configurable Decoder window size - zstd: Add stream content size - zstd: Simplify hashing functions - zstd: use SpeedBestCompression for level >= 10 - zstd: Fix WriteTo error forwarding - zstd: Improve Best compression - zstd: Fix incorrect encoding in best mode - zstd: pooledZipWriter should return Writers to the same pool - zstd: Upgrade xxhash - zstd: Improve block encoding speed - zstd: add arm64 xxhash assembly - zstd: Minor decoder improvements - zstd: Minor performance tweaks - zstd: Add bigger default blocks - zstd: Remove unused decompression buffer - zstd: fix logically dead code - zstd: Add noasm tag for xxhash - zstd: improve header decoder Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
27 lines
1.5 KiB
Text
27 lines
1.5 KiB
Text
Copyright (c) 2011 The Snappy-Go Authors. All rights reserved.
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
modification, are permitted provided that the following conditions are
|
|
met:
|
|
|
|
* Redistributions of source code must retain the above copyright
|
|
notice, this list of conditions and the following disclaimer.
|
|
* Redistributions in binary form must reproduce the above
|
|
copyright notice, this list of conditions and the following disclaimer
|
|
in the documentation and/or other materials provided with the
|
|
distribution.
|
|
* Neither the name of Google Inc. nor the names of its
|
|
contributors may be used to endorse or promote products derived from
|
|
this software without specific prior written permission.
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|