Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getNonGoldenRandomKey (0.14 sec)

  1. guava-tests/test/com/google/common/hash/BloomFilterTest.java

        // (false positive).
        assertThat(bloomFilter.mightContain(GOLDEN_PRESENT_KEY)).isFalse();
        for (int i = 0; i < NUM_PUTS; i++) {
          bloomFilter.put(getNonGoldenRandomKey());
        }
        bloomFilter.put(GOLDEN_PRESENT_KEY);
    
        int numThreads = 12;
        final double safetyFalsePositiveRate = 0.1;
        final Stopwatch stopwatch = Stopwatch.createStarted();
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 21.2K bytes
    - Viewed (0)
Back to top