Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for NotifyProjectBeforeEvaluatedBuildOperationType (0.61 sec)

  1. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/configuration/project/NotifyProjectBeforeEvaluatedBuildOperationType.java

    /**
     * Execution of a project's beforeEvaluate hooks
     *
     * @since 4.9
     */
    public final class NotifyProjectBeforeEvaluatedBuildOperationType implements BuildOperationType<NotifyProjectBeforeEvaluatedBuildOperationType.Details, NotifyProjectBeforeEvaluatedBuildOperationType.Result> {
    
        public interface Details {
    
            String getProjectPath();
    
            String getBuildPath();
    
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. 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)
  3. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/configuration/internal/ExecuteListenerBuildOperationType.java

    package org.gradle.configuration.internal;
    
    import org.gradle.configuration.project.NotifyProjectBeforeEvaluatedBuildOperationType;
    import org.gradle.internal.operations.BuildOperationType;
    
    /**
     * Execution of a lifecycle listener/callback.
     *
     * Expected to be the child operation of an operation indicating the lifecycle event (e.g. {@link NotifyProjectBeforeEvaluatedBuildOperationType}).
     *
     * @since 4.10
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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