diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-06-17 20:16:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-17 20:16:44 +0200 |
commit | 6645e0d6f376b0dbd2bf82b3c708ceb20a6ad920 (patch) | |
tree | b0e7ad7e27d8608f061226497fbdced2102ce054 /vendor/github.com/klauspost/compress/huff0/README.md | |
parent | f293606480669acea375c53de1e2c81044313c05 (diff) | |
parent | ac4f4b14829b66f6aa24b75128bd68e3a5fb53b9 (diff) | |
download | podman-6645e0d6f376b0dbd2bf82b3c708ceb20a6ad920.tar.gz podman-6645e0d6f376b0dbd2bf82b3c708ceb20a6ad920.tar.bz2 podman-6645e0d6f376b0dbd2bf82b3c708ceb20a6ad920.zip |
Merge pull request #6648 from vrothberg/vendor-image
vendor github.com/containers/image/v5@v5.5.1
Diffstat (limited to 'vendor/github.com/klauspost/compress/huff0/README.md')
-rw-r--r-- | vendor/github.com/klauspost/compress/huff0/README.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vendor/github.com/klauspost/compress/huff0/README.md b/vendor/github.com/klauspost/compress/huff0/README.md index 0a8448ce9..e12da4db2 100644 --- a/vendor/github.com/klauspost/compress/huff0/README.md +++ b/vendor/github.com/klauspost/compress/huff0/README.md @@ -12,8 +12,6 @@ but it can be used as a secondary step to compressors (like Snappy) that does no * [Godoc documentation](https://godoc.org/github.com/klauspost/compress/huff0)
-THIS PACKAGE IS NOT CONSIDERED STABLE AND API OR ENCODING MAY CHANGE IN THE FUTURE.
-
## News
* Mar 2018: First implementation released. Consider this beta software for now.
@@ -75,6 +73,8 @@ which can be given to the decompressor. Decompressing is done by calling the [`Decompress1X`](https://godoc.org/github.com/klauspost/compress/huff0#Scratch.Decompress1X)
or [`Decompress4X`](https://godoc.org/github.com/klauspost/compress/huff0#Scratch.Decompress4X) function.
+For concurrently decompressing content with a fixed table a stateless [`Decoder`](https://godoc.org/github.com/klauspost/compress/huff0#Decoder) can be requested which will remain correct as long as the scratch is unchanged. The capacity of the provided slice indicates the expected output size.
+
You must provide the output from the compression stage, at exactly the size you got back. If you receive an error back
your input was likely corrupted.
@@ -84,4 +84,4 @@ There are no integrity checks, so relying on errors from the decompressor does n # Contributing
Contributions are always welcome. Be aware that adding public functions will require good justification and breaking
-changes will likely not be accepted. If in doubt open an issue before writing the PR.
\ No newline at end of file +changes will likely not be accepted. If in doubt open an issue before writing the PR.
|