Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for CONFIGURE_BUILD (0.24 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/operations/BuildOperationCategory.java

        /**
         * Configure the root build. May also include nested {@link #CONFIGURE_BUILD} and {@link #RUN_WORK} operations.
         */
        CONFIGURE_ROOT_BUILD(false, false, false),
    
        /**
         * Configure a nested build or a buildSrc build.
         */
        CONFIGURE_BUILD(false, false, false),
    
        /**
         * Configure a single project in any build.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r76/BuildPhaseOperationEventCrossVersionTest.groovy

            assertStartEventHas(progressEvents[0], "CONFIGURE_ROOT_BUILD", 3)
            // We then configure included build c
            assertStartEventHas(progressEvents[1], "CONFIGURE_BUILD", 1)
            // End of included build
            assertSuccessfulFinishEventHas(progressEvents[2], "CONFIGURE_BUILD")
            // End of root build
            assertSuccessfulFinishEventHas(progressEvents[3], "CONFIGURE_ROOT_BUILD")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 10:41:50 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/events/InternalBuildPhaseDescriptor.java

     *
     * @since 7.6
     */
    public interface InternalBuildPhaseDescriptor extends InternalOperationDescriptor {
    
        /**
         * Returns the build phase name.
         *
         * Can be one of: CONFIGURE_ROOT_BUILD, CONFIGURE_BUILD, RUN_MAIN_TASKS, RUN_WORK.
         */
        String getBuildPhase();
    
        /**
         * Returns number of build items this phase will execute.
         */
        int getBuildItemsCount();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/BuildPhaseOperationListener.java

    import java.util.Collections;
    import java.util.EnumSet;
    import java.util.Map;
    import java.util.Set;
    import java.util.concurrent.ConcurrentHashMap;
    
    import static org.gradle.internal.operations.BuildOperationCategory.CONFIGURE_BUILD;
    import static org.gradle.internal.operations.BuildOperationCategory.CONFIGURE_ROOT_BUILD;
    import static org.gradle.internal.operations.BuildOperationCategory.RUN_MAIN_TASKS;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/lifecycle/BuildPhaseOperationDescriptor.java

     * @since 7.6
     */
    @Incubating
    public interface BuildPhaseOperationDescriptor extends OperationDescriptor {
    
        /**
         * Returns the build phase name.
         *
         * Can be one of: CONFIGURE_ROOT_BUILD, CONFIGURE_BUILD, RUN_MAIN_TASKS, RUN_WORK.
         */
        String getBuildPhase();
    
        /**
         * Returns number of build items this phase will execute.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/configuration/BuildOperationFiringProjectsPreparer.java

                if (gradle.isRootBuild()) {
                    builder.metadata(BuildOperationCategory.CONFIGURE_ROOT_BUILD);
                } else {
                    builder.metadata(BuildOperationCategory.CONFIGURE_BUILD);
                }
                builder.totalProgress(gradle.getSettings().getProjectRegistry().size());
                //noinspection Convert2Lambda
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/BuildStatusRenderer.java

                        phaseStarted(startEvent, Phase.Configuring);
                    } else if (startEvent.getBuildOperationCategory() == BuildOperationCategory.CONFIGURE_BUILD && currentPhase == Phase.Configuring) {
                        // Any configuring event received from nested or buildSrc builds before the root build starts configuring is ignored
                        phaseHasMoreProgress(startEvent);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/BuildStatusRendererTest.groovy

        }
    
        def startConfigureBuild(Long id, Long parentId, int totalProgress) {
            return start(id, parentId, BuildOperationCategory.CONFIGURE_BUILD, totalProgress)
        }
    
        def startConfigureProject(Long id, Long parentId) {
            return start(id, parentId, BuildOperationCategory.CONFIGURE_PROJECT)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 10.3K bytes
    - Viewed (0)
Back to top