Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for BuildWorkGraphController (0.29 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/build/BuildWorkGraphController.java

    import java.util.Collection;
    
    /**
     * Allows the work graph for a particular build in the build tree to be populated and executed.
     */
    @ServiceScope(Scope.Build.class)
    public interface BuildWorkGraphController {
        /**
         * Locates a future task node in this build's work graph, for use from some other build's work graph.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/build/AbstractBuildState.java

        private final BuildScopeServices buildServices;
        private final Lazy<BuildLifecycleController> buildLifecycleController;
        private final Lazy<ProjectStateRegistry> projectStateRegistry;
        private final Lazy<BuildWorkGraphController> workGraphController;
    
        public AbstractBuildState(BuildTreeState buildTree, BuildDefinition buildDefinition, @Nullable BuildState parent) {
            // Create the controllers using the services of the nested tree
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:20 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. subprojects/composite-builds/src/test/groovy/org/gradle/composite/internal/DefaultIncludedBuildTaskGraphTest.groovy

    import org.gradle.api.internal.artifacts.DefaultBuildIdentifier
    import org.gradle.execution.plan.PlanExecutor
    import org.gradle.internal.build.BuildWorkGraph
    import org.gradle.internal.build.BuildWorkGraphController
    import org.gradle.internal.build.ExecutionResult
    import org.gradle.internal.buildtree.BuildTreeWorkGraphPreparer
    import org.gradle.internal.operations.TestBuildOperationRunner
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:04:24 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. subprojects/composite-builds/src/test/groovy/org/gradle/composite/internal/DefaultIncludedBuildTaskGraphParallelTest.groovy

            def lock = Stub(ResourceLock)
            _ * projectState.taskExecutionLock >> lock
            _ * lock.tryLock() >> true
            return task
        }
    
        private BuildWorkGraphController buildWorkGraphController(String displayName, BuildServices services) {
            def builder = Mock(BuildLifecycleController.WorkGraphBuilder)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  5. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.internal.build.BuildWorkGraphController> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (BuildWorkGraphController.java:0)
    Class <org.gradle.internal.build.BuildWorkPreparer> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (BuildWorkPreparer.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
Back to top