Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 222 for predict1 (0.18 sec)

  1. pkg/scheduler/framework/plugins/interpodaffinity/filtering.go

    	ErrReasonExistingAntiAffinityRulesNotMatch = "node(s) didn't satisfy existing pods anti-affinity rules"
    	// ErrReasonAffinityRulesNotMatch is used for PodAffinityRulesNotMatch predicate error.
    	ErrReasonAffinityRulesNotMatch = "node(s) didn't match pod affinity rules"
    	// ErrReasonAntiAffinityRulesNotMatch is used for PodAntiAffinityRulesNotMatch predicate error.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 01 10:24:54 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/controlling_task_execution.adoc

    Gradle offers multiple ways to skip the execution of a task.
    
    [[sec:using_a_predicate]]
    === 1. Using a predicate
    
    You can use link:{javadocPath}/org/gradle/api/Task.html#onlyIf-org.gradle.api.specs.Spec-[`Task.onlyIf`] to attach a predicate to a task.
    The task's actions will only be executed if the predicate is evaluated to be `true`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

      /**
       * A predicate that matches classes with an underscore in the class name. This can be used with
       * {@link #ignoreClasses} to exclude generated classes, such as the {@code AutoValue_Foo} classes
       * generated by <a href="https://github.com/google/auto/tree/master/value">AutoValue</a>.
       *
       * @since 19.0
       */
      public static final Predicate<Class<?>> UNDERSCORE_IN_NAME =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/locking/LockFileReaderWriter.java

                    iterator.remove();
                }
            }
        }
    
        public Map<String, List<String>> readUniqueLockFile() {
            checkValidRoot();
            Predicate<String> empty = String::isEmpty;
            Predicate<String> comment = s -> s.startsWith("#");
            Path uniqueLockFile = getUniqueLockfilePath();
            List<String> emptyLockIds = new ArrayList<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/reflect/TypeTokenResolutionTest.java

      }
    
      private interface StringListPredicate extends Predicate<List<String>> {}
    
      private interface IntegerSupplier extends Supplier<Integer> {}
    
      // Intentionally duplicate the Predicate interface to test that it won't cause
      // exceptions
      private interface IntegerStringFunction
          extends IntegerSupplier, Predicate<List<String>>, StringListPredicate {}
    
      public void testGenericInterface() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/reflect/TypeTokenResolutionTest.java

      }
    
      private interface StringListPredicate extends Predicate<List<String>> {}
    
      private interface IntegerSupplier extends Supplier<Integer> {}
    
      // Intentionally duplicate the Predicate interface to test that it won't cause
      // exceptions
      private interface IntegerStringFunction
          extends IntegerSupplier, Predicate<List<String>>, StringListPredicate {}
    
      public void testGenericInterface() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  7. guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

      /**
       * A predicate that matches classes with an underscore in the class name. This can be used with
       * {@link #ignoreClasses} to exclude generated classes, such as the {@code AutoValue_Foo} classes
       * generated by <a href="https://github.com/google/auto/tree/master/value">AutoValue</a>.
       *
       * @since 19.0
       */
      public static final Predicate<Class<?>> UNDERSCORE_IN_NAME =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/nodevolumelimits/csi.go

    	// If the new pod doesn't have any volume attached to it, the predicate will always be true
    	if len(pod.Spec.Volumes) == 0 {
    		return nil
    	}
    
    	node := nodeInfo.Node()
    
    	logger := klog.FromContext(ctx)
    
    	// If CSINode doesn't exist, the predicate may read the limits from Node object
    	csiNode, err := pl.csiNodeLister.Get(node.Name)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 18:07:11 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

      // Returns true if the death test passed; that is, the test process
      // exited during the test, its exit status matches a user-supplied
      // predicate, and its stderr output matches a user-supplied regular
      // expression.
      // The user-supplied predicate may be a macro expression rather
      // than a function pointer or functor, or else Wait and Passed could
      // be combined.
      virtual bool Passed(bool exit_status_ok) = 0;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/asm/ClassDependenciesVisitor.java

    import java.util.HashSet;
    import java.util.Set;
    import java.util.function.Predicate;
    
    public class ClassDependenciesVisitor extends ClassVisitor {
    
        private final static int API = AsmConstants.ASM_LEVEL;
    
        private final IntSet constants;
        private final Set<String> privateTypes;
        private final Set<String> accessibleTypes;
        private final Predicate<String> typeFilter;
        private final StringInterner interner;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 13:49:15 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top