Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 47 for executors (0.28 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/DynamicRevisionRemoteResolveWithMetadataSupplierIntegrationTest.groovy

            when: "publish a new integration version"
            resetExpectations()
            repository {
                'group:projectB:2.3'()
            }
            executer.withArgument('-PrefreshDynamicVersions')
    
            then:
            repositoryInteractions {
                'group:projectA' {
                    expectHeadVersionListing()
                }
                'group:projectB' {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 49K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/Project.java

        /**
         * Executes a Java main class. The closure configures a {@link org.gradle.process.JavaExecSpec}.
         *
         * @param closure The closure for configuring the execution.
         * @return the result of the execution
         */
        ExecResult javaexec(@DelegatesTo(JavaExecSpec.class) Closure closure);
    
        /**
         * Executes an external Java process.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    [[communicating_test_results_to_CI_servers_and_other_tools_via_xml_files]]
    === Communicating test results to CI servers and other tools via XML files
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

            private final ConcurrentMap<String, Object> parentCache;
            private final ModelTransformerContextBuilder transformerContextBuilder;
            private final ExecutorService executor;
            private final ModelCache modelCache;
            private final ModelResolver modelResolver;
    
            BuildSession(ProjectBuildingRequest request, boolean localProjects) {
                this.request = request;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

            given:
            serviceImplementation()
            adhocTaskUsingUndeclaredService(1)
            enableStableConfigurationCache()
            executer.expectDocumentedDeprecationWarning(
                "Build service 'counter' is being used by task ':broken' without the corresponding declaration via 'Task#usesService'. " +
                    "This behavior has been deprecated. " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    That means that Gradle does not detect changes when the stats of a file did not change.
    
    Gradle also considers the _code_ of the task as part of the inputs to the task. When a task, its actions, or its dependencies change between executions, Gradle considers the task as out-of-date.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  7. cmd/test-utils_test.go

    	t                 *testing.T
    	objAPITest        objAPITestType
    	endpoints         []string
    	init              func()
    	makeBucketOptions MakeBucketOptions
    }
    
    // ExecObjectLayerAPITest - executes object layer API tests.
    // Creates single node and Erasure ObjectLayer instance, registers the specified API end points and runs test for both the layers.
    func ExecObjectLayerAPITest(args ExecObjectLayerAPITestArgs) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

            'Task.taskDependencies' | 'taskDependencies'
        }
    
        def "reports build listener registration on #registrationPoint"() {
    
            given:
            buildFile << code
    
            when:
            executer.noDeprecationChecks()
            configurationCacheFails 'help'
    
            then:
            outputContains("Configuration cache entry discarded with 1 problem.")
            problems.assertFailureHasProblems(failure) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      let summary =
        "returns `f(inputs)`, where `f`'s body is placed and partitioned.";
    
      let description = [{
    Asynchronously executes a function, potentially across multiple devices but
    within a single process. The kernel places and partitions a given function's
    underlying graph, and executes each of the partitioned subgraphs as a function.
      }];
    
      let arguments = (ins
        Variadic<TF_Tensor>:$args,
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

                        libs {
                            library("$reserved", "org:lib1:1.0")
                        }
                    }
                }
            """
    
            when:
            executer.withStacktraceEnabled()
            fails "help"
    
            then:
            verifyContains(failure.error, reservedAlias {
                inCatalog("libs")
                alias(reserved)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
Back to top