Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for NoCompression (0.11 sec)

  1. 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)
Back to top