Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Fontaine (0.14 sec)

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

        assertSame(valueOne, listener.getLastEvictedValue());
        assertTrue(map.removalNotificationQueue.isEmpty());
        assertFalse(segment.accessQueue.contains(entryOne));
        assertFalse(segment.writeQueue.contains(entryOne));
        assertEquals(0, segment.count);
        assertNull(table.get(0));
      }
    
      public void testRemoveEntryFromChain() {
    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

        assertSame(valueOne, listener.getLastEvictedValue());
        assertTrue(map.removalNotificationQueue.isEmpty());
        assertFalse(segment.accessQueue.contains(entryOne));
        assertFalse(segment.writeQueue.contains(entryOne));
        assertEquals(0, segment.count);
        assertNull(table.get(0));
      }
    
      public void testRemoveEntryFromChain() {
    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 Iterators.contains(keyIterator(map.entrySet().iterator()), key);
      }
    
      /** An implementation of {@link Map#containsValue}. */
      static boolean containsValueImpl(Map<?, ?> map, @CheckForNull Object value) {
        return Iterators.contains(valueIterator(map.entrySet().iterator()), value);
      }
    
      /**
       * Implements {@code Collection.contains} safely for forwarding collections of map entries. If
    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

          }
        }
        return future;
      }
    
      /**
       * Marks this step as the last step in the {@code ClosingFuture} pipeline. When this step is done,
       * {@code receiver} will be called with an object that contains the result of the operation. The
       * receiver can store the {@link ValueAndCloser} outside the receiver for later synchronous use.
       *
    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