Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,382 for tolist (0.82 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/filter/impl/UrlFilterImpl.java

            this.sessionId = sessionId;
            if (!cachedIncludeSet.isEmpty()) {
                try {
                    getUrlFilterService().addIncludeUrlFilter(sessionId, cachedIncludeSet.stream().collect(Collectors.toList()));
                } catch (final Exception e) {
                    logger.warn("Failed to add include_urls on " + sessionId, e);
                }
                cachedIncludeSet.clear();
            }
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/accessors/PluginDependencySpecAccessorsTest.kt

                            linkedMapOf(
                                "plugin-a" to PluginTree.PluginSpec("my.plugin-a", "my.PluginA")
                            )
                        )
                    )
                ).toList(),
                equalTo(
                    listOf(
                        PluginDependencySpecAccessor.ForPlugin(
                            "my-plugin",
                            "my.Plugin",
                            ExtensionSpec(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/files/fileCollections/kotlin/build.gradle.kts

        val projectLayout = layout
        doLast {
            val collection = projectLayout.files("src/file1.txt")
    
            // tag::usage[]
            // Iterate over the files in the collection
            collection.forEach { file: File ->
                println(file.name)
            }
    
            // Convert the collection to various types
            val set: Set<File> = collection.files
            val list: List<File> = collection.toList()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 13:55:00 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/BuildOperationTreeFixture.groovy

            return operations.records.values().find { it.displayName ==~ displayName }
        }
    
        @Override
        List<BuildOperationRecord> all() {
            return operations.records.values().toList()
        }
    
        @Override
        List<BuildOperationRecord> all(Pattern displayName) {
            return operations.records.values().findAll { it.displayName ==~ displayName }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:20 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/vfs/impl/WatchingNotSupportedVirtualFileSystemTest.groovy

            watchingNotSupportedVfs.afterBuildFinished()
            then:
            watchingNotSupportedVfs.root == emptySnapshotHierarchy
    
            where:
            watchMode << WatchMode.values().toList()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. platforms/software/publish/src/test/groovy/org/gradle/api/publish/plugins/PublishingPluginTest.groovy

            def publication = Stub(PublicationInternal)
    
            when:
            extension.publications.add(publication)
    
            then:
            extension.publications.size() == 1
            extension.publications.toList().first().is(publication)
        }
    
        def "lifecycle task created"() {
            expect:
            project.tasks[PublishingPlugin.PUBLISH_LIFECYCLE_TASK_NAME] != null
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/classloading/CompositeGroovySystemLoader.java

    import org.gradle.util.internal.CollectionUtils;
    
    import java.util.List;
    
    public class CompositeGroovySystemLoader implements GroovySystemLoader {
        private final List<GroovySystemLoader> loaders;
    
        public CompositeGroovySystemLoader(GroovySystemLoader... loaders) {
            this.loaders = CollectionUtils.toList(loaders);
        }
    
        @Override
        public void shutdown() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:52:05 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/execution/ProjectActivation.java

         * @param activeProjectSelectors A {@link List} of project selectors that must be activated.
         * @deprecated Use {@link #activateOptionalProject(String)} or {@link #activateRequiredProject(String)} instead.
         */
        @Deprecated
        public void overwriteActiveProjects(List<String> activeProjectSelectors) {
            List<ProjectActivationSettings> projects = getProjects(pa -> pa.active).collect(Collectors.toList());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 7K bytes
    - Viewed (0)
  9. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/ExecutionGraph.java

            this.data = Arrays.asList(lines);
        }
    
        String getData() {
            return JsonOutput.toJson(data);
        }
    
        String getTicks() {
            List<List<Object>> ticks = IntStream.range(0, data.get(0).data.size())
                .mapToObj(index -> Arrays.<Object>asList(index, index))
                .collect(Collectors.toList());
            return JsonOutput.toJson(ImmutableMap.of("ticks", ticks));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/support/WalkReproduciblyTest.kt

                        }
                        "a1" {}
                    }
                    withFile("root-f1")
                }
            }
    
            assertThat(
                folder("root").walkReproducibly().map { it.name }.toList(),
                equalTo(
                    listOf(
                        "root",
                        "root-f1", "root-f2", "a", "b", "c",
                        "a1", "a2", "b-f1", "c1",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top