Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testPutAllWithSelf (0.06 sec)

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

            });
    
        assertFalse(bf2.isCompatible(bf1));
        assertThrows(
            IllegalArgumentException.class,
            () -> {
              bf2.putAll(bf1);
            });
      }
    
      public void testPutAllWithSelf() {
        BloomFilter<Integer> bf1 = BloomFilter.create(Funnels.integerFunnel(), 1);
        assertFalse(bf1.isCompatible(bf1));
        assertThrows(
            IllegalArgumentException.class,
            () -> {
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Oct 28 18:19:59 UTC 2025
    - 22.1K bytes
    - Viewed (0)
Back to top