Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for predict (0.23 sec)

  1. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    the court with a smile.  There was a dead silence.
    
      `It's a pun!' the King added in an offended tone, and
    everybody laughed, `Let the jury consider their verdict,' the
    King said, for about the twentieth time that day.
    
      `No, no!' said the Queen.  `Sentence first--verdict afterwards.'
    
      `Stuff and nonsense!' said Alice loudly.  `The idea of having
    the sentence first!'
    
    Plain Text
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Mon Oct 29 21:35:03 GMT 2012
    - 145.2K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

          assertThat(expected.getCause()).isNull();
        }
      }
    
      @J2ktIncompatible
      @GwtIncompatible // used only in GwtIncompatible tests
      private static Predicate<StackTraceElement> hasClassName(final Class<?> clazz) {
        return new Predicate<StackTraceElement>() {
          @Override
          public boolean apply(StackTraceElement element) {
            return element.getClassName().equals(clazz.getName());
          }
        };
    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/src/com/google/common/cache/LocalCache.java

    import java.util.concurrent.locks.ReentrantLock;
    import java.util.function.BiFunction;
    import java.util.function.BiPredicate;
    import java.util.function.Function;
    import java.util.function.Predicate;
    import java.util.logging.Level;
    import java.util.logging.Logger;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
    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)
  4. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

          assertThat(expected.getCause()).isNull();
        }
      }
    
      @J2ktIncompatible
      @GwtIncompatible // used only in GwtIncompatible tests
      private static Predicate<StackTraceElement> hasClassName(final Class<?> clazz) {
        return new Predicate<StackTraceElement>() {
          @Override
          public boolean apply(StackTraceElement element) {
            return element.getClassName().equals(clazz.getName());
          }
        };
    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)
  5. android/guava/src/com/google/common/collect/Maps.java

          extends ViewCachingAbstractMap<K, V> {
        final Map<K, V> unfiltered;
        final Predicate<? super Entry<K, V>> predicate;
    
        AbstractFilteredMap(Map<K, V> unfiltered, Predicate<? super Entry<K, V>> predicate) {
          this.unfiltered = unfiltered;
          this.predicate = predicate;
        }
    
        boolean apply(@CheckForNull Object key, @ParametricNullness V value) {
    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)
  6. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    the court with a smile.  There was a dead silence.
    
      `It's a pun!' the King added in an offended tone, and
    everybody laughed, `Let the jury consider their verdict,' the
    King said, for about the twentieth time that day.
    
      `No, no!' said the Queen.  `Sentence first--verdict afterwards.'
    
      `Stuff and nonsense!' said Alice loudly.  `The idea of having
    the sentence first!'
    
    Plain Text
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Fri Apr 21 02:27:51 GMT 2017
    - 145.2K bytes
    - Viewed (0)
Back to top