Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for identityPath (0.27 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/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)
  6. 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)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildTreeStructureIntegrationTest.groovy

                                def builds = []
                                registry.visitBuilds { b ->
                                    builds.add(b.identityPath.path)
                                    if (b.projectsLoaded) {
                                        projects.addAll(b.projects.allProjects.collect { p -> p.identityPath.path })
                                    }
                                }
                                println "projects = " + projects
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/ToolingApiSpec.groovy

            addBuilderRegisteringPluginImplementation(childBuildName, "MyModelBuilder", """
                def model = project.extensions.create("myExtension", MyExtension)
                model.message = "It works from project \${project.identityPath}"
            """)
        }
    
        void withParameterizedSomeToolingModelBuilderPluginInChildBuild(String childBuildName, String builderContent = "") {
            addPluginBuildScript(childBuildName)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/TaskNodeCodec.kt

        withIsolate(IsolateOwners.OwnerTask(task), codec) {
            withPropertyTrace(PropertyTrace.Task(taskType, task.identityPath.path)) {
                if (task.isCompatibleWithConfigurationCache) {
                    action()
                } else {
                    forIncompatibleType(task.identityPath.path, action)
                }
            }
        }
    }
    
    
    private
    sealed class RegisteredProperty {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ProblemReportingCrossProjectModelAccess.kt

            }
    
            override fun getPluginManager(): PluginManagerInternal {
                onAccess("pluginManager")
                return delegate.pluginManager
            }
    
            override fun identityPath(name: String): Path {
                shouldNotBeUsed()
            }
    
            override fun projectPath(name: String): Path {
                shouldNotBeUsed()
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 41.1K bytes
    - Viewed (0)
Back to top