Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for LifecycleProjectEvaluator (0.39 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/project/ProjectStateInternal.java

     * Where not bound to backwards compatibility constraints, we use the term “configure”.
     *
     * @see org.gradle.configuration.project.LifecycleProjectEvaluator
     */
    public class ProjectStateInternal implements ProjectState {
    
        enum State {
            UNCONFIGURED,
            IN_BEFORE_EVALUATE,
            IN_EVALUATE,
            IN_AFTER_EVALUATE,
            CONFIGURED
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:52:05 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/configuration/project/LifecycleProjectEvaluatorTest.groovy

        private delegate = Mock(ProjectEvaluator)
        private cancellationToken = Mock(BuildCancellationToken)
        private buildOperationRunner = new TestBuildOperationRunner()
        private evaluator = new LifecycleProjectEvaluator(buildOperationRunner, delegate, cancellationToken)
        private state = new ProjectStateInternal()
        private mutationState = Mock(ProjectState)
    
        final RuntimeException failure1 = new RuntimeException()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top