Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for NotifyProjectBeforeEvaluatedBuildOperationType (0.56 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/internal/operations/notify/BuildOperationNotificationIntegrationTest.groovy

            notifications.started(NotifyProjectBeforeEvaluatedBuildOperationType.Details, [buildPath: ":buildSrc", projectPath: ":"])
            notifications.started(NotifyProjectBeforeEvaluatedBuildOperationType.Details, [buildPath: ":a:buildSrc", projectPath: ":"])
            notifications.started(NotifyProjectBeforeEvaluatedBuildOperationType.Details, [buildPath: ":a", projectPath: ":"])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/configuration/project/LifecycleProjectEvaluator.java

            public void run(BuildOperationContext context) {
                try {
                    project.getProjectEvaluationBroadcaster().beforeEvaluate(project);
                    context.setResult(NotifyProjectBeforeEvaluatedBuildOperationType.RESULT);
                } catch (Exception e) {
                    addConfigurationFailure(project, state, e, context);
                }
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/configuration/ExecuteUserLifecycleListenerBuildOperationIntegrationTest.groovy

    import org.gradle.configuration.internal.ExecuteListenerBuildOperationType
    import org.gradle.configuration.project.NotifyProjectAfterEvaluatedBuildOperationType
    import org.gradle.configuration.project.NotifyProjectBeforeEvaluatedBuildOperationType
    import org.gradle.execution.taskgraph.NotifyTaskGraphWhenReadyBuildOperationType
    import org.gradle.initialization.NotifyProjectsEvaluatedBuildOperationType
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 40.2K bytes
    - Viewed (0)
Back to top