Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 95 for identityPath (0.27 sec)

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

            }
        }
    
        @Override
        public ProjectState stateFor(Path identityPath) {
            synchronized (lock) {
                ProjectStateImpl projectState = projectsByPath.get(identityPath);
                if (projectState == null) {
                    throw new IllegalArgumentException(identityPath.getPath() + " not found.");
                }
                return projectState;
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 21K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/projectmodule/DefaultProjectDependencyPublicationResolver.java

            return withCoordinateResolver(coordsType, identityPath,
                VariantCoordinateResolver::getComponentCoordinates
            );
        }
    
        @Nullable
        @Override
        public <T> T resolveVariant(Class<T> coordsType, Path identityPath, String variantName) {
            return withCoordinateResolver(coordsType, identityPath, resolver ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/projectmodule/ProjectDependencyPublicationResolver.java

        /**
         * Determines the coordinates of the given type for the root component of the
         * project identified by {@code identityPath}.
         *
         * @throws UnsupportedOperationException if the project cannot be resolved.
         */
        <T> T resolveComponent(Class<T> coordsType, Path identityPath);
    
        /**
         * Determines the coordinates of the given type that should be used to reference the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 01:33:41 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/TasksFromDependentProjects.java

                    return false;
                }
    
                Path identityPath = ((ProjectInternal) originProject).getIdentityPath();
                return doesConfigurationDependOnProject(configuration, identityPath);
            }
    
            private static boolean doesConfigurationDependOnProject(Configuration configuration, Path identityPath) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:16:36 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/mapping/ResolutionBackedVariantDependencyResolver.java

            }
        }
    
        private static class ProjectDependencyKey {
            private final Path identityPath;
            private final ModuleDependencyDetails details;
    
            public ProjectDependencyKey(Path identityPath, ModuleDependencyDetails details) {
                this.identityPath = identityPath;
                this.details = details;
            }
    
            @Override
            public boolean equals(Object o) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ComponentSelectorSerializerTest.groovy

            def selector = new DefaultProjectComponentSelector(new DefaultBuildIdentifier(path(":build")), identityPath, projectPath, projectName, AttributeTestUtil.attributes(foo: 'x', bar: 'y'), capabilities())
    
            when:
            def result = serialize(selector, serializer)
    
            then:
            result.identityPath == selector.identityPath
            result.projectPath == selector.projectPath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top