Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for gz (0.16 sec)

  1. cmd/globals.go

    	globalCompressConfigMu sync.Mutex
    	globalCompressConfig   compress.Config
    
    	// Some standard object extensions which we strictly dis-allow for compression.
    	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.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed Apr 24 04:08:47 GMT 2024
    - 16.5K bytes
    - Viewed (0)
  2. cmd/admin-router.go

    )
    
    var gzipHandler = func() func(http.Handler) http.HandlerFunc {
    	gz, err := gzhttp.NewWrapper(gzhttp.MinSize(1000), gzhttp.CompressionLevel(gzip.BestSpeed))
    	if err != nil {
    		// Static params, so this is very unlikely.
    		logger.Fatal(err, "Unable to initialize server")
    	}
    	return gz
    }()
    
    // Set of handler options as bit flags
    type hFlag uint8
    
    const (
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Mar 10 21:09:36 GMT 2024
    - 25.5K bytes
    - Viewed (0)
  3. cmd/metacache-stream_test.go

    test.go", "src/compress/gzip/gunzip.go", "src/compress/gzip/gunzip_test.go", "src/compress/gzip/gzip.go", "src/compress/gzip/gzip_test.go", "src/compress/gzip/issue14937_test.go", "src/compress/gzip/testdata/", "src/compress/gzip/testdata/issue6550.gz.base64", "src/compress/lzw/", "src/compress/lzw/reader.go", "src/compress/lzw/reader_test.go", "src/compress/lzw/writer.go", "src/compress/lzw/writer_test.go", "src/compress/testdata/", "src/compress/testdata/e.txt", "src/compress/testdata/gettysburg.txt",...
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Sep 19 18:05:16 GMT 2022
    - 15K bytes
    - Viewed (0)
  4. cmd/xl-storage-format-v2_test.go

    )
    
    func TestReadXLMetaNoData(t *testing.T) {
    	f, err := os.Open("testdata/xl.meta-corrupt.gz")
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer f.Close()
    
    	gz, err := gzip.NewReader(bufio.NewReader(f))
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	buf, err := io.ReadAll(gz)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	_, err = readXLMetaNoData(bytes.NewReader(buf), int64(len(buf)))
    	if err == nil {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri Mar 08 17:50:48 GMT 2024
    - 36.4K bytes
    - Viewed (0)
  5. cmd/metacache-entries_test.go

    o", "src/compress/gzip/example_test.go", "src/compress/gzip/gunzip.go", "src/compress/gzip/gunzip_test.go", "src/compress/gzip/gzip.go", "src/compress/gzip/gzip_test.go", "src/compress/gzip/issue14937_test.go", "src/compress/gzip/testdata/issue6550.gz.base64", "src/compress/lzw/reader.go", "src/compress/lzw/reader_test.go", "src/compress/lzw/writer.go", "src/compress/lzw/writer_test.go", "src/compress/testdata/e.txt", "src/compress/testdata/gettysburg.txt", "src/compress/testdata/pi.txt", "src/c...
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Jan 02 17:15:06 GMT 2022
    - 31.6K bytes
    - Viewed (0)
  6. cmd/testdata/xl-meta-merge.zip

    @iVÚ}qC=ºdTDBI„1™iej.û=¯Hñgu‘oityY£jgòWB {Hqvix]éòs»oñÊuGx|s ñÈyGCÊ}©ûyr}T÷¨j@ej%Æxm| éy\Cª}oWZPIÂu²pc{Å K`pix]íbšÄÆ % ¾µpqlZï„Ì* , :09†ê}jPñ QRI¾AY} ãjn¼R[¢XUT<ˆ¬Ó (=4%áÜÆ}^ nvw¾g}ã3}¼#4 1qV7 „EÕ¢GªåuxzKûTEDˆU]û~w„ãx¢KHJï ezil¾LyV ˆÚshW÷e¢ÜÆJbHGfÂÌñ*}GZ¢DCò¬½Rˆ¡´š ­º–€ µv §š´µœ•Œ‚ ®¼^¾¤GUec2co·ainué1ugzûuŠSy\rïrª‘tqZaˆ¥©yñV_S^}“iìdDI}q²¢¤£š˜ ®Ô@x~ìÌ vïú g E‘Ž~G@ô;ouIXxªÕ }^NI®ÃÕ7lM f_BiC|V¨Öy{pª}HOventûah] @SezQwK~igê qRcoQì-in2ì cw°å)V¢zEqV fg²paÐ~mIswxT ÅÕ]Rc¦Nt}¦ cj)‰ +cZEñvï ºqn²u]|ûìrcìvñnZ}IV†æv{}Õ5D¼4...
    ZIP Archive
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri Mar 08 17:50:48 GMT 2024
    - 30.2K bytes
    - Viewed (0)
Back to top