Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 36 for identityPath (0.18 sec)

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

        }
    
        override fun onProjectReference(referrer: ProjectState, target: ProjectState) {
            if (referrer.identityPath == target.identityPath)
                return
    
            if (host.cacheIntermediateModels) {
                val dependency = ProjectSpecificFingerprint.CoupledProjects(referrer.identityPath, target.identityPath)
                if (projectDependencies.add(dependency)) {
                    projectScopedWriter.write(dependency)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/initialization/ConfigurationCacheProblemsListener.kt

            } else {
                PropertyTrace.Task(GeneratedSubclasses.unpackType(task), task.identityPath.path)
            }
    
        private
        fun problemsListenerFor(task: TaskInternal): ProblemsListener = when {
            task.isCompatibleWithConfigurationCache -> problems
            else -> problems.forIncompatibleTask(task.identityPath.path)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CrossProjectModelAccessTrackingParentDynamicObject.kt

                    text("Project ")
                    reference(referrerProject.identityPath.toString())
                    text(" cannot dynamically look up a ")
                    text(memberKind.name.lowercase(Locale.ENGLISH))
                    text(" in the parent project ")
                    reference(ownerProject.identityPath.toString())
                }
                    .mapLocation { location ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationContainerSpec.groovy

            Mock(ResolutionStrategyFactory)
        )
    
        def setup() {
            metadataBuilder.withConfigurationsProvider(_) >> metadataBuilder
        }
    
        def "adds and gets"() {
            1 * domainObjectContext.identityPath("compile") >> Path.path(":build:compile")
            1 * domainObjectContext.projectPath("compile") >> Path.path(":compile")
            1 * domainObjectContext.model >> RootScriptDomainObjectContext.INSTANCE
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. subprojects/core/src/test/groovy/org/gradle/execution/selection/DefaultBuildTaskSelectorTest.groovy

            _ * rootProject.identityPath >> Path.path(":${name}")
            _ * rootProject.owner >> build
    
            return new IncludedBuildFixture(build, rootProject)
        }
    
        private ProjectState addProject(RootBuildFixture build, String name) {
            def projectState = Mock(ProjectState)
            projectState.projectPath >> Path.path(":$name")
            projectState.identityPath >> Path.path(":$name")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 10:15:47 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top