Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for toAfterEvaluate (0.15 sec)

  1. subprojects/core/src/test/groovy/org/gradle/internal/service/scopes/ProjectBackedPropertyHostTest.groovy

            host.beforeRead(null) == "configuration of <project> has not completed yet"
            state.toEvaluate()
            host.beforeRead(null) == "configuration of <project> has not completed yet"
            state.toAfterEvaluate()
            host.beforeRead(null) == "configuration of <project> has not completed yet"
            state.configured()
            host.beforeRead() == null
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Aug 28 21:50:20 UTC 2022
    - 3K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/project/ProjectStateInternalSpec.groovy

            stateString {} == "NOT EXECUTED"
            stateString { toBeforeEvaluate() } == "EXECUTING"
            stateString { toBeforeEvaluate(); toEvaluate() } == "EXECUTING"
            stateString { toBeforeEvaluate(); toEvaluate(); toAfterEvaluate() } == "EXECUTING"
            stateString { configured() } == "EXECUTED"
            stateString { failed(new ProjectConfigurationException("bang", [])); configured() } == "FAILED (bang)"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:52:07 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/project/ProjectStateInternal.java

            state = State.IN_BEFORE_EVALUATE;
        }
    
        public void toEvaluate() {
            assert state == State.IN_BEFORE_EVALUATE;
            state = State.IN_EVALUATE;
        }
    
        public void toAfterEvaluate() {
            assert state == State.IN_EVALUATE;
            state = State.IN_AFTER_EVALUATE;
        }
    
        public void configured() {
            assert state != State.CONFIGURED;
            state = State.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)
  4. subprojects/core/src/main/java/org/gradle/configuration/project/LifecycleProjectEvaluator.java

                            } catch (Exception e) {
                                addConfigurationFailure(project, state, e, context);
                            } finally {
                                state.toAfterEvaluate();
                                buildOperationRunner.run(new NotifyAfterEvaluate(project, state));
                            }
                        }
    
                        if (state.hasFailure()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top