Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getBuildPhase (0.31 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/lifecycle/internal/DefaultBuildPhaseOperationDescriptor.java

            super(internalDescriptor, parent);
            this.buildPhase = internalDescriptor.getBuildPhase();
            this.buildItemsCount = internalDescriptor.getBuildItemsCount();
        }
    
        @Override
        public String getBuildPhase() {
            return buildPhase;
        }
    
        @Override
        public int getBuildItemsCount() {
            return buildItemsCount;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/events/InternalBuildPhaseDescriptor.java

        /**
         * 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)
  3. subprojects/build-events/src/main/java/org/gradle/internal/build/event/types/DefaultBuildPhaseDescriptor.java

            super(id, name, displayName, parentId);
            this.buildPhase = buildPhase;
            this.workItemCount = workItemCount;
        }
    
        @Override
        public String getBuildPhase() {
            return buildPhase;
        }
    
        @Override
        public int getBuildItemsCount() {
            return workItemCount;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 23 04:56:39 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/lifecycle/BuildPhaseOperationDescriptor.java

        /**
         * 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.
         *
         * For configuration phase this is a number of projects to configure, for build phase this is a number of tasks to run.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top