Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for BloomFilter (0.22 seconds)

  1. android/guava/src/com/google/common/hash/BloomFilter.java

       * @param expectedInsertions the number of expected insertions to the constructed {@code
       *     BloomFilter}; must be positive
       * @param fpp the desired false positive probability (must be positive and less than 1.0)
       * @return a {@code BloomFilter}
       */
      public static <T extends @Nullable Object> BloomFilter<T> create(
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 10 22:28:12 GMT 2026
    - 27.6K bytes
    - Click Count (0)
  2. guava-tests/test/com/google/common/hash/BloomFilterTest.java

            .addEqualityGroup(BloomFilter.create(byteArrayFunnel(), 200, 0.01))
            .addEqualityGroup(BloomFilter.create(byteArrayFunnel(), 200, 0.02))
            .addEqualityGroup(BloomFilter.create(unencodedCharsFunnel(), 100, 0.01))
            .addEqualityGroup(BloomFilter.create(unencodedCharsFunnel(), 100, 0.02))
            .addEqualityGroup(BloomFilter.create(unencodedCharsFunnel(), 200, 0.01))
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 19 18:53:45 GMT 2026
    - 23K bytes
    - Click Count (0)
  3. android/guava/src/com/google/common/hash/BloomFilterStrategies.java

     * to a BloomFilter of M bits and k hash functions. These strategies are part of the serialized form
     * of the Bloom filters that use them, thus they must be preserved as is (no updates allowed, only
     * introduction of new versions).
     *
     * <p>Important: the order of the constants cannot change, and they cannot be deleted - we depend on
     * their ordinal for BloomFilter serialization.
     *
     * @author Dimitris Andreou
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 19 18:53:45 GMT 2026
    - 10.7K bytes
    - Click Count (0)
Back to Top