Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 54 of 54 for bucketOf (0.18 sec)

  1. src/crypto/x509/x509.go

    	if _, err := asn1.Unmarshal(params.MGF.Parameters.FullBytes, &mgf1HashFunc); err != nil {
    		return UnknownSignatureAlgorithm
    	}
    
    	// PSS is greatly overburdened with options. This code forces them into
    	// three buckets by requiring that the MGF1 hash function always match the
    	// message hash function (as recommended in RFC 3447, Section 8.1), that the
    	// salt length matches the hash length, and that the trailer field has the
    	// default value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/MapMakerInternalMap.java

       * the segment.
       */
      final transient int segmentMask;
    
      /**
       * Shift value for indexing within segments. Helps prevent entries that end up in the same segment
       * from also ending up in the same bucket.
       */
      final transient int segmentShift;
    
      /** The segments, each of which is a specialized hash table. */
      final transient Segment<K, V, E, S>[] segments;
    
      /** The concurrency level. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

       * the segment.
       */
      final transient int segmentMask;
    
      /**
       * Shift value for indexing within segments. Helps prevent entries that end up in the same segment
       * from also ending up in the same bucket.
       */
      final transient int segmentShift;
    
      /** The segments, each of which is a specialized hash table. */
      final transient Segment<K, V, E, S>[] segments;
    
      /** The concurrency level. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  4. cluster/gce/windows/k8s-node-setup.psm1

        return
      }
    
      $tmp_dir = 'C:\containerd_tmp'
      New-Item $tmp_dir -ItemType 'directory' -Force | Out-Null
    
      # TODO(ibrahimab) Change this to a gcs bucket with CI maintained and accessible by community.
      $version = '1.6.2'
      $tar_url = ("https://github.com/containerd/containerd/releases/download/v${version}/" +
                  "cri-containerd-cni-${version}-windows-amd64.tar.gz")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
Back to top