Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for dispenser (0.28 sec)

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

    public final class MapMaker {
      private static final int DEFAULT_INITIAL_CAPACITY = 16;
      private static final int DEFAULT_CONCURRENCY_LEVEL = 4;
    
      static final int UNSET_INT = -1;
    
      // TODO(kevinb): dispense with this after benchmarking
      boolean useCustomMap;
    
      int initialCapacity = UNSET_INT;
      int concurrencyLevel = UNSET_INT;
    
      @CheckForNull Strength keyStrength;
      @CheckForNull Strength valueStrength;
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Mar 13 14:30:51 GMT 2023
    - 12.8K bytes
    - Viewed (0)
Back to top