Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for NotifyProjectBeforeEvaluatedBuildOperationType (0.76 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. 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)
  3. 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)
  4. 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)
Back to top