Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 80 for getBuildPath (0.17 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/DefaultProjectComponentSelector.java

            return buildIdentifier;
        }
    
        @Override
        public String getBuildPath() {
            return buildIdentifier.getBuildPath();
        }
    
        @SuppressWarnings("deprecation")
        @Override
        public String getBuildName() {
            DeprecationLogger.deprecateMethod(ProjectComponentSelector.class, "getBuildName()")
                .withAdvice("Use getBuildPath() to get a unique identifier for the build.")
                .willBeRemovedInGradle9()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 01:47:36 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/tasks/execution/ExecuteTaskBuildOperationDetails.java

            return taskNode.getTask();
        }
    
        @NotUsedByScanPlugin
        public LocalTaskNode getTaskNode() {
            return taskNode;
        }
    
        @Override
        public String getBuildPath() {
            return taskIdentity().buildPath.toString();
        }
    
        @Override
        public String getTaskPath() {
            return taskIdentity().projectPath.toString();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 15 19:05:00 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  3. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/NestedSourceDependencyIdentityIntegrationTest.groovy

                }
            """
    
            4.times {
                executer.expectDocumentedDeprecationWarning("The BuildIdentifier.getName() method has been deprecated. This is scheduled to be removed in Gradle 9.0. Use getBuildPath() to get a unique identifier for the build. Consult the upgrading guide for further information: https://docs.gradle.org/current/userguide/upgrading_version_8.html#build_identifier_name_and_current_deprecation")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 9K bytes
    - Viewed (0)
  4. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/initialization/LoadProjectsBuildOperationType.java

             */
            String getBuildPath();
        }
    
        public interface Result {
            /**
             * The path of the build configuration that contains these projects.
             * This will be ':' for top-level builds. Nested builds will have a sub-path.
             *
             * See {@code org.gradle.api.internal.GradleInternal#getIdentityPath()}.
             */
            String getBuildPath();
    
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/execution/plan/ResolveMutationsNode.java

            public ResolveTaskMutationsDetails(TaskIdentity<?> taskIdentity) {
                this.taskIdentity = taskIdentity;
            }
    
            @Override
            public String getBuildPath() {
                return taskIdentity.getBuildPath();
            }
    
            @Override
            public String getTaskPath() {
                return taskIdentity.getTaskPath();
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 12 20:10:34 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/projectmodule/DefaultLocalComponentRegistry.java

            BuildTreeLocalComponentProvider componentProvider
        ) {
            this.currentProjectPath = getProjectIdentityPath(domainObjectContext);
            this.currentBuildPath = domainObjectContext.getBuildPath();
            this.projectComponentObservationListener = listenerManager.getBroadcaster(ProjectComponentObservationListener.class);
            this.componentProvider = componentProvider;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 17:59:41 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/initialization/buildsrc/BuildSourceBuilder.java

                        details(
                            new BuildBuildSrcBuildOperationType.Details() {
                                @Override
                                public String getBuildPath() {
                                    return publicBuildPath.getBuildPath().toString();
                                }
                            }
                        );
                }
            });
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 14:54:57 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/SourceDependencyIdentityIntegrationTest.groovy

                }
            """
    
            3.times {
                executer.expectDocumentedDeprecationWarning("The BuildIdentifier.getName() method has been deprecated. This is scheduled to be removed in Gradle 9.0. Use getBuildPath() to get a unique identifier for the build. Consult the upgrading guide for further information: https://docs.gradle.org/current/userguide/upgrading_version_8.html#build_identifier_name_and_current_deprecation")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/api/internal/plugins/ApplyPluginBuildOperationType.java

            /**
             * If the target is a project, its path.
             */
            @Nullable
            String getTargetPath();
    
            /**
             * The build path of the target.
             */
            String getBuildPath();
    
            /**
             * A unique ID for this plugin application, within this build operation tree.
             *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/initialization/RunNestedBuildBuildOperationType.java

    public final class RunNestedBuildBuildOperationType implements BuildOperationType<RunNestedBuildBuildOperationType.Details, RunNestedBuildBuildOperationType.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
    - 988 bytes
    - Viewed (0)
Back to top