Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 68 of 68 for uncompressed (0.21 sec)

  1. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/DirectoryNodeTest.groovy

                noMoreInteractions()
            }
    
            where:
            vfsSpec << onlyDirectChildren(CHILD_IS_PREFIX)
        }
    
        /**
         * Removes all specs which contain compressed paths, since this isn't allowed for the children of {@link DirectorySnapshot}s.
         */
        private static List<VirtualFileSystemTestSpec> onlyDirectChildren(List<VirtualFileSystemTestSpec> fullList) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  2. cmd/warm-backend-gcs.go

    	// Refer to https://cloud.google.com/storage/docs/transcoding#decompressive_transcoding
    	// Need to set `Accept-Encoding` header to `gzip` when issuing a GetObject call, to be able
    	// to download the object in compressed state.
    	// Calling ReadCompressed with true accomplishes that.
    	object := gcs.client.Bucket(gcs.Bucket).Object(gcs.getDest(key)).ReadCompressed(true)
    
    	r, err = object.NewRangeReader(ctx, opts.startOffset, opts.length)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 21 11:43:18 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. cmd/bitrot-streaming.go

    		shardSize:    shardSize,
    		canClose:     &sync.WaitGroup{},
    		byteBuf:      buf,
    	}
    	bw.canClose.Add(1)
    	go func() {
    		defer bw.canClose.Done()
    
    		totalFileSize := int64(-1) // For compressed objects length will be unknown (represented by length=-1)
    		if length != -1 {
    			bitrotSumsTotalSize := ceilFrac(length, shardSize) * int64(h.Size()) // Size used for storing bitrot checksums.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 00:11:04 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/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: Fri Feb 10 18:59:52 UTC 2023
    - 8.7K bytes
    - Viewed (0)
Back to top