Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for workGraph (0.24 sec)

  1. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/DefaultIncludedBuildTaskGraph.java

            DefaultBuildTreeWorkGraph previous = current.get();
            DefaultBuildTreeWorkGraph workGraph = new DefaultBuildTreeWorkGraph();
            current.set(workGraph);
            try {
                try {
                    return action.apply(workGraph);
                } finally {
                    workGraph.close();
                }
            } finally {
                current.set(previous);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:04:24 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/build/DefaultBuildWorkGraphController.java

                        }
                    });
                }
                currentOwner = Thread.currentThread();
                DefaultBuildWorkGraph workGraph = new DefaultBuildWorkGraph();
                pendingGraphs.add(workGraph);
                return workGraph;
            }
        }
    
        private DefaultExportedTaskNode doLocate(TaskIdentifier taskIdentifier) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 31 05:15:28 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
Back to top