Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 95 for identityPath (0.14 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheAwareLocalComponentCache.kt

        override fun computeIfAbsent(project: ProjectState, factory: Function<ProjectState, LocalComponentGraphResolveState>): LocalComponentGraphResolveState {
            return cache.loadOrCreateProjectMetadata(project.identityPath) {
                factory.apply(project)
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

        private static class ConfigurationDescription implements Describable {
            private final Path identityPath;
    
            ConfigurationDescription(Path identityPath) {
                this.identityPath = identityPath;
            }
    
            @Override
            public String getDisplayName() {
                return "configuration '" + identityPath + "'";
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ReportingTaskDependencyUsageTracker.kt

            }
        }
    
        private
        fun reportProjectIsolationProblemOnApiUsage() {
            val problem = problemFactory.problem {
                text("Project ")
                reference(referrer.identityPath.toString())
                text(" cannot access task dependencies directly")
            }
                .exception()
                .build()
            problems.onProblem(problem)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultConfigurationCache.kt

                sideEffect.runSideEffect()
            }
        }
    
        override fun <T> loadOrCreateIntermediateModel(identityPath: Path?, modelName: String, parameter: ToolingModelParameterCarrier?, creator: () -> T?): T? {
            return intermediateModels.loadOrCreateIntermediateModel(identityPath, modelName, parameter, creator)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheAwareBuildToolingModelController.kt

            override fun getTarget() = delegate.target
    
            override fun getModel(modelName: String, parameter: ToolingModelParameterCarrier?): Any? {
                return cache.loadOrCreateIntermediateModel(target?.identityPath, modelName, parameter) {
                    delegate.getModel(modelName, parameter)
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/invocation/DefaultGradle.java

        }
    
        @Override
        public Path getIdentityPath() {
            if (identityPath == null) {
                identityPath = services.get(PublicBuildPath.class).getBuildPath();
            }
            return identityPath;
        }
    
        @Override
        public String contextualize(String description) {
            if (isRootBuild()) {
                return description;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  7. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/mapping/DefaultDependencyCoordinateResolverFactory.java

            @Override
            public ResolvedCoordinates resolveComponentCoordinates(ProjectDependency dependency) {
                Path identityPath = ((ProjectDependencyInternal) dependency).getIdentityPath();
                return ResolvedCoordinates.create(projectDependencyResolver.resolveComponent(ModuleVersionIdentifier.class, identityPath));
            }
    
            @Nullable
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/project/taskfactory/TaskIdentityFactory.java

            return new TaskIdentity<>(
                type,
                name,
                project.projectPath(name),
                project.identityPath(name),
                project.getGradle().getIdentityPath(),
                uniqueId
            );
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/DomainObjectContext.java

    /**
     * Represents a node in the tree of builds/projects.
     */
    public interface DomainObjectContext {
    
        /**
         * Creates a path from the root of the build tree to the current context + name.
         */
        Path identityPath(String name);
    
        /**
         * Creates a path from the root of the project tree to the current context + name.
         */
        Path projectPath(String name);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 16 21:18:55 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/initialization/RootScriptDomainObjectContext.java

            @Override
            public boolean isPluginContext() {
                return true;
            }
        };
    
        private RootScriptDomainObjectContext() {
        }
    
        @Override
        public Path identityPath(String name) {
            return Path.path(name);
        }
    
        @Override
        public Path projectPath(String name) {
            return Path.path(name);
        }
    
        @Override
        public Path getProjectPath() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Oct 23 18:38:36 UTC 2022
    - 3.8K bytes
    - Viewed (0)
Back to top