Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 62 for getBuildPath (0.23 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. subprojects/core/src/integTest/groovy/org/gradle/initialization/buildsrc/BuildSrcIdentityIntegrationTest.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: Mon May 20 11:16:24 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildIdentityIntegrationTest.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
    - 11.7K bytes
    - Viewed (0)
  8. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/execution/taskgraph/NotifyTaskGraphWhenReadyBuildOperationType.java

        public interface Details {
    
            String getBuildPath();
    
        }
    
        public interface Result {
    
        }
    
        final static NotifyTaskGraphWhenReadyBuildOperationType.Result RESULT = new NotifyTaskGraphWhenReadyBuildOperationType.Result() {
        };
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/configuration/BuildOperationScriptPlugin.java

            public String getTargetPath() {
                return identifier == null ? null : identifier.getTargetPath();
            }
    
            @Override
            public String getBuildPath() {
                return identifier == null ? null : identifier.getBuildPath();
            }
    
            @Override
            public long getApplicationId() {
                return applicationId.longValue();
            }
        }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/dependencies/configurations/ConfigurationIdentity.java

    package org.gradle.operations.dependencies.configurations;
    
    import javax.annotation.Nullable;
    
    /**
     * Identifies a configuration.
     *
     * @since 8.1
     */
    public interface ConfigurationIdentity {
    
        String getBuildPath();
    
        @Nullable
        String getProjectPath();
    
        String getName();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 907 bytes
    - Viewed (0)
Back to top