Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 82 for identityPath (0.41 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintController.kt

            }
    
            override fun <T> resolveScriptsForProject(identityPath: Path, action: () -> T): T {
                return fingerprintWriter.runCollectingFingerprintForProject(identityPath, action)
            }
    
            override fun <T> runCollectingFingerprintForProject(identityPath: Path, action: () -> T): T {
                return fingerprintWriter.runCollectingFingerprintForProject(identityPath, action)
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  9. 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)
  10. subprojects/composite-builds/src/test/groovy/org/gradle/composite/internal/DefaultIncludedBuildRegistryTest.groovy

            nestedBuild1.identityPath == Path.path(":buildSrc")
    
            def nestedBuild2 = registry.getBuildSrcNestedBuild(parent)
            // Shows current behaviour, not necessarily desired behaviour
            nestedBuild2.buildIdentifier == buildIdentifier(":parent:buildSrc")
            nestedBuild2.identityPath == Path.path(":parent:buildSrc")
        }
    
        def build(String name) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 14:36:04 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top