Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 80 for getBuildPath (0.15 sec)

  1. subprojects/core/src/main/java/org/gradle/configuration/ConfigurationTargetIdentifier.java

        /**
         * If type == project, that project's path (not identity path).
         * Else, null.
         */
        @Nullable
        public abstract String getTargetPath();
    
        public abstract String getBuildPath();
    
        /**
         * Returns null if the thing is of an unknown type.
         * This can happen with {@code apply(from: "foo", to: someTask)},
         * where “to” can be absolutely anything.
         */
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:08 UTC 2021
    - 3.7K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/component/ProjectComponentSelector.java

         * Absolute build path of the build within the Gradle invocation to select a project from.
         *
         * @since 8.2
         */
        String getBuildPath();
    
        /**
         * The name of the build to select a project from.
         *
         * @return The build name
         * @deprecated Use {@link #getBuildPath()} instead.
         */
        @Deprecated
        String getBuildName();
    
        /**
         * The path of the project to select the component from.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 12 18:25:54 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/initialization/ProjectsIdentifiedProgressDetails.java

     * that reference those projects are executed.
     *
     * @since 8.0
     */
    public interface ProjectsIdentifiedProgressDetails {
        /**
         * @see LoadProjectsBuildOperationType.Result#getBuildPath()
         */
        String getBuildPath();
    
        /**
         * @see LoadProjectsBuildOperationType.Result#getRootProject()
         */
        Project getRootProject();
    
        interface Project {
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/component/BuildIdentifier.java

         *
         * @since 8.2
         */
        String getBuildPath();
    
        /**
         * The name of the build.
         *
         * @deprecated Use {@link #getBuildPath()} instead.
         */
        @Deprecated
        String getName();
    
        /**
         * Is this build the one that's currently executing?
         *
         * @deprecated Compare {@link #getBuildPath()} with the build path of the current build instead.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 20 16:28:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/initialization/NotifyingBuildLoader.java

                        .progressDisplayName("Loading projects")
                        .details(new LoadProjectsBuildOperationType.Details() {
                            @Override
                            public String getBuildPath() {
                                return buildPath;
                            }
                        });
                }
    
                @Override
                public Void call(BuildOperationContext context) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/DefaultBuildIdentifier.java

            this.buildPath = buildPath;
        }
    
        @Override
        public String getBuildPath() {
            return buildPath.toString();
        }
    
        @SuppressWarnings("deprecation")
        @Override
        public String getName() {
            DeprecationLogger.deprecateMethod(BuildIdentifier.class, "getName()")
                .withAdvice("Use getBuildPath() to get a unique identifier for the build.")
                .willBeRemovedInGradle9()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 19 07:33:41 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/initialization/BuildOperationFiringSettingsPreparer.java

                        @Override
                        public String getBuildPath() {
                            return gradle.getIdentityPath().toString();
                        }
    
                        @Override
                        public String getIncludedBy() {
                            return fromBuild == null ? null : fromBuild.getBuildPath().toString();
                        }
                    });
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildBuildSrcIdentityIntegrationTest.groovy

                }
            """
    
            2.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 Oct 24 06:54:47 UTC 2023
    - 8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/ComponentToOperationConverter.java

                return new org.gradle.operations.dependencies.variants.ProjectComponentIdentifier() {
                    @Override
                    public String getBuildPath() {
                        return projectComponentIdentifier.getBuild().getBuildPath();
                    }
    
                    @Override
                    public String getProjectPath() {
                        return projectComponentIdentifier.getProjectPath();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/BuildIdentifierSerializer.java

            } else if (value instanceof ForeignBuildIdentifier) {
                encoder.writeByte(FOREIGN);
                encoder.writeString(value.getBuildPath());
            } else {
                encoder.writeByte(LOCAL);
                encoder.writeString(value.getBuildPath());
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top