- Sort Score
- Num 10 results
- Language All
Results 21 - 30 of 287 for Lzip (0.02 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
lib/time/zoneinfo.zip
Dmitri Shuralyov <******@****.***> 1765469015 -0500
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Thu Dec 11 16:47:56 GMT 2025 - 398.6K bytes - Click Count (0) -
src/archive/zip/testdata/readme.zip
Brad Fitzpatrick <******@****.***> 1436570231 -0600
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Sat Jul 11 14:36:33 GMT 2015 - 1.8K bytes - Click Count (0) -
src/archive/zip/testdata/subdir.zip
Ian Lance Taylor <******@****.***> 1618865513 -0700
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Thu Apr 29 19:04:31 GMT 2021 - 428 bytes - Click Count (0) -
src/archive/zip/testdata/symlink.zip
Russ Cox <******@****.***> 1410149331 -0400
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Mon Sep 08 04:08:51 GMT 2014 - 173 bytes - Click Count (0) -
cmd/globals.go
standardExcludeCompressExtensions = []string{".gz", ".bz2", ".rar", ".zip", ".7z", ".xz", ".mp4", ".mkv", ".mov", ".jpg", ".png", ".gif"} // Some standard content-types which we strictly dis-allow for compression. standardExcludeCompressContentTypes = []string{"video/*", "audio/*", "application/zip", "application/x-gzip", "application/x-zip-compressed", " application/x-compress", "application/x-spoon"} // AuthZ Plugin system.Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Tue Sep 03 18:23:41 GMT 2024 - 16.2K bytes - Click Count (1) -
src/archive/zip/reader_test.go
} // biggestZipBytes returns the bytes of a zip file biggest.zip // that contains a zip file bigger.zip that contains a zip file // big.zip that contains big.file, which contains 2³²-1 zeros. // The big.zip file is interesting because it has no zip64 header, // much like the innermost zip files in the well-known 42.zip. // // biggest.zip was generated by changing isZip64 to use > uint32max
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Fri Oct 17 20:10:27 GMT 2025 - 56.5K bytes - Click Count (0) -
src/archive/zip/testdata/utf8-infozip.zip
Joe Tsai <******@****.***> 1509655996 -0700
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Mon Nov 06 21:35:59 GMT 2017 - 162 bytes - Click Count (0) -
src/archive/zip/testdata/utf8-osx.zip
Joe Tsai <******@****.***> 1509655996 -0700
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Mon Nov 06 21:35:59 GMT 2017 - 138 bytes - Click Count (0) -
okhttp-brotli/src/test/java/okhttp3/brotli/BrotliInterceptorTest.kt
val response = response("https://httpbin.org/gzip", s.decodeHex()) { header("Content-Encoding", "gzip") } val uncompressed = brotliInterceptor.decompress(response) val responseString = uncompressed.body.string() assertThat(responseString).contains("\"gzipped\": true,") assertThat(responseString).contains("\"Accept-Encoding\": \"br,gzip\"") } @Test fun testNoUncompress() {Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Fri Aug 22 08:12:58 GMT 2025 - 4.4K bytes - Click Count (0) -
docs_src/custom_request_and_route/tutorial001_py310.py
import gzip from collections.abc import Callable from fastapi import Body, FastAPI, Request, Response from fastapi.routing import APIRoute class GzipRequest(Request): async def body(self) -> bytes: if not hasattr(self, "_body"): body = await super().body() if "gzip" in self.headers.getlist("Content-Encoding"): body = gzip.decompress(body) self._body = body
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Wed Dec 10 08:55:32 GMT 2025 - 976 bytes - Click Count (0)