Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for halse (0.13 sec)

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

                ReferenceEntry<Object, Object> entry) {
              return this;
            }
    
            @Override
            public boolean isLoading() {
              return false;
            }
    
            @Override
            public boolean isActive() {
              return false;
            }
    
            @CheckForNull
            @Override
            public Object waitForValue() {
              return null;
            }
    
            @Override
    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)
  2. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        runExpectedExceptionCatchingAsyncTest(expectedException, false);
      }
    
      public void testCatchingAsync_fallbackGeneratesCheckedException() throws Exception {
        Exception expectedException = new Exception() {};
        runExpectedExceptionCatchingAsyncTest(expectedException, false);
      }
    
      public void testCatchingAsync_fallbackGeneratesError() throws Exception {
    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)
  3. guava-tests/test/com/google/common/cache/LocalCacheTest.java

      }
    
      public void testEntryFactory() {
        assertSame(EntryFactory.STRONG, EntryFactory.getFactory(Strength.STRONG, false, false));
        assertSame(EntryFactory.STRONG_ACCESS, EntryFactory.getFactory(Strength.STRONG, true, false));
        assertSame(EntryFactory.STRONG_WRITE, EntryFactory.getFactory(Strength.STRONG, false, true));
        assertSame(
            EntryFactory.STRONG_ACCESS_WRITE, EntryFactory.getFactory(Strength.STRONG, true, true));
    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)
  4. android/guava-tests/test/com/google/common/cache/LocalCacheTest.java

      }
    
      public void testEntryFactory() {
        assertSame(EntryFactory.STRONG, EntryFactory.getFactory(Strength.STRONG, false, false));
        assertSame(EntryFactory.STRONG_ACCESS, EntryFactory.getFactory(Strength.STRONG, true, false));
        assertSame(EntryFactory.STRONG_WRITE, EntryFactory.getFactory(Strength.STRONG, false, true));
        assertSame(
            EntryFactory.STRONG_ACCESS_WRITE, EntryFactory.getFactory(Strength.STRONG, true, true));
    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)
  5. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        runExpectedExceptionCatchingAsyncTest(expectedException, false);
      }
    
      public void testCatchingAsync_fallbackGeneratesCheckedException() throws Exception {
        Exception expectedException = new Exception() {};
        runExpectedExceptionCatchingAsyncTest(expectedException, false);
      }
    
      public void testCatchingAsync_fallbackGeneratesError() throws Exception {
    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)
  6. android/guava/src/com/google/common/cache/LocalCache.java

                ReferenceEntry<Object, Object> entry) {
              return this;
            }
    
            @Override
            public boolean isLoading() {
              return false;
            }
    
            @Override
            public boolean isActive() {
              return false;
            }
    
            @CheckForNull
            @Override
            public Object waitForValue() {
              return null;
            }
    
            @Override
    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. android/guava/src/com/google/common/collect/Maps.java

              entryItr.remove();
              return true;
            }
          }
          return false;
        }
    
        @Override
        public boolean removeAll(Collection<?> collection) {
          Iterator<Entry<K, V>> entryItr = unfiltered.entrySet().iterator();
          boolean result = false;
          while (entryItr.hasNext()) {
            Entry<K, V> entry = entryItr.next();
    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)
  8. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

       *     the {@code futures}, or if any has already been {@linkplain #finishToFuture() finished}
       */
      public static Combiner whenAllComplete(Iterable<? extends ClosingFuture<?>> futures) {
        return new Combiner(false, futures);
      }
    
      /**
       * Starts specifying how to combine {@link ClosingFuture}s into a single pipeline.
       *
       * @throws IllegalStateException if a {@code ClosingFuture} has already been derived from any of
    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