Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 73 for getBuildPath (0.15 sec)

  1. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/initialization/BuildIdentifiedProgressDetails.java

    /**
     * Fired once a build in the tree is discovered and before any other build operations reference that build are executed.
     *
     * @since 8.0
     */
    public interface BuildIdentifiedProgressDetails {
        String getBuildPath();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 878 bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/dependencies/variants/ProjectComponentIdentifier.java

    /**
     * An identifier for a component instance that is built as part of the current build.
     *
     * @since 8.1
     */
    public interface ProjectComponentIdentifier extends ComponentIdentifier {
    
        String getBuildPath();
    
        String getProjectPath();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 917 bytes
    - Viewed (0)
  3. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/initialization/LoadBuildBuildOperationType.java

        public interface Details {
            /**
             * @since 4.6
             */
            String getBuildPath();
    
            /**
             * The build path of the build that caused this build to be included.
             *
             * Null for the root build.
             *
             * @since 4.10
             */
            @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/DefaultBuildControllers.java

                        return 1;
                    }
                }
                if (id2.equals(DefaultBuildIdentifier.ROOT)) {
                    return -1;
                }
                return id1.getBuildPath().compareTo(id2.getBuildPath());
            };
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 23 10:37:35 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  5. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/api/internal/tasks/RealizeTaskBuildOperationType.java

     * @since 4.9
     */
    public final class RealizeTaskBuildOperationType implements BuildOperationType<RealizeTaskBuildOperationType.Details, RealizeTaskBuildOperationType.Result> {
    
        public interface Details {
            String getBuildPath();
    
            String getTaskPath();
    
            /**
             * See {@code org.gradle.api.internal.project.taskfactory.TaskIdentity#uniqueId}.
             */
            long getTaskId();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/configuration/project/NotifyProjectAfterEvaluatedBuildOperationType.java

        public interface Details {
    
            String getProjectPath();
    
            String getBuildPath();
    
        }
    
        public interface Result {
    
        }
    
        final static Result RESULT = new Result() {
        };
    
        private NotifyProjectAfterEvaluatedBuildOperationType() {
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/initialization/NotifyProjectsLoadedBuildOperationType.java

    public final class NotifyProjectsLoadedBuildOperationType implements BuildOperationType<NotifyProjectsLoadedBuildOperationType.Details, NotifyProjectsLoadedBuildOperationType.Result> {
    
        public interface Details {
            String getBuildPath();
        }
    
        public interface Result {
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/configuration/project/NotifyProjectBeforeEvaluatedBuildOperationType.java

        public interface Details {
    
            String getProjectPath();
    
            String getBuildPath();
    
        }
    
        public interface Result {
    
        }
    
        final static Result RESULT = new Result() {
        };
    
        private NotifyProjectBeforeEvaluatedBuildOperationType() {
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/initialization/buildsrc/BuildBuildSrcBuildOperationType.java

        public interface Details {
            /**
             * Returns the path of the _containing_ build.
             * @since 4.6
             */
            String getBuildPath();
        }
    
        public interface Result {
        }
    
        private BuildBuildSrcBuildOperationType(){
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/service/BuildCacheServicesConfiguration.java

        ) {
            this.buildPath = buildPath;
            this.remote = remote;
            this.remotePush = remotePush;
            this.local = local;
            this.localPush = localPush;
        }
    
        public String getBuildPath() {
            return buildPath;
        }
    
        @Nullable
        public LocalBuildCacheService getLocal() {
            return local;
        }
    
        public boolean isLocalPush() {
            return localPush;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 04 08:25:00 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top