Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for EnableCompression (0.27 sec)

  1. cmd/object_api_suite_test.go

    	}
    
    	t.Run("compressed", func(t *testing.T) {
    		fn(t, func() {
    			resetCompressEncryption()
    			enableCompression(t, false, []string{"*"}, []string{"*"})
    		}, MakeBucketOptions{})
    	})
    	t.Run("compressedVerioned", func(t *testing.T) {
    		fn(t, func() {
    			resetCompressEncryption()
    			enableCompression(t, false, []string{"*"}, []string{"*"})
    		}, MakeBucketOptions{
    			VersioningEnabled: true,
    		})
    	})
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    	}
    	return s + "}}"
    }
    
    // A Builder allows incrementally packing a DNS message.
    //
    // Example usage:
    //
    //	buf := make([]byte, 2, 514)
    //	b := NewBuilder(buf, Header{...})
    //	b.EnableCompression()
    //	// Optionally start a section and add things to that section.
    //	// Repeat adding sections as necessary.
    //	buf, err := b.Finish()
    //	// If err is nil, buf[2:] will contain the built bytes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
Back to top