Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for loadAll (0.17 sec)

  1. android/guava/src/com/google/common/cache/LocalCache.java

        }
      }
    
      /**
       * Returns the result of calling {@link CacheLoader#loadAll}, or null if {@code loader} doesn't
       * implement {@code loadAll}.
       */
      @CheckForNull
      Map<K, V> loadAll(Set<? extends K> keys, CacheLoader<? super K, V> loader)
          throws ExecutionException {
        checkNotNull(loader);
        checkNotNull(keys);
        Stopwatch stopwatch = Stopwatch.createStarted();
        Map<K, V> result;
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 22 17:40:56 GMT 2024
    - 144.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/cache/Cache.java

       *       CacheBuilder#refreshAfterWrite automated refreshing}
       *   <li>{@linkplain LoadingCache#getAll bulk loading requests}, including {@linkplain
       *       CacheLoader#loadAll bulk loading implementations}
       * </ul>
       *
       * <p><b>Warning:</b> For any given key, every {@code loader} used with it should compute the same
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Sun Aug 07 02:38:22 GMT 2022
    - 8.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/cache/Cache.java

       *       CacheBuilder#refreshAfterWrite automated refreshing}
       *   <li>{@linkplain LoadingCache#getAll bulk loading requests}, including {@linkplain
       *       CacheLoader#loadAll bulk loading implementations}
       * </ul>
       *
       * <p><b>Warning:</b> For any given key, every {@code loader} used with it should compute the same
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Sun Aug 07 02:38:22 GMT 2022
    - 7.9K bytes
    - Viewed (0)
  4. guava/src/com/google/common/cache/LocalCache.java

        }
      }
    
      /**
       * Returns the result of calling {@link CacheLoader#loadAll}, or null if {@code loader} doesn't
       * implement {@code loadAll}.
       */
      @CheckForNull
      Map<K, V> loadAll(Set<? extends K> keys, CacheLoader<? super K, V> loader)
          throws ExecutionException {
        checkNotNull(loader);
        checkNotNull(keys);
        Stopwatch stopwatch = Stopwatch.createStarted();
        Map<K, V> result;
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 17:40:56 GMT 2024
    - 150.3K bytes
    - Viewed (0)
  5. api/go1.txt

    pkg syscall (windows-386), func GetsockoptInt(Handle, int, int) (int, error)
    pkg syscall (windows-386), func Listen(Handle, int) error
    pkg syscall (windows-386), func LoadDLL(string) (*DLL, error)
    pkg syscall (windows-386), func LoadLibrary(string) (Handle, error)
    pkg syscall (windows-386), func LocalFree(Handle) (Handle, error)
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
Back to top