Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for predict0 (0.05 sec)

  1. 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) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:05:46 UTC 2024
    - 167.4K bytes
    - Viewed (0)
  2. 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) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:05:46 UTC 2024
    - 161.6K 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;
    
    /**
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 19:07:49 UTC 2024
    - 149.2K bytes
    - Viewed (0)
Back to top