Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 68 for tolist (0.13 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

        private final Lazy<List<? extends DependencyMetadata>> syntheticDependencies = Lazy.unsafe().of(this::generateSyntheticDependencies);
    
        private final AtomicInteger copyCount = new AtomicInteger();
    
        private List<String> declarationAlternatives = ImmutableList.of();
        private List<String> resolutionAlternatives = ImmutableList.of();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

        }
    
        public String[] addAll(final String index, final List<Map<String, Object>> docList,
                final BiConsumer<Map<String, Object>, IndexRequestBuilder> options) {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            final BulkRequestBuilder bulkRequestBuilder = client.prepareBulk();
            for (final Map<String, Object> doc : docList) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    In this example, the `moveFile` task uses the `Copy` task type to specify the source and destination directories.
    Inside the `doLast` closure, it uses `File.renameTo()` to move the file from the source directory to the destination directory:
    
    [source,groovy]
    ----
    task moveFile {
        doLast {
            def sourceFile = file('source.txt')
            def destFile = file('destination/new_name.txt')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

      ) {
        setUp(protocol, mockWebServer)
        val responseDequeuedLatches =
          Arrays.asList(
            CountDownLatch(1),
            // No synchronization for the last request, which is not canceled:
            CountDownLatch(1),
            CountDownLatch(0),
          )
        val requestCanceledLatches =
          Arrays.asList(
            CountDownLatch(1),
            CountDownLatch(1),
            CountDownLatch(0),
          )
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformBuildOperationIntegrationTest.groovy

            }
            consumerBuildFile << """
                task hello {
                    doLast {
                        println "Hello"
                    }
                }
            """
        }
    
        void checkExecutionPlanMatchingDependencies(List<PlannedNode> plannedNodes, List<NodeMatcher> nodeMatchers) {
            Map<TypedNodeId, List<String>> expectedDependencyNodeIdsByTypedNodeId = [:]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 67.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

            private final Map<Class<?>, List<ServiceProvider>> providersByType = new HashMap<Class<?>, List<ServiceProvider>>(16, 0.5f);
            private final CompositeStoppable stoppable = CompositeStoppable.stoppable();
            private final List<SingletonService> services = new ArrayList<SingletonService>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertEquals(1, ((List<?>) pom.getValue("build/plugins[1]/executions")).size());
            assertEquals("maven-it-plugin-b", pom.getValue("build/plugins[2]/artifactId"));
            assertEquals(1, ((List<?>) pom.getValue("build/plugins[1]/executions")).size());
            assertEquals("maven-it-plugin-a", pom.getValue("reporting/plugins[1]/artifactId"));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformInputArtifactIntegrationTest.groovy

                    dependencies {
                        implementation project(':b')
                        implementation project(':c')
                    }
                }
                project(':b') {
                    tasks.producer.doLast { throw new RuntimeException('broken') }
                }
    
                abstract class MakeGreen implements TransformAction<TransformParameters.None> {
                    @InputArtifact
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 27 19:15:32 UTC 2023
    - 51.9K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         * @return The default task names. Returns an empty list if this project has no default tasks.
         */
        List<String> getDefaultTasks();
    
        /**
         * <p>Sets the names of the default tasks of this project. These are used when no tasks names are provided when
         * starting the build.</p>
         *
         * @param defaultTasks The default task names.
         */
        void setDefaultTasks(List<String> defaultTasks);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  10. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/vnd.uplanet.cacheop",
    				"application/vnd.uplanet.cacheop-wbxml",
    				"application/vnd.uplanet.channel",
    				"application/vnd.uplanet.channel-wbxml",
    				"application/vnd.uplanet.list",
    				"application/vnd.uplanet.list-wbxml",
    				"application/vnd.uplanet.listcmd",
    				"application/vnd.uplanet.listcmd-wbxml",
    				"application/vnd.uplanet.signal",
    				"application/vnd.vcx",
    				"application/vnd.vd-study",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
Back to top