Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 68 for uncompressed (3.02 sec)

  1. android/guava/src/com/google/common/collect/SingletonImmutableSet.java

    @ElementTypesAreNonnullByDefault
    final class SingletonImmutableSet<E> extends ImmutableSet<E> {
      // We deliberately avoid caching the asList and hashCode here, to ensure that with
      // compressed oops, a SingletonImmutableSet packs all the way down to the optimal 16 bytes.
    
      final transient E element;
    
      SingletonImmutableSet(E element) {
        this.element = Preconditions.checkNotNull(element);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/SingletonImmutableSet.java

    @ElementTypesAreNonnullByDefault
    final class SingletonImmutableSet<E> extends ImmutableSet<E> {
      // We deliberately avoid caching the asList and hashCode here, to ensure that with
      // compressed oops, a SingletonImmutableSet packs all the way down to the optimal 16 bytes.
    
      final transient E element;
    
      SingletonImmutableSet(E element) {
        this.element = Preconditions.checkNotNull(element);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. platforms/software/security/src/test/groovy/org/gradle/security/internal/SecuritySupportSpec.groovy

            keyrings[3].publicKey.userIDs[0] == "�amonn McManus <******@****.***>"
            keyrings[4].publicKey.userIDs.size() == 0
        }
    
        @Issue("https://github.com/gradle/gradle/issues/28400")
        def "can read compressed data from signature"() {
            given:
            def signatureFile = tempDir.file("signature.asc") << """
    -----BEGIN PGP MESSAGE-----
    Version: BCPG v1.69
    
    owCIXgQAFgIABgUCZKcKCQAKCRCXjfpT5HomLAeHAPkBUtWmJCZotXuJ3x/2w1Db
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. docs/select/README.md

    You can use the Select API to query objects with following features:
    
    - Objects must be in CSV, JSON, or Parquet(*) format.
    - UTF-8 is the only encoding type the Select API supports.
    - GZIP or BZIP2 - CSV and JSON files can be compressed using GZIP, BZIP2, [ZSTD](https://facebook.github.io/zstd/), and streaming formats of [LZ4](https://lz4.github.io/lz4/), [S2](https://github.com/klauspost/compress/tree/master/s2#s2-compression) and [SNAPPY](http://google.github.io/snappy/).
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 6.5K bytes
    - Viewed (0)
  5. tools/packaging/packaging.mk

    deb: ${TARGET_OUT_LINUX}/release/istio-sidecar.deb
    
    # fpm likes to add extremely high levels of compression. This is fine for release, but for local runs
    # where we are just pushing to a local registry (compressed again!), it adds ~1min to builds.
    ifneq ($(FAST_VM_BUILDS),)
    DEB_COMPRESSION=--deb-compression=none
    RPM_COMPRESSION=--rpm-compression=none
    endif
    
    # Base directory for istio binaries. Likely to change !
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 06 19:54:32 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. okhttp-dnsoverhttps/src/main/kotlin/okhttp3/dnsoverhttps/DnsRecordCodec.kt

        return result
      }
    
      @Throws(EOFException::class)
      private fun skipName(source: Buffer) {
        // 0 - 63 bytes
        var length = source.readByte().toInt()
    
        if (length < 0) {
          // compressed name pointer, first two bits are 1
          // drop second byte of compression offset
          source.skip(1)
        } else {
          while (length > 0) {
            // skip each part of the domain name
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/build_trimpath_cgo.txt

    # This test builds a cgo binary and verifies the source directory path
    # does not appear in the binary, either literally or in compressed DWARF.
    # TODO(golang.org/issue/36072): ideally we should build a binary from identical
    # sources in different directories and verify the binary and all intermediate
    # files are identical.
    
    [short] skip
    [!cgo] skip
    
    # Check that the source path appears when -trimpath is not used.
    go build -o hello.exe .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  8. tests/integration/pilot/cni/cniversionskew_test.go

    		Setup(istio.Setup(&i, nil)).
    		Setup(deployment.SetupSingleNamespace(&apps, deployment.Config{})).
    		Run()
    }
    
    // installCNIOrFail installs CNI DaemonSet for the given version.
    // It looks for tar compressed CNI manifest and apply that in the cluster.
    func installCNIOrFail(t framework.TestContext, ver string) {
    	cniFilePath := filepath.Join(env.IstioSrc, CNIConfigDir,
    		fmt.Sprintf("%s-cni-install.yaml.tar", ver))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 22:56:37 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. src/internal/zstd/bits.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package zstd
    
    import (
    	"math/bits"
    )
    
    // block is the data for a single compressed block.
    // The data starts immediately after the 3 byte block header,
    // and is Block_Size bytes long.
    type block []byte
    
    // bitReader reads a bit stream going forward.
    type bitReader struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:13 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/internal/http2/FrameLogTest.kt

          .isEqualTo("<< 0x00000003 10000 HEADERS       PRIORITY")
        assertThat(frameLog(true, 3, 10000, TYPE_DATA, 0x20))
          .isEqualTo("<< 0x00000003 10000 DATA          COMPRESSED")
      }
    
      /**
       * Ensures that valid flag combinations appear visually correct, and invalid show in hex.  This
       * also demonstrates how sparse the lookup table is.
       */
      @Test
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top