Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for b2bit8 (0.04 seconds)

  1. guava/src/com/google/common/hash/BloomFilterStrategies.java

       * Mitzenmacher. The paper argues that this trick doesn't significantly deteriorate the
       * performance of a Bloom filter (yet only needs two 32bit hash functions).
       */
      MURMUR128_MITZ_32() {
        @Override
        public <T extends @Nullable Object> boolean put(
            @ParametricNullness T object,
            Funnel<? super T> funnel,
            int numHashFunctions,
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Wed Jan 08 14:27:16 GMT 2025
    - 10.7K bytes
    - Click Count (0)
  2. guava/src/com/google/common/net/InetAddresses.java

        return new BigInteger(1, address.getAddress());
      }
    
      /**
       * Returns an Inet4Address having the integer value specified by the argument.
       *
       * @param address {@code int}, the 32bit integer address to be converted
       * @return {@link Inet4Address} equivalent of the argument
       */
      public static Inet4Address fromInteger(int address) {
        return getInet4Address(Ints.toByteArray(address));
      }
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Wed Feb 19 21:24:11 GMT 2025
    - 47.4K bytes
    - Click Count (0)
  3. android/guava/src/com/google/common/net/InetAddresses.java

        return new BigInteger(1, address.getAddress());
      }
    
      /**
       * Returns an Inet4Address having the integer value specified by the argument.
       *
       * @param address {@code int}, the 32bit integer address to be converted
       * @return {@link Inet4Address} equivalent of the argument
       */
      public static Inet4Address fromInteger(int address) {
        return getInet4Address(Ints.toByteArray(address));
      }
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Wed Feb 19 21:24:11 GMT 2025
    - 47.4K bytes
    - Click Count (0)
  4. cmd/erasure-server-pool.go

    	if maxN := availableMemory() / (blockSizeV2 * 2); n > maxN {
    		n = maxN
    	}
    
    	if globalIsCICD || strconv.IntSize == 32 {
    		n = 256 // 256MiB for CI/CD environments is sufficient or on 32bit platforms.
    	}
    
    	// Initialize byte pool once for all sets, bpool size is set to
    	// setCount * setDriveCount with each memory upto blockSizeV2.
    	buffers := bpool.NewBytePoolCap(n, blockSizeV2, blockSizeV2*2)
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 89.2K bytes
    - Click Count (0)
Back to Top