Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for containsValue (0.12 sec)

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

          synchronized (mutex) {
            return delegate().containsKey(key);
          }
        }
    
        @Override
        public boolean containsValue(@CheckForNull Object value) {
          synchronized (mutex) {
            return delegate().containsValue(value);
          }
        }
    
        @Override
        public boolean containsEntry(@CheckForNull Object key, @CheckForNull Object value) {
          synchronized (mutex) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 53.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Synchronized.java

          synchronized (mutex) {
            return delegate().containsKey(key);
          }
        }
    
        @Override
        public boolean containsValue(@CheckForNull Object value) {
          synchronized (mutex) {
            return delegate().containsValue(value);
          }
        }
    
        @Override
        public boolean containsEntry(@CheckForNull Object key, @CheckForNull Object value) {
          synchronized (mutex) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/MapMakerInternalMap.java

            postReadCleanup();
          }
        }
    
        /**
         * This method is a convenience for testing. Code should call {@link
         * MapMakerInternalMap#containsValue} directly.
         */
        @VisibleForTesting
        boolean containsValue(Object value) {
          try {
            if (count != 0) { // read-volatile
              AtomicReferenceArray<E> table = this.table;
              int length = table.length();
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 20:24:49 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

            postReadCleanup();
          }
        }
    
        /**
         * This method is a convenience for testing. Code should call {@link
         * MapMakerInternalMap#containsValue} directly.
         */
        @VisibleForTesting
        boolean containsValue(Object value) {
          try {
            if (count != 0) { // read-volatile
              AtomicReferenceArray<E> table = this.table;
              int length = table.length();
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 20:24:49 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Multimaps.java

        }
    
        @Override
        public boolean containsKey(@CheckForNull Object key) {
          return map.containsKey(key);
        }
    
        @Override
        public boolean containsValue(@CheckForNull Object value) {
          return map.containsValue(value);
        }
    
        @Override
        public boolean containsEntry(@CheckForNull Object key, @CheckForNull Object value) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 16 21:21:17 UTC 2024
    - 86.3K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/cache/CacheLoadingTest.java

        for (Object key : lookupKeys) {
          assertTrue(cache.asMap().containsKey(key));
        }
        assertSame(extraValue, cache.asMap().get(extraKey));
        assertFalse(cache.asMap().containsValue(extraKey));
      }
    
      public void testBulkLoad_partial() throws ExecutionException {
        final Object extraKey = new Object();
        final Object extraValue = new Object();
        CacheLoader<Object, Object> loader =
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 19:07:49 UTC 2024
    - 86.3K bytes
    - Viewed (0)
Back to top