Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 485 for predict1 (0.18 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/AbstractSkipEmptyWorkStep.java

            return sourceFileProperties.entrySet().stream()
                .filter(entry -> propertyNameFilter.test(entry.getKey()))
                .map(Map.Entry::getValue)
                .allMatch(CurrentFileCollectionFingerprint::isEmpty);
        }
    
        private static boolean hasEmptyInputFileCollections(UnitOfWork work, Predicate<String> propertyNameFilter) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:46:24 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  2. 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)
  3. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/OutputsCleanerTest.groovy

    import spock.lang.Specification
    
    import java.util.function.Predicate
    
    @CleanupTestDirectory
    class OutputsCleanerTest extends Specification {
        @Rule
        public final TestNameTestDirectoryProvider temporaryFolder = new TestNameTestDirectoryProvider(getClass())
    
        def deleter = TestFiles.deleter()
        Predicate<File> fileSafeToDelete = Mock()
        Predicate<File> dirSafeToDelete = Mock()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. platforms/jvm/jacoco/src/main/java/org/gradle/internal/jacoco/JacocoAgentJar.java

                @Override
                public boolean apply(File file) {
                    return V_0_6_2_0.compareTo(extractVersion(file.getName())) > 0;
                }
            });
            return !pre062;
        }
    
        public boolean supportsInclNoLocationClasses() {
            boolean pre076 = Iterables.any(getAgentConf(), new Predicate<File>() {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/registry/ModelMapBasedRule.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.platform.base.internal.registry;
    
    import com.google.common.base.Predicate;
    import com.google.common.collect.ImmutableList;
    import com.google.common.collect.Iterables;
    import org.gradle.model.ModelMap;
    import org.gradle.model.internal.core.ModelReference;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  6. subprojects/core/src/testFixtures/java/org/gradle/internal/classpath/TestInstrumentedClassLoader.java

    import javax.annotation.Nonnull;
    import java.io.IOException;
    import java.net.URL;
    import java.util.Collections;
    import java.util.function.Predicate;
    
    public class TestInstrumentedClassLoader extends TransformingClassLoader {
        private final ClassTransform transform;
        private final Predicate<String> shouldLoadTransformedClass;
        private final ClassLoader source;
        private final InstrumentationTypeRegistry typeRegistry;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:14:01 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/relocation/UserPropertiesArtifactRelocationSource.java

        }
    
        private static class Relocation {
            private final Predicate<Artifact> predicate;
            private final boolean global;
            private final Artifact source;
            private final Artifact target;
    
            private Relocation(boolean global, Artifact source, Artifact target) {
                this.predicate = artifactPredicate(source);
                this.global = global;
                this.source = source;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/WatchableHierarchies.java

            private final Invalidator invalidator;
            private final Predicate<FileSystemLocationSnapshot> shouldKeep;
    
            private SnapshotHierarchy root;
    
            public InvalidatorVisitor(SnapshotHierarchy root, Invalidator invalidator, Predicate<FileSystemLocationSnapshot> shouldKeep) {
                this.root = root;
                this.invalidator = invalidator;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 17:02:39 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/symbols/AbstractMultiModuleSymbolByPsiTest.kt

         */
        private inline fun <reified T : PsiElement> PsiElement.forEachDescendantOfType(
            noinline predicate: (T) -> Boolean = { true },
            noinline action: (T) -> Unit,
        ) = this.accept(object : PsiRecursiveElementVisitor() {
            override fun visitElement(element: PsiElement) {
                if (element is T && predicate(element)) {
                    action(element)
                }
                super.visitElement(element)
            }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/relocation/UserPropertiesArtifactRelocationSource.java

        }
    
        private static class Relocation {
            private final Predicate<Artifact> predicate;
            private final boolean global;
            private final Artifact source;
            private final Artifact target;
    
            private Relocation(boolean global, Artifact source, Artifact target) {
                this.predicate = artifactPredicate(source);
                this.global = global;
                this.source = source;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 18 12:26:49 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top