Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 54 of 54 for uncompressed (0.16 sec)

  1. internal/logger/logrotate.go

    	// Eg.
    	// 	2020-03-28_15-00-945-<random-hash>.log
    	// When FileNameFunc is not specified, DefaultFilenameFunc will be used.
    	FileNameFunc func() string
    
    	// Compress specify if you want the logs to be compressed after rotation.
    	Compress bool
    }
    
    // Writer is a concurrency-safe writer with file rotation.
    type Writer struct {
    	// opts are the configuration options for this Writer
    	opts Options
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. cmd/batch-job-common-types.go

    //     batch: 100 # upto this many objects per archive
    //     inmemory: true # indicates if the archive must be staged locally or in-memory
    //     compress: true # S2/Snappy compressed archive
    //     smallerThan: 5MiB # create archive for all objects smaller than 5MiB
    //     skipErrs: false # skips any source side read() errors
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/text/unicode/norm/forminfo.go

    // a rune to a uint16. The values take two forms.  For v >= 0x8000:
    //   bits
    //   15:    1 (inverse of NFD_QC bit of qcInfo)
    //   13..7: qcInfo (see below). isYesD is always true (no decomposition).
    //    6..0: ccc (compressed CCC value).
    // For v < 0x8000, the respective rune has a decomposition and v is an index
    // into a byte array of UTF-8 decomposition sequences and additional info and
    // has the form:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. src/crypto/ecdh/nist.go

    	}
    
    	// If there is a borrow at the end of the operation, then a < b.
    	return borrow == 1
    }
    
    func (c *nistCurve[Point]) NewPublicKey(key []byte) (*PublicKey, error) {
    	// Reject the point at infinity and compressed encodings.
    	if len(key) == 0 || key[0] != 4 {
    		return nil, errors.New("crypto/ecdh: invalid public key")
    	}
    	k := &PublicKey{
    		curve:     c,
    		publicKey: append([]byte{}, key...),
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top