Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for workGraph (0.11 sec)

  1. subprojects/core/src/test/groovy/org/gradle/internal/build/DefaultBuildLifecycleControllerTest.groovy

            t3 == failure
        }
    
        void testCanExecuteTasksWhenNothingHasBeenScheduled() {
            when:
            def controller = controller()
            def workGraph = controller.newWorkGraph()
            def result = controller.executeTasks(workGraph)
    
            then:
            result.failures.empty
    
            when:
            def finishResult = controller.finishBuild(null)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheState.kt

                readRequiredBuildServicesOf(gradle)
    
                val workGraph = readWorkGraph(gradle)
                readFlowScopeOf(gradle)
                readBuildOutputCleanupRegistrations(gradle)
                return BuildWithWork(build.state.identityPath, build, gradle.rootProject.name, projects, workGraph)
            } else {
                return BuildWithNoProjects(build.state.identityPath)
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultConfigurationCache.kt

            return loadFromCache(StateType.Work) { stateFile ->
                val (buildInvocationId, workGraph) = cacheIO.readRootBuildStateFrom(stateFile, loadAfterStore, graph, graphBuilder)
                LoadResult(stateFile.stateFile.file, buildInvocationId) to workGraph
            }
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/worker_api.adoc

    .src/einstein.txt
    [source,text]
    ----
    include::{snippetsPath}/workerApi/md5CustomTask/groovy/src/einstein.txt[]
    ----
    
    .src/feynman.txt
    [source,text]
    ----
    include::{snippetsPath}/workerApi/md5CustomTask/groovy/src/feynman.txt[]
    ----
    
    .src/hawking.txt
    [source,text]
    ----
    include::{snippetsPath}/workerApi/md5CustomTask/groovy/src/hawking.txt[]
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 13:41:08 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  5. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WaitForCompletionWorkerExecutorSampleIntegrationTest.groovy

    import org.gradle.util.internal.TextUtil
    
    @IntegrationTestTimeout(60)
    class WaitForCompletionWorkerExecutorSampleIntegrationTest extends AbstractWorkerExecutorSampleIntegrationTest {
        String getSampleName() {
            "workerApi/waitForCompletion"
        }
    
        @Override
        void assertSampleSpecificOutcome(String dsl) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/NoIsolationWorkerExecutorSampleIntegrationTest.groovy

    @IntegrationTestTimeout(60)
    class NoIsolationWorkerExecutorSampleIntegrationTest extends AbstractWorkerExecutorSampleIntegrationTest {
        String getSampleName() {
            "workerApi/noIsolation"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 928 bytes
    - Viewed (0)
  7. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerDaemonWorkerExecutorSampleIntegrationTest.groovy

    @IntegrationTestTimeout(60)
    class WorkerDaemonWorkerExecutorSampleIntegrationTest extends AbstractWorkerExecutorSampleIntegrationTest {
        String getSampleName() {
            "workerApi/workerDaemon"
        }
    
        @Override
        void assertSampleSpecificOutcome(String dsl) {
            workerExecutorSample(dsl).file("sources").listFiles().each { File sourceFile ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top