Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 222 for predict1 (0.15 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest_pred_impl.h

    // This file is AUTOMATICALLY GENERATED on 10/31/2011 by command
    // 'gen_gtest_pred_impl.py 5'.  DO NOT EDIT BY HAND!
    //
    // Implements a family of generic predicate assertion macros.
    
    #ifndef GTEST_INCLUDE_GTEST_GTEST_PRED_IMPL_H_
    #define GTEST_INCLUDE_GTEST_GTEST_PRED_IMPL_H_
    
    // Makes sure this header is not included before gtest.h.
    #ifndef GTEST_INCLUDE_GTEST_GTEST_H_
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/base-services-groovy/src/main/java/org/gradle/groovy/scripts/internal/AstUtils.java

                return null;
            }
        }
    
        @Nullable
        public static ScriptBlock detectScriptBlock(Statement statement, Predicate<? super ScriptBlock> predicate) {
            ScriptBlock scriptBlock = detectScriptBlock(statement);
            if (scriptBlock != null && predicate.apply(scriptBlock)) {
                return scriptBlock;
            } else {
                return null;
            }
        }
    
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 10:00:26 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/RuleBindings.java

        private void addRule(RuleBinder rule, NodeAtStateIndex index, ModelBinding binding) {
            Reference reference = new Reference(rule, index, binding);
            BindingPredicate predicate = binding.getPredicate();
            if (predicate.getPath() != null) {
                if (predicate.getScope() != null) {
                    throw new UnsupportedOperationException("Currently not implemented");
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    // integer exit status that satisfies predicate, and emitting error output
    // that matches regex.
    # define ASSERT_EXIT(statement, predicate, regex) \
        GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_FATAL_FAILURE_)
    
    // Like ASSERT_EXIT, but continues on to successive tests in the
    // test case, if any:
    # define EXPECT_EXIT(statement, predicate, regex) \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    // integer exit status that satisfies predicate, and emitting error output
    // that matches regex.
    # define ASSERT_EXIT(statement, predicate, regex) \
        GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_FATAL_FAILURE_)
    
    // Like ASSERT_EXIT, but continues on to successive tests in the
    // test case, if any:
    # define EXPECT_EXIT(statement, predicate, regex) \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store.go

    		// getResp.Count counts in objects that do not match the pred.
    		// Instead of returning inaccurate count for non-empty selectors, we return nil.
    		// Only set remainingItemCount if the predicate is empty.
    		if opts.Predicate.Empty() {
    			c := int64(getResp.Count - opts.Predicate.Limit)
    			remainingItemCount = &c
    		}
    		return s.versioner.UpdateList(listObj, uint64(withRev), next, remainingItemCount)
    	}
    
    	// no continuation
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/CollectSpliterators.java

          }
        };
      }
    
      /** Returns a {@code Spliterator} filtered by the specified predicate. */
      static <T extends @Nullable Object> Spliterator<T> filter(
          Spliterator<T> fromSpliterator, Predicate<? super T> predicate) {
        checkNotNull(fromSpliterator);
        checkNotNull(predicate);
        class Splitr implements Spliterator<T>, Consumer<T> {
          @CheckForNull T holder = null;
    
          @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 22 18:19:31 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/cache/internal/DefaultCrossBuildInMemoryCacheFactory.java

            private final ConcurrentMap<K, Boolean> keysFromCurrentBuild = new ConcurrentHashMap<>();
            private final Predicate<V> retentionFilter;
    
            public CrossBuildCacheRetainingDataFromPreviousBuild(Predicate<V> retentionFilter) {
                this.retentionFilter = retentionFilter;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 11 20:23:28 UTC 2021
    - 10.6K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

    import java.util.ArrayList;
    import java.util.Collections;
    import java.util.LinkedHashMap;
    import java.util.List;
    import java.util.Map;
    import java.util.Optional;
    import java.util.Set;
    import java.util.function.Predicate;
    
    import org.apache.maven.api.Dependency;
    import org.apache.maven.api.JavaPathType;
    import org.apache.maven.api.Node;
    import org.apache.maven.api.PathType;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/NormalizingExcludeFactory.java

         * - flattened unions/intersections
         */
        private <T extends ExcludeSpec> FlattenOperationResult flatten(Class<T> flattenType, Set<ExcludeSpec> specs, Predicate<ExcludeSpec> fastExit, Predicate<ExcludeSpec> ignoreSpec) {
            boolean filtered = false;
            boolean flatten = false;
            int size = 0;
            for (ExcludeSpec spec : specs) {
                if (fastExit.test(spec)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17.4K bytes
    - Viewed (0)
Back to top