Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for It (0.11 sec)

  1. guava-tests/test/com/google/common/cache/LocalCacheTest.java

          Object value = new Object();
          map.put(key, value);
          originalMap.put(key, value);
          if (i >= maxSize) {
            Iterator<Object> it = originalMap.keySet().iterator();
            it.next();
            it.remove();
          }
          assertEquals(originalMap, map);
        }
      }
    
      public void testSegmentStoreComputedValue() {
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 14 23:06:48 GMT 2024
    - 112.3K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/cache/LocalCacheTest.java

          Object value = new Object();
          map.put(key, value);
          originalMap.put(key, value);
          if (i >= maxSize) {
            Iterator<Object> it = originalMap.keySet().iterator();
            it.next();
            it.remove();
          }
          assertEquals(originalMap, map);
        }
      }
    
      public void testSegmentStoreComputedValue() {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Mar 14 23:06:48 GMT 2024
    - 110.7K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Maps.java

        return new HashMap<>(map);
      }
    
      /**
       * Creates a {@code HashMap} instance, with a high enough "initial capacity" that it <i>should</i>
       * hold {@code expectedSize} elements without growth. This behavior cannot be broadly guaranteed,
       * but it is observed to be true for OpenJDK 1.7. It also can't be guaranteed that the method
       * isn't inadvertently <i>oversizing</i> the returned map.
       *
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 159.6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

     *
     * <p>A step can be the input to at most one derived step. Once you transform its value, catch its
     * exception, or combine it with others, you cannot do anything else with it, including declare it
     * to be the last step of the pipeline.
     *
     * <h4>Transforming</h4>
     *
     * To derive the next step by asynchronously applying a function to an input step's value, call
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 98.5K bytes
    - Viewed (0)
Back to top