Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 51 for satisfy (0.1 sec)

  1. android/guava/src/com/google/common/math/StatsAccumulator.java

     * @since 20.0
     */
    @J2ktIncompatible
    @GwtIncompatible
    public final class StatsAccumulator {
      /** Creates a new accumulator. */
      public StatsAccumulator() {}
    
      // These fields must satisfy the requirements of Stats' constructor as well as those of the stat
      // methods of this class.
      private long count = 0;
      private double mean = 0.0; // any finite value will do, we only use it to multiply by zero for sum
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Apr 14 16:36:11 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/testing/ArbitraryInstances.java

        @Override
        public OutputStream openStream() {
          return ByteStreams.nullOutputStream();
        }
      }
    
      // Compare by toString() to satisfy 2 properties:
      // 1. compareTo(null) should throw NullPointerException
      // 2. the order is deterministic and easy to understand, for debugging purpose.
      @SuppressWarnings("ComparableType")
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 16 17:42:14 UTC 2025
    - 20.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/FluentIterable.java

       */
      public final FluentIterable<E> append(E... elements) {
        return FluentIterable.concat(getDelegate(), Arrays.asList(elements));
      }
    
      /**
       * Returns the elements from this fluent iterable that satisfy a predicate. The resulting fluent
       * iterable's iterator does not support {@code remove()}.
       *
       * <p><b>{@code Stream} equivalent:</b> {@link Stream#filter} (same).
       */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 35.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/FluentIterable.java

       */
      public final FluentIterable<E> append(E... elements) {
        return FluentIterable.concat(getDelegate(), Arrays.asList(elements));
      }
    
      /**
       * Returns the elements from this fluent iterable that satisfy a predicate. The resulting fluent
       * iterable's iterator does not support {@code remove()}.
       *
       * <p><b>{@code Stream} equivalent:</b> {@link Stream#filter} (same).
       */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 34.8K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/AbstractMapBasedMultimap.java

          return new SortedAsMap(sortedMap().tailMap(fromKey));
        }
    
        @Nullable SortedSet<K> sortedKeySet;
    
        // returns a SortedSet, even though returning a Set would be sufficient to
        // satisfy the SortedMap.keySet() interface
        @Override
        public SortedSet<K> keySet() {
          SortedSet<K> result = sortedKeySet;
          return (result == null) ? sortedKeySet = createKeySet() : result;
        }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Aug 12 15:51:57 UTC 2025
    - 48.2K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Iterators.java

              return list;
            } else {
              return list.subList(0, count);
            }
          }
        };
      }
    
      /**
       * Returns a view of {@code unfiltered} containing all elements that satisfy the input predicate
       * {@code retainIfTrue}.
       */
      public static <T extends @Nullable Object> UnmodifiableIterator<T> filter(
          Iterator<T> unfiltered, Predicate<? super T> retainIfTrue) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 50.5K bytes
    - Viewed (0)
  7. guava/src/com/google/common/math/Stats.java

      private final double max;
    
      /**
       * Internal constructor. Users should use {@link #of} or {@link StatsAccumulator#snapshot}.
       *
       * <p>To ensure that the created instance obeys its contract, the parameters should satisfy the
       * following constraints. This is the callers responsibility and is not enforced here.
       *
       * <ul>
       *   <li>If {@code count} is 0, {@code mean} may have any finite value (its only usage will be to
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 24.8K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/base/Converter.java

          return first + ".andThen(" + second + ")";
        }
    
        @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0L;
      }
    
      /**
       * @deprecated Provided to satisfy the {@code Function} interface; use {@link #convert} instead.
       */
      @Deprecated
      @Override
      @InlineMe(replacement = "this.convert(a)")
      public final B apply(A a) {
        /*
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jun 18 21:43:06 UTC 2025
    - 22.8K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Iterables.java

            return Iterators.paddedPartition(iterable.iterator(), size);
          }
        };
      }
    
      /**
       * Returns a view of {@code unfiltered} containing all elements that satisfy the input predicate
       * {@code retainIfTrue}. The returned iterable's iterator does not support {@code remove()}.
       *
       * <p><b>{@code Stream} equivalent:</b> {@link Stream#filter}.
       */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 43.6K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/hash/BloomFilter.java

       */
      public boolean mightContain(@ParametricNullness T object) {
        return strategy.mightContain(object, funnel, numHashFunctions, bits);
      }
    
      /**
       * @deprecated Provided only to satisfy the {@link Predicate} interface; use {@link #mightContain}
       *     instead.
       */
      @InlineMe(replacement = "this.mightContain(input)")
      @Deprecated
      @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Aug 31 13:15:26 UTC 2025
    - 26.9K bytes
    - Viewed (0)
Back to top