Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for compressLog (0.37 sec)

  1. cmd/object-handlers.go

    			// Storing the compression metadata.
    			metadata[ReservedMetadataPrefix+"compression"] = compressionAlgorithmV2
    			metadata[ReservedMetadataPrefix+"actual-size"] = strconv.FormatInt(size, 10)
    
    			actualReader, err := hash.NewReader(ctx, reader, size, "", "", actualSize)
    			if err != nil {
    				return err
    			}
    
    			// Set compression metrics.
    			wantEncryption := crypto.Requested(r.Header)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

            self._input_saved_model_path,
            self._output_saved_model_path,
            quantization_options,
        )
        self.assertIsNotNone(converted_model)
        # Due to other meta data, the compression is not exactly 1/4.
        self.assertLess(
            testing.get_size_ratio(
                self._output_saved_model_path, self._input_saved_model_path
            ),
            0.5,
        )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/data.go

    	}
    
    	var relocbuf []byte // temporary buffer for applying relocations
    
    	// Using zlib.BestSpeed achieves very nearly the same
    	// compression levels of zlib.DefaultCompression, but takes
    	// substantially less time. This is important because DWARF
    	// compression can be a significant fraction of link time.
    	z, err := zlib.NewWriterLevel(&buf, zlib.BestSpeed)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  4. src/debug/elf/elf.go

    func (i SectionFlag) GoString() string { return flagName(uint32(i), shfStrings, true) }
    
    // Section compression type.
    type CompressionType int
    
    const (
    	COMPRESS_ZLIB   CompressionType = 1          /* ZLIB compression. */
    	COMPRESS_ZSTD   CompressionType = 2          /* ZSTD compression. */
    	COMPRESS_LOOS   CompressionType = 0x60000000 /* First OS-specific. */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  5. cmd/object-handlers_test.go

    		{"enc-mp-2", []int64{5487701, 5487799, 3}, mapCopy(metaWithSSEC)},
    		{"enc-mp-3", []int64{10499807, 10499963, 7}, mapCopy(metaWithSSEC)},
    	}
    	// SSEC can't be used with compression
    	globalCompressConfigMu.Lock()
    	globalCompressEnabled := globalCompressConfig.Enabled
    	globalCompressConfigMu.Unlock()
    	if globalCompressEnabled {
    		objectInputs = objectInputs[0:8]
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  6. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    last in the middle of the other Colours, would upon its first appearance look like a Circle of a Colour almost uniform from the circumference to the center and by compressing the Glasses still more, grow continually broader until a new Colour emerged in its center, and thereby it became a Ring encompassing that new Colour. And by compressing the Glasses still more, the diameter of this Ring would increase, and the breadth of its Orbit or Perimeter decrease until another new Colour emerged in the center...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.4.md

    * AWS: Added experimental option to skip zone check ([#28417](https://github.com/kubernetes/kubernetes/pull/28417), [@kevensen](https://github.com/kevensen))
    * Ubuntu: Enable ssh compression when downloading binaries during cluster creation ([#26746](https://github.com/kubernetes/kubernetes/pull/26746), [@MHBauer](https://github.com/MHBauer))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/s390x/asmz.go

    	op_CLT     uint32 = 0xEB23 // FORMAT_RSY2       COMPARE LOGICAL AND TRAP (32)
    	op_CLY     uint32 = 0xE355 // FORMAT_RXY1       COMPARE LOGICAL (32)
    	op_CMPSC   uint32 = 0xB263 // FORMAT_RRE        COMPRESSION CALL
    	op_CP      uint32 = 0xF900 // FORMAT_SS2        COMPARE DECIMAL
    	op_CPSDR   uint32 = 0xB372 // FORMAT_RRF2       COPY SIGN (long)
    	op_CPYA    uint32 = 0xB24D // FORMAT_RRE        COPY ACCESS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  9. src/net/http/transport_test.go

    	}
    }
    
    var roundTripTests = []struct {
    	accept       string
    	expectAccept string
    	compressed   bool
    }{
    	// Requests with no accept-encoding header use transparent compression
    	{"", "gzip", false},
    	// Requests with other accept-encoding should pass through unmodified
    	{"foo", "foo", false},
    	// Requests with accept-encoding == gzip should be passed through
    	{"gzip", "gzip", true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
Back to top