Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for Decompressor (0.55 sec)

  1. pkg/config/xds/filter_types.gen.go

    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/compression/brotli/compressor/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/compression/brotli/decompressor/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/compression/gzip/compressor/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/compression/gzip/decompressor/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 02:48:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  2. src/compress/bzip2/bzip2.go

    	repeats     uint     // the number of copies of lastByte to output.
    }
    
    // NewReader returns an io.Reader which decompresses bzip2 data from r.
    // If r does not also implement [io.ByteReader],
    // the decompressor may read more data than necessary from r.
    func NewReader(r io.Reader) io.Reader {
    	bz2 := new(reader)
    	bz2.br = newBitReader(r)
    	return bz2
    }
    
    const bzip2FileMagic = 0x425a // "BZ"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. src/compress/flate/deflate.go

    		d.window = make([]byte, maxStoreBlockSize)
    		d.fill = (*compressor).fillStore
    		d.step = (*compressor).store
    	case level == HuffmanOnly:
    		d.window = make([]byte, maxStoreBlockSize)
    		d.fill = (*compressor).fillStore
    		d.step = (*compressor).storeHuff
    	case level == BestSpeed:
    		d.compressionLevel = levels[level]
    		d.window = make([]byte, maxStoreBlockSize)
    		d.fill = (*compressor).fillStore
    		d.step = (*compressor).encSpeed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  4. src/compress/gzip/gzip.go

    	z := new(Writer)
    	z.init(w, level)
    	return z, nil
    }
    
    func (z *Writer) init(w io.Writer, level int) {
    	compressor := z.compressor
    	if compressor != nil {
    		compressor.Reset(w)
    	}
    	*z = Writer{
    		Header: Header{
    			OS: 255, // unknown
    		},
    		w:          w,
    		level:      level,
    		compressor: compressor,
    	}
    }
    
    // Reset discards the [Writer] z's state and makes it equivalent to the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. tools/packaging/common/envoy_bootstrap.json

                      "http_filters": [
                      {{- if .stats_compression }}
                      {
                        "name": "envoy.filters.http.compressor",
                        "typed_config": {
                          "@type": "type.googleapis.com/envoy.extensions.filters.http.compressor.v3.Compressor",
                          {{- if eq .stats_compression "gzip"}}
                          "compressor_library": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  6. pkg/bootstrap/testdata/stats_compression_zstd_golden.json

                      },
                      "http_filters": [
                      {
                        "name": "envoy.filters.http.compressor",
                        "typed_config": {
                          "@type": "type.googleapis.com/envoy.extensions.filters.http.compressor.v3.Compressor",
                          "compressor_library": {
                            "name": "text_optimized",
                            "typed_config": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  7. pkg/bootstrap/testdata/stats_compression_brotli_golden.json

                      },
                      "http_filters": [
                      {
                        "name": "envoy.filters.http.compressor",
                        "typed_config": {
                          "@type": "type.googleapis.com/envoy.extensions.filters.http.compressor.v3.Compressor",
                          "compressor_library": {
                            "name": "text_optimized",
                            "typed_config": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  8. pkg/bootstrap/testdata/stats_compression_gzip_golden.json

                      },
                      "http_filters": [
                      {
                        "name": "envoy.filters.http.compressor",
                        "typed_config": {
                          "@type": "type.googleapis.com/envoy.extensions.filters.http.compressor.v3.Compressor",
                          "compressor_library": {
                            "name": "text_optimized",
                            "typed_config": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  9. pkg/bootstrap/instance_test.go

    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/compression/brotli/compressor/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/compression/gzip/compressor/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/compression/zstd/compressor/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/compressor/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/router/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  10. src/compress/lzw/writer.go

    	tableMask = tableSize - 1
    	// A hash table entry is a uint32. Zero is an invalid entry since the
    	// lower 12 bits of a valid entry must be a non-literal code.
    	invalidEntry = 0
    )
    
    // Writer is an LZW compressor. It writes the compressed form of the data
    // to an underlying writer (see [NewWriter]).
    type Writer struct {
    	// w is the writer that compressed bytes are written to.
    	w writer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 7.9K bytes
    - Viewed (0)
Back to top