Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 97 for satisfy (0.07 sec)

  1. 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 Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 23 16:45:30 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  2. 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 Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 50.3K 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 Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Sep 24 13:42:31 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  4. 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.
       */
      @Deprecated
      @Override
      public boolean apply(@ParametricNullness T input) {
        return mightContain(input);
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 23 16:45:30 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/base/Converter.java

        @Override
        public String toString() {
          return first + ".andThen(" + second + ")";
        }
    
        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 Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 23K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Range.java

        checkNotNull(value);
        // let this throw CCE if there is some trickery going on
        return lowerBound.isLessThan(value) && !upperBound.isLessThan(value);
      }
    
      /**
       * @deprecated Provided only to satisfy the {@link Predicate} interface; use {@link #contains}
       *     instead.
       */
      @Deprecated
      @Override
      public boolean apply(C input) {
        return contains(input);
      }
    
      /**
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 16 17:21:56 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/MinMaxPriorityQueue.java

          expectedModCount++;
          if (cursor < size()) {
            MoveDesc<E> moved = removeAt(cursor);
            if (moved != null) {
              // Either both are null or neither is, but we check both to satisfy the nullness checker.
              if (forgetMeNot == null || skipMe == null) {
                forgetMeNot = new ArrayDeque<>();
                skipMe = new ArrayList<>(3);
              }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  8. cmd/object-api-listobjects_test.go

    		{"test-bucket-list-object", "", "obj0", "", 1, resultCases[19], nil, true},
    		// Testing with both marker and prefix, but without truncation (43-45).
    		// The valid combination of marker and prefix should satisfy strings.HasPrefix(marker, prefix).
    		{"test-bucket-list-object", "obj", "obj0", "", 2, resultCases[20], nil, true},
    		{"test-bucket-list-object", "obj", "obj1", "", 1, resultCases[21], nil, true},
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K 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 Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 42.8K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/core/v1/generated.proto

      // may or may not try to eventually evict the pod from its node.
      // +optional
      optional NodeSelector requiredDuringSchedulingIgnoredDuringExecution = 1;
    
      // The scheduler will prefer to schedule pods to nodes that satisfy
      // the affinity expressions specified by this field, but it may choose
      // a node that violates one or more of the expressions. The node that is
      // most preferred is the one with the greatest sum of weights, i.e.
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
Back to top