Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for NoCompression (0.14 sec)

  1. src/compress/gzip/gzip.go

    	"fmt"
    	"hash/crc32"
    	"io"
    	"time"
    )
    
    // These constants are copied from the flate package, so that code that imports
    // "compress/gzip" does not also have to import "compress/flate".
    const (
    	NoCompression      = flate.NoCompression
    	BestSpeed          = flate.BestSpeed
    	BestCompression    = flate.BestCompression
    	DefaultCompression = flate.DefaultCompression
    	HuffmanOnly        = flate.HuffmanOnly
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. src/compress/flate/deflate.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package flate
    
    import (
    	"errors"
    	"fmt"
    	"io"
    	"math"
    )
    
    const (
    	NoCompression      = 0
    	BestSpeed          = 1
    	BestCompression    = 9
    	DefaultCompression = -1
    
    	// HuffmanOnly disables Lempel-Ziv match searching and only performs Huffman
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"HuffmanOnly", Const, 7},
    		{"InternalError", Type, 0},
    		{"NewReader", Func, 0},
    		{"NewReaderDict", Func, 0},
    		{"NewWriter", Func, 0},
    		{"NewWriterDict", Func, 0},
    		{"NoCompression", Const, 0},
    		{"ReadError", Type, 0},
    		{"ReadError.Err", Field, 0},
    		{"ReadError.Offset", Field, 0},
    		{"Reader", Type, 0},
    		{"Resetter", Type, 4},
    		{"WriteError", Type, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top