Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 485 for predict1 (0.13 sec)

  1. maven-core/src/main/java/org/apache/maven/execution/ProfileActivation.java

            this.activations.put(id, settings);
        }
    
        private Set<String> getProfileIds(final Predicate<ActivationSettings> predicate) {
            return this.activations.entrySet().stream()
                    .filter(e -> predicate.test(e.getValue()))
                    .map(Map.Entry::getKey)
                    .collect(toSet());
        }
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  2. subprojects/core/src/testFixtures/groovy/org/gradle/test/fixtures/AbstractProjectBuilderSpec.groovy

            task.state.rethrowFailure()
        }
    
        protected static boolean assertHasMatchingCause(Throwable t, Predicate<String> predicate) {
            if (t == null) {
                return false
            }
    
            def cause = t
            while (true) {
                if (predicate.test(cause.getMessage())) {
                    return true
                }
                def nextCause = cause.cause
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 10:13:50 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/testing/GcFinalization.java

      }
    
      /**
       * Waits until the given predicate returns true, invoking the garbage collector as necessary to
       * try to ensure that this will happen.
       *
       * @throws RuntimeException if timed out or interrupted while waiting
       */
      @SuppressWarnings("removal") // b/260137033
      public static void awaitDone(FinalizationPredicate predicate) {
        if (predicate.isDone()) {
          return;
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/nodevolumelimits/non_csi.go

    //
    // DEPRECATED
    // All cloudprovider specific predicates defined here are deprecated in favour of CSI volume limit
    // predicate - MaxCSIVolumeCountPred.
    //
    // The predicate looks for both volumes used directly, as well as PVC volumes that are backed by relevant volume
    // types, counts the number of unique volumes, and rejects the new pod if it would place the total count over
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 30 23:00:56 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  5. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/AbstractIncompleteFileSystemNode.java

        }
    
        private static boolean anyChildMatches(ChildMap<FileSystemNode> children, Predicate<FileSystemNode> predicate) {
            return children.stream()
                .map(ChildMap.Entry::getValue)
                .anyMatch(predicate);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  6. testing/architecture-test/src/test/java/org/gradle/architecture/test/ArchUnitFixture.java

            private final DescribedPredicate<? super JavaAnnotation<?>> predicate;
    
            AnnotatedMaybeInSupertypePredicate(DescribedPredicate<? super JavaAnnotation<?>> predicate) {
                super("annotated, maybe in a supertype, with " + predicate.getDescription());
                this.predicate = predicate;
            }
    
            @Override
            public boolean test(JavaMember input) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/renderers/KtTypeParameterRendererFilter.kt

                owner: KaSymbolWithTypeParameters,
            ): Boolean {
                return owner !is KaConstructorSymbol
            }
        }
    
        public companion object {
            public operator fun invoke(
                predicate: KaSession.(typeParameter: KaTypeParameterSymbol, owner: KaSymbolWithTypeParameters) -> Boolean
            ): KaTypeParameterRendererFilter {
                return object : KaTypeParameterRendererFilter {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/internal/classpath/InheritedMethodsInterceptionTest.groovy

    import org.gradle.internal.classpath.types.ExternalPluginsInstrumentationTypeRegistry
    import org.gradle.internal.classpath.types.InstrumentationTypeRegistry
    
    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: Wed Feb 07 20:14:01 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. platforms/jvm/jvm-services/src/test/groovy/org/gradle/internal/jvm/inspection/InvalidJvmInstallationCacheInvalidatorTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.jvm.inspection
    
    import spock.lang.Specification
    
    import java.util.function.Predicate
    
    class InvalidJvmInstallationCacheInvalidatorTest extends Specification {
        def 'closing triggers cache invalidation'() {
            def cache = Mock(ConditionalInvalidation<JvmInstallationMetadata>)
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/FluentIterable.java

       *
       * <p><b>{@code Stream} equivalent:</b> {@link Stream#anyMatch} (same).
       */
      public final boolean anyMatch(Predicate<? super E> predicate) {
        return Iterables.any(getDelegate(), predicate);
      }
    
      /**
       * Returns {@code true} if every element in this fluent iterable satisfies the predicate. If this
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 30 00:14:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
Back to top