Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 376 for Lzip (0.01 sec)

  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
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Fri Oct 17 20:10:27 UTC 2025
    - 56.5K bytes
    - Viewed (0)
  2. src/archive/zip/testdata/utf8-infozip.zip

    Joe Tsai <******@****.***> 1509655996 -0700
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Mon Nov 06 21:35:59 UTC 2017
    - 162 bytes
    - Viewed (0)
  3. src/archive/zip/testdata/utf8-osx.zip

    Joe Tsai <******@****.***> 1509655996 -0700
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Mon Nov 06 21:35:59 UTC 2017
    - 138 bytes
    - Viewed (0)
  4. 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() {
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Fri Aug 22 08:12:58 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  5. 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
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 10 08:55:32 UTC 2025
    - 976 bytes
    - Viewed (0)
  6. docs_src/custom_request_and_route/tutorial001_py39.py

    import gzip
    from typing 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
            return self._body
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 10 08:55:32 UTC 2025
    - 967 bytes
    - Viewed (0)
  7. docs_src/custom_request_and_route/tutorial001_an_py310.py

    import gzip
    from collections.abc import Callable
    from typing import Annotated
    
    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)
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 10 08:55:32 UTC 2025
    - 1015 bytes
    - Viewed (0)
  8. src/archive/zip/testdata/utf8-winrar.zip

    Joe Tsai <******@****.***> 1509655996 -0700
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Mon Nov 06 21:35:59 UTC 2017
    - 146 bytes
    - Viewed (0)
  9. src/archive/zip/testdata/comment-truncated.zip

    Damien Neil <******@****.***> 1715722750 -0700
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu May 16 15:56:19 UTC 2024
    - 216 bytes
    - Viewed (0)
  10. src/archive/zip/testdata/test-baddirsz.zip

    Ian Lance Taylor <******@****.***> 1653513149 -0700
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu Jun 02 16:25:34 UTC 2022
    - 1.1K bytes
    - Viewed (0)
Back to top