Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 485 for predict1 (0.13 sec)

  1. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/PluginApplicationTracker.java

        }
    
        public boolean hasRunningPluginApplication(OperationIdentifier id, Predicate<? super PluginApplication> predicate) {
            return ancestryTracker.findClosestMatchingAncestor(id, parent -> {
                PluginApplication pluginApplication = runningPluginApplications.get(parent);
                return pluginApplication != null && predicate.test(pluginApplication);
            }).isPresent();
        }
    
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  2. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/WindowsFileWatcherRegistryFactory.java

    import org.gradle.internal.watch.registry.FileWatcherProbeRegistry;
    import org.gradle.internal.watch.registry.FileWatcherUpdater;
    
    import java.util.concurrent.BlockingQueue;
    import java.util.function.Predicate;
    
    import static org.gradle.internal.watch.registry.impl.HierarchicalFileWatcherUpdater.FileSystemLocationToWatchValidator.NO_VALIDATION;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:33 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    			watchKey := "/pods"
    			if tt.requestedName != "" {
    				watchKey += "/" + tt.requestedName
    			}
    
    			predicate := createPodPredicate(tt.fieldSelector, false, tt.indexFields)
    
    			list := &example.PodList{}
    			opts := storage.ListOptions{
    				ResourceVersion: "",
    				Predicate:       predicate,
    				Recursive:       true,
    			}
    			if err := store.GetList(ctx, "/pods", opts, list); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/DefaultCapabilitiesResolution.java

        }
    
        private static class CapabilityAction {
            private final Spec<? super Capability> predicate;
            private final Action<? super CapabilityResolutionDetails> action;
    
            private CapabilityAction(Spec<? super Capability> predicate, Action<? super CapabilityResolutionDetails> action) {
                this.predicate = predicate;
                this.action = action;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/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: Mon Nov 27 17:53:42 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/internal/classpath/CallInterceptionFilteringTest.groovy

    import org.gradle.internal.classpath.intercept.JvmBytecodeInterceptorFactoryProvider
    import org.gradle.internal.instrumentation.api.types.BytecodeInterceptorFilter
    
    import java.util.function.Predicate
    
    import static java.util.function.Predicate.isEqual
    import static org.gradle.internal.classpath.BasicCallInterceptionTestInterceptorsDeclaration.TEST_GENERATED_CLASSES_PACKAGE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 24 13:33:59 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  7. 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)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/AbstractNode.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.internal.impl;
    
    import java.util.Collections;
    import java.util.List;
    import java.util.function.Predicate;
    import java.util.stream.Collectors;
    
    import org.apache.maven.api.Node;
    import org.apache.maven.api.NodeVisitor;
    import org.eclipse.aether.artifact.Artifact;
    import org.eclipse.aether.graph.Dependency;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/internal/problems/DefaultProblemLocationAnalyzerTest.groovy

            def failure = Mock(Failure) {
                getStackTrace() >> stack
                getStackTraceRelevance(_) >> StackTraceRelevance.USER_CODE
                indexOfStackFrame(_, _) >> { start, predicate -> stack.findIndexOf(start) { predicate.test(it, StackTraceRelevance.USER_CODE) } }
            }
            def longDisplayName = Describables.of("<long source>")
            def shortDisplayName = Describables.of("<short source>")
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:15:42 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Multimaps.java

          Multimap<K, V> filterFiltered(
              FilteredMultimap<K, V> multimap, Predicate<? super Entry<K, V>> entryPredicate) {
        Predicate<Entry<K, V>> predicate =
            Predicates.<Entry<K, V>>and(multimap.entryPredicate(), entryPredicate);
        return new FilteredEntryMultimap<>(multimap.unfiltered(), predicate);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
Back to top