Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 224 for compressLog (0.31 sec)

  1. tools/docker-builder/builder/crane.go

    	}
    	if len(b.Dests) == 0 {
    		return fmt.Errorf("dest required")
    	}
    
    	// Over localhost, compression CPU can be the bottleneck. With remotes, compressing usually saves a lot of time.
    	compression := gzip.NoCompression
    	for _, d := range b.Dests {
    		if !strings.HasPrefix(d, "localhost") {
    			compression = gzip.BestSpeed
    			break
    		}
    	}
    
    	var images []v1.Image
    	for _, args := range b.Args {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 9K bytes
    - Viewed (0)
  2. src/internal/zstd/fuzz_test.go

    // explore the space of decompressor behavior, since it can't see
    // what the compressor is doing. But it's better than nothing.
    func FuzzDecompressor(f *testing.F) {
    	zstd := findZstd(f)
    
    	for _, test := range tests {
    		f.Add([]byte(test.uncompressed))
    	}
    
    	// Add some larger data, as that has more interesting compression.
    	f.Add(bytes.Repeat([]byte("abcdefghijklmnop"), 256))
    	var buf bytes.Buffer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 04:10:45 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. docs/features/interceptors.md

    Interceptors can be chained. Suppose you have both a compressing interceptor and a checksumming interceptor: you'll need to decide whether data is compressed and then checksummed, or checksummed and then compressed. OkHttp uses lists to track interceptors, and interceptors are called in order.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/tasks/bundling/TarTest.groovy

        def "default values"() {
            expect:
            tar.compression == Compression.NONE
            tar.archiveExtension.get() == 'tar'
        }
    
        def "compression determines default extension"() {
            when:
            tar.compression = Compression.GZIP
    
            then:
            tar.archiveExtension.get() == 'tgz'
    
            when:
            tar.compression = Compression.BZIP2
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 06 15:32:15 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  5. docs/compression/README.md

    # Compression Guide [![Slack](https://slack.min.io/slack?type=svg)](https://slack.min.io)
    
    MinIO server allows streaming compression to ensure efficient disk space usage.
    Compression happens inflight, i.e objects are compressed before being written to disk(s).
    MinIO uses [`klauspost/compress/s2`](https://github.com/klauspost/compress/tree/master/s2)
    streaming compression due to its stability and performance.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 11 11:55:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  6. src/compress/lzw/writer.go

    		// This is the first write; send a clear code.
    		// https://www.w3.org/Graphics/GIF/spec-gif89a.txt Appendix F
    		// "Variable-Length-Code LZW Compression" says that "Encoders should
    		// output a Clear code as the first code of each image data stream".
    		//
    		// LZW compression isn't only used by GIF, but it's cheap to follow
    		// that directive unconditionally.
    		clear := uint32(1) << w.litWidth
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/file/MaybeCompressedFileResource.java

     */
    
    package org.gradle.api.internal.file;
    
    import org.apache.commons.io.FilenameUtils;
    import org.gradle.api.internal.file.archive.compression.Bzip2Archiver;
    import org.gradle.api.internal.file.archive.compression.CompressedReadableResource;
    import org.gradle.api.internal.file.archive.compression.GzipArchiver;
    import org.gradle.api.resources.MissingResourceException;
    import org.gradle.api.resources.ReadableResource;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 2.6K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    //
    // Domain names are a sequence of counted strings split at the dots. They end
    // with a zero-length string. Compression can be used to reuse domain suffixes.
    //
    // The compression map will be updated with new domain suffixes. If compression
    // is nil, compression will not be used.
    func (n *Name) pack(msg []byte, compression map[string]uint16, compressionOff int) ([]byte, error) {
    	oldMsg := msg
    
    	if n.Length > nonEncodedNameMax {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  9. cmd/object-api-utils.go

    func (o *ObjectInfo) IsCompressed() bool {
    	_, ok := o.UserDefined[ReservedMetadataPrefix+"compression"]
    	return ok
    }
    
    // IsCompressedOK returns whether the object is compressed and can be decompressed.
    func (o *ObjectInfo) IsCompressedOK() (bool, error) {
    	scheme, ok := o.UserDefined[ReservedMetadataPrefix+"compression"]
    	if !ok {
    		return false, nil
    	}
    	switch scheme {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  10. docs/changelogs/changelog_4x.md

        memory if web socket compression is negotiated but not used.
    
    
    ## Version 4.5.0-RC1
    
    _2020-03-17_
    
    **This release candidate turns on web socket compression.**
    
    The [spec][rfc_7692] includes a sophisticated mechanism for client and server to negotiate
    compression features. We strive to offer great performance in our default configuration and so we're
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 17 13:25:31 UTC 2024
    - 25.2K bytes
    - Viewed (0)
Back to top