Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Doesn (0.31 sec)

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

       * and its views. When given a value that doesn't satisfy the predicate, the bimap's {@code
       * put()}, {@code forcePut()} and {@code putAll()} methods throw an {@link
       * IllegalArgumentException}. Similarly, the map's entries have a {@link Entry#setValue} method
       * that throws an {@link IllegalArgumentException} when the provided value doesn't satisfy the
       * predicate.
       *
    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)
  2. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

       */
      @J2ktIncompatible
      @GwtIncompatible // reflection
      public void testTransformExceptionRemainsMemoized() throws Throwable {
        // We need to test with two input futures since ExecutionList.execute
        // doesn't catch Errors and we cannot depend on the order that our
        // transformations run. (So it is possible that the Error being thrown
        // could prevent our second transformations from running).
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 144.5K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

     *
     * Start a {@code ClosingFuture} pipeline {@linkplain #submit(ClosingCallable, Executor) from a
     * callable block} that may capture objects for later closing. To start a pipeline from a {@link
     * ListenableFuture} that doesn't create resources that should be closed later, you can use {@link
     * #from(ListenableFuture)} instead.
     *
     * <h3>Derived steps</h3>
     *
    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)
  4. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

       */
      @J2ktIncompatible
      @GwtIncompatible // reflection
      public void testTransformExceptionRemainsMemoized() throws Throwable {
        // We need to test with two input futures since ExecutionList.execute
        // doesn't catch Errors and we cannot depend on the order that our
        // transformations run. (So it is possible that the Error being thrown
        // could prevent our second transformations from running).
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 144.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/cache/LocalCache.java

          globalStatsCounter.recordHits(hits);
          globalStatsCounter.recordMisses(misses);
        }
      }
    
      /**
       * 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);
    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)
  6. android/guava/src/com/google/common/cache/LocalCache.java

          globalStatsCounter.recordHits(hits);
          globalStatsCounter.recordMisses(misses);
        }
      }
    
      /**
       * 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);
    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)
  7. src/main/java/jcifs/smb1/smb1/SmbFile.java

                    for( int i = 0; i < l.length; i++ ) {
                        l[i].delete();
                    }
                } catch( SmbException se ) {
                    /* Oracle FilesOnline version 9.0.4 doesn't send '.' and '..' so
                     * listFiles may generate undesireable "cannot find
                     * the file specified".
                     */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
Back to top