- Sort Score
- Num 10 results
- Language All
Results 1 - 1 of 1 for testPutAllWithSelf (0.14 seconds)
-
guava-tests/test/com/google/common/hash/BloomFilterTest.java
assertThrows(IllegalArgumentException.class, () -> bf1.putAll(bf2)); assertFalse(bf2.isCompatible(bf1)); assertThrows(IllegalArgumentException.class, () -> bf2.putAll(bf1)); } public void testPutAllWithSelf() { BloomFilter<Integer> bf1 = BloomFilter.create(integerFunnel(), 1); assertFalse(bf1.isCompatible(bf1)); assertThrows(IllegalArgumentException.class, () -> bf1.putAll(bf1)); }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 19 18:53:45 GMT 2026 - 23K bytes - Click Count (0)