Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testPutReturnValue (0.2 sec)

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

        public boolean equals(@Nullable Object object) {
          return (object instanceof CustomFunnel);
        }
    
        @Override
        public int hashCode() {
          return 42;
        }
      }
    
      public void testPutReturnValue() {
        for (int i = 0; i < 10; i++) {
          BloomFilter<String> bf = BloomFilter.create(Funnels.unencodedCharsFunnel(), 100);
          for (int j = 0; j < 10; j++) {
            String value = new Object().toString();
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Oct 21 14:28:19 UTC 2024
    - 21.2K bytes
    - Viewed (0)
Back to top