Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for convertToHashFloodingResistantImplementation (0.16 sec)

  1. android/guava/src/com/google/common/collect/CompactLinkedHashSet.java

        this.successor = new int[expectedSize];
        return expectedSize;
      }
    
      @Override
      @CanIgnoreReturnValue
      Set<E> convertToHashFloodingResistantImplementation() {
        Set<E> result = super.convertToHashFloodingResistantImplementation();
        this.predecessor = null;
        this.successor = null;
        return result;
      }
    
      /*
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Aug 06 14:59:07 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/CompactHashMapTest.java

                      protected Map<String, String> create(Entry<String, String>[] entries) {
                        CompactHashMap<String, String> map = CompactHashMap.create();
                        map.convertToHashFloodingResistantImplementation();
                        for (Entry<String, String> entry : entries) {
                          map.put(entry.getKey(), entry.getValue());
                        }
                        return map;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Jan 25 16:19:30 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/CompactLinkedHashMapTest.java

                      protected Map<String, String> create(Entry<String, String>[] entries) {
                        CompactLinkedHashMap<String, String> map = CompactLinkedHashMap.create();
                        map.convertToHashFloodingResistantImplementation();
                        for (Entry<String, String> entry : entries) {
                          map.put(entry.getKey(), entry.getValue());
                        }
                        return map;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 7.8K bytes
    - Viewed (0)
Back to top