Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 46 for identityPath (0.15 sec)

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

    ) : ProjectEvaluator {
        override fun evaluate(project: ProjectInternal, state: ProjectStateInternal) {
            controller.runCollectingFingerprintForProject(project.identityPath) {
                delegate.evaluate(project, state)
            }
        }
    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/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/cacheentry/ModelKey.kt

     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl.cacheentry
    
    import org.gradle.internal.hash.HashCode
    import org.gradle.util.Path
    
    
    internal
    data class ModelKey(
        val identityPath: Path?,
        val modelName: String,
        val parameterHash: HashCode?
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 857 bytes
    - Viewed (0)
  3. 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)
  4. 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)
  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/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)
  7. 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)
  8. 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)
  9. subprojects/core/src/main/java/org/gradle/api/internal/project/ProjectStateRegistry.java

        ProjectState stateFor(ProjectComponentIdentifier identifier) throws IllegalArgumentException;
    
        /**
         * Locates the state object that owns the project with the identity path.
         */
        ProjectState stateFor(Path identityPath) throws IllegalArgumentException;
    
        /**
         * Locates the state objects for all projects of the given build.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ScopeIdsFixture.groovy

                    }
    
                    @TaskAction def collect() {
                        def gradle = services.get(Gradle)
                        def scopeIds = [
                            "\${gradle.identityPath}": [
                                buildInvocation: services.get(${BuildInvocationScopeId.name}).id.asString(),
                                workspace: services.get(${WorkspaceScopeId.name}).id.asString(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top