Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,382 for tolist (1.15 sec)

  1. maven-model/src/test/java/org/apache/maven/model/v4/Xpp3DomPerfTest.java

                        .filter(p -> p.getFileName().toString().endsWith(".pom"))
                        .collect(Collectors.toList());
            }
        }
    
        @Benchmark
        public int readWithStax(AdditionState state) throws IOException, XMLStreamException {
            int i = 0;
            for (Path pom : state.poms) {
                try (InputStream is = Files.newInputStream(pom)) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Oct 20 07:14:01 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/utils/InlineDelegatedPropertyAccessorsAnalyzer.kt

            }
        }
    }
    
    @OptIn(KaAnalysisNonPublicApi::class)
    fun List<KtFile>.collectReachableInlineDelegatedPropertyAccessors(): List<KtFile> {
        if (isEmpty()) return this
    
        val allFiles = mutableSetOf<KtFile>()
        allFiles.addAll(this)
        allFiles.collectReachableInlineDelegatedPropertyAccessors()
        return allFiles.toList()
    }
    
    internal class InlineDelegatedPropertyAccessorsAnalyzer(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. platforms/jvm/jvm-services/src/main/java/org/gradle/jvm/toolchain/internal/WindowsInstallationSupplier.java

            ).stream().map(this::findJvms).flatMap(List::stream);
            return Stream.concat(openJdkInstallations, jvms)
                .map(javaHome -> InstallationLocation.autoDetected(new File(javaHome), getSourceName()))
                .collect(Collectors.toSet());
        }
    
        private List<String> find(String sdkSubkey, String path, String value) {
            try {
                List<String> versions = getVersions(sdkSubkey);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 22:14:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/features/withstaticreference/WithExtensionReferencesPostProcessor.java

        }
    
        private static List<RequestExtra> modifiedExtras(RequestExtrasContainer originalExtras) {
            return Stream.of(
                originalExtras.getAll().stream().filter(it -> !(it instanceof WithExtensionReferencesExtra)),
                Stream.<RequestExtra>of(new WithExtensionReferencesExtra.ProducedSynthetically())
            ).flatMap(Function.identity()).collect(Collectors.toList());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/execution/DefaultBuildResumptionAnalyzer.java

                return Optional.empty();
            }
    
            List<MavenProject> sortedProjects = result.getTopologicallySortedProjects();
    
            boolean hasNoSuccess =
                    sortedProjects.stream().noneMatch(project -> result.getBuildSummary(project) instanceof BuildSuccess);
    
            if (hasNoSuccess) {
                return Optional.empty();
            }
    
            List<String> remainingProjects = sortedProjects.stream()
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  6. testing/architecture-test/src/test/java/org/gradle/architecture/test/ArchUnitFixtureTest.java

            assertTrue(events.containViolation());
            assertThat(events.getViolating().size()).isEqualTo(2);
            List<String> descriptions = events.getViolating().stream().map(ArchUnitFixtureTest::eventDescription).collect(Collectors.toList());
            assertThat(descriptions).containsExactlyInAnyOrder(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl-tooling-builders/src/main/kotlin/org/gradle/kotlin/dsl/tooling/builders/BuildSrcClassPathModeConfigurationAction.kt

                .projectDependenciesIdentifiers()
                .map { project(it.projectPath) }
                .withJavaBasePlugin()
                .allSourceSetsRoots()
                .map { it.relativeTo(rootDir).path }
                .toList()
        }
    
        private
        fun Sequence<ResolvedComponentResult>.projectDependenciesIdentifiers() =
            mapNotNull { it.id as? ProjectComponentIdentifier }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 06 15:06:32 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docsTest/java/org/gradle/docs/samples/PartitioningSamplesRunner.java

            super(testClass);
        }
    
        protected List<Sample> getChildren() {
            List<Sample> allSamples = super.getChildren();
            return allSamples.stream()
                .filter(s -> sampleIdFilter().test(s.getId()))
                .collect(Collectors.toList());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/initialization/DefaultPlannedTask.java

        private final List<TaskIdentity> finalizers;
    
        public DefaultPlannedTask(
            TaskIdentity taskIdentity,
            List<? extends NodeIdentity> nodeDependencies,
            List<TaskIdentity> mustRunAfter,
            List<TaskIdentity> shouldRunAfter,
            List<TaskIdentity> finalizers
        ) {
            this.taskIdentity = taskIdentity;
            this.nodeDependencies = nodeDependencies;
            this.mustRunAfter = mustRunAfter;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 22 14:29:39 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/ToolingApiBackedGradleExecuter.groovy

            super(distribution, testDirectoryProvider)
        }
    
        void withToolingApiJvmArgs(String... args) {
            jvmArgs.addAll(args.toList())
        }
    
        @Override
        void assertCanExecute() throws AssertionError {
        }
    
        @Override
        protected ExecutionResult doRun() {
            def output = new ByteArrayOutputStream()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top