Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for NotifyProjectBeforeEvaluatedBuildOperationType (0.47 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/test/groovy/org/gradle/configuration/project/LifecycleProjectEvaluatorTest.groovy

            def details = op.descriptor.details as NotifyProjectBeforeEvaluatedBuildOperationType.Details
            details.projectPath == ":project1"
            details.buildPath == ":"
    
            assertOpFailureOrNot(op, NotifyProjectBeforeEvaluatedBuildOperationType.Result, failureCause)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. subprojects/core/src/integTest/groovy/org/gradle/configuration/project/LifecycleProjectEvaluatorIntegrationTest.groovy

            when:
            succeeds('foo')
    
            then:
    
            def configOp = operations.only(ConfigureProjectBuildOperationType, { it.details.projectPath == ':foo' })
            with(operations.only(NotifyProjectBeforeEvaluatedBuildOperationType, { it.details.projectPath == ':foo' })) {
                displayName == 'Notify beforeEvaluate listeners of :foo'
                children*.displayName == ["Execute Project.beforeEvaluate listener"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.configuration.project.NotifyProjectBeforeEvaluatedBuildOperationType$Result> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (NotifyProjectBeforeEvaluatedBuildOperationType.java:0)
    Class <org.gradle.configuration.project.NotifyProjectBeforeEvaluatedBuildOperationType> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (NotifyProjectBeforeEvaluatedBuildOperationType.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