Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 48 for identityPath (0.3 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/project/taskfactory/TaskIdentity.java

         */
        public final long uniqueId;
    
        TaskIdentity(Class<T> type, String name, Path projectPath, Path identityPath, Path buildPath, long uniqueId) {
            this.name = name;
            this.projectPath = projectPath;
            this.identityPath = identityPath;
            this.buildPath = buildPath;
            this.type = type;
            this.uniqueId = uniqueId;
        }
    
        public long getId() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 24 12:01:24 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/DefaultNestedBuildTree.java

            this.buildDefinition = buildDefinition;
            this.buildIdentifier = buildIdentifier;
            this.identityPath = identityPath;
            this.owner = owner;
            this.userHomeDirServiceRegistry = userHomeDirServiceRegistry;
            this.crossBuildSessionState = crossBuildSessionState;
            this.buildCancellationToken = buildCancellationToken;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 13 11:16:37 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  3. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/mapping/VersionMappingComponentDependencyResolver.java

            Path identityPath = ((ProjectDependencyInternal) dependency).getIdentityPath();
            ModuleVersionIdentifier coordinates = projectDependencyResolver.resolveComponent(ModuleVersionIdentifier.class, identityPath);
            ModuleVersionIdentifier resolved = maybeResolveVersion(coordinates.getGroup(), coordinates.getName(), identityPath);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  4. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/DefaultNestedBuild.java

        private final Path identityPath;
        private final BuildState owner;
        private final BuildIdentifier buildIdentifier;
        private final BuildDefinition buildDefinition;
        private final BuildTreeLifecycleController buildTreeLifecycleController;
    
        DefaultNestedBuild(
            BuildIdentifier buildIdentifier,
            Path identityPath,
            BuildDefinition buildDefinition,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 05 13:02:10 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. subprojects/composite-builds/src/test/groovy/org/gradle/composite/internal/DefaultIncludedBuildTest.groovy

            expect:
            def id = build.idToReferenceProjectFromAnotherBuild(projectId)
            id.identityPath == projectId.identityPath
            id.identityPath.path == projectId.buildTreePath
            id.projectPath == projectId.projectPath
            id.projectName == projectId.projectName
        }
    
        def "can run action against build state"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 22 14:22:44 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  6. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/DefaultIncludedBuild.java

    import java.io.File;
    
    public class DefaultIncludedBuild extends AbstractCompositeParticipantBuildState implements IncludedBuildState {
        private final BuildIdentifier buildIdentifier;
        private final Path identityPath;
        private final BuildDefinition buildDefinition;
        private final boolean isImplicit;
        private final IncludedBuildImpl model;
    
        public DefaultIncludedBuild(
            BuildIdentifier buildIdentifier,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 06 15:09:14 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/project/taskfactory/TaskFactory.java

                    identity.identityPath.toString(),
                    identity.type.getSimpleName()));
            } else {
                throw new InvalidUserDataException(String.format(
                    "Cannot create task '%s' of type '%s' as directly extending AbstractTask is not supported.",
                    identity.identityPath.toString(),
                    identity.type.getSimpleName()));
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 08:37:31 UTC 2021
    - 4.3K bytes
    - Viewed (0)
  8. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/RootOfNestedBuildTree.java

        private final BuildIdentifier buildIdentifier;
        private final Path identityPath;
        private final BuildTreeLifecycleController buildTreeLifecycleController;
    
        public RootOfNestedBuildTree(
            BuildDefinition buildDefinition,
            BuildIdentifier buildIdentifier,
            Path identityPath,
            BuildState owner,
            BuildTreeState buildTree
        ) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:17:50 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/execution/plan/AbstractExecutionPlanSpec.groovy

            def projectState = Mock(ProjectState)
    
            def project = Mock(ProjectInternal, name: name)
            _ * project.identityPath >> (parent == null ? Path.ROOT : Path.ROOT.child(name))
            _ * project.projectPath(_) >> { taskName -> Path.ROOT.child(taskName) }
            _ * project.identityPath(_) >> { taskName -> (parent == null ? Path.ROOT : Path.ROOT.child(name)).child(taskName) }
            _ * project.gradle >> thisBuild
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 24 11:56:02 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  10. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/BuildStateFactory.java

        }
    
        public StandAloneNestedBuild createNestedBuild(BuildIdentifier buildIdentifier, Path identityPath, BuildDefinition buildDefinition, BuildState owner) {
            DefaultNestedBuild build = new DefaultNestedBuild(buildIdentifier, identityPath, buildDefinition, owner, buildTreeState);
            // Expose any contributions from the parent's settings
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top