Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 95 for identityPath (0.14 sec)

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

     */
    internal
    sealed class CachedBuildState(
        val identityPath: Path,
    )
    
    
    /**
     * A build in the tree whose projects were loaded. May or may not have work scheduled.
     */
    internal
    sealed class BuildWithProjects(
        identityPath: Path,
        val rootProjectName: String,
        val projects: List<CachedProjectState>
    ) : CachedBuildState(identityPath)
    
    
    /**
     * A build in the tree with work scheduled.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/DefaultProjectComponentSelector.java

            this.identityPath = identityPath;
            this.projectPath = projectPath;
            this.projectName = projectName;
            this.attributes = attributes;
            this.requestedCapabilities = requestedCapabilities;
        }
    
        @Override
        public String getDisplayName() {
            if (displayName == null) {
                displayName = "project " + identityPath;
            }
            return displayName;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 01:47:36 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultProjectSpec.groovy

            def container = Mock(ProjectState)
            _ * container.projectPath >> (parent == null ? Path.ROOT : parent.projectPath.child(name))
            _ * container.identityPath >> (parent == null ? build.identityPath : build.identityPath.append(parent.projectPath).child(name))
    
            def descriptor = Mock(ProjectDescriptor) {
                getName() >> name
                getProjectDir() >> new File("project")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ComponentIdentifierSerializerTest.groovy

            when:
            def result = serialize(identifier, serializer)
    
            then:
            result.identityPath == identifier.identityPath
            result.projectPath == identifier.projectPath
            result.buildTreePath == identifier.buildTreePath
            result.projectPath() == identifier.projectPath()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/JvmTestExecutionSpec.java

            this.candidateClassFiles = candidateClassFiles;
            this.scanForTestClasses = scanForTestClasses;
            this.testClassesDirs = testClassesDirs;
            this.path = path;
            this.identityPath = identityPath;
            this.forkEvery = forkEvery;
            this.javaForkOptions = javaForkOptions;
            this.maxParallelForks = maxParallelForks;
            this.previousFailedTestClasses = previousFailedTestClasses;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/DefaultProjectComponentIdentifier.java

        private final Path projectPath;
        private final Path identityPath;
        private final String projectName;
        private String displayName;
    
        public DefaultProjectComponentIdentifier(BuildIdentifier buildIdentifier, Path identityPath, Path projectPath, String projectName) {
            assert buildIdentifier != null : "build cannot be null";
            assert identityPath != null : "identity path cannot be null";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 12 18:25:54 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/models/IntermediateModelController.kt

                readNonNull()
            }
        }
    
        fun <T> loadOrCreateIntermediateModel(identityPath: Path?, modelName: String, parameter: ToolingModelParameterCarrier?, creator: () -> T): T? {
            val key = ModelKey(identityPath, modelName, parameter?.hash)
            return loadOrCreateValue(key) {
                try {
                    val model = if (identityPath != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/projectmodule/DefaultProjectDependencyPublicationResolverTest.groovy

            registry.register(project.identityPath, publication, publication2, publication3, publication4)
        }
    
        class TestProjectPublicationRegistry implements ProjectPublicationRegistry {
    
            Map<Path, List<ProjectComponentPublication>> map = [:]
    
            void register(Path identityPath, ProjectComponentPublication... publications) {
                map.computeIfAbsent(identityPath, { [] }).addAll(publications)
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 01:37:13 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/caching/internal/controller/impl/LifecycleAwareBuildCacheControllerFactory.java

        public LifecycleAwareBuildCacheController createForRootBuild(Path identityPath, BuildCacheControllerFactory buildCacheControllerFactory, InstanceGenerator instanceGenerator) {
            return rootController.init(identityPath, buildCacheControllerFactory, instanceGenerator);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:28:13 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/initialization/BuildStructureOperationProject.java

        private final String name;
        private final String path;
        private final String identityPath;
        private final String projectDir;
        private final String buildFile;
        private final Set<BuildStructureOperationProject> children;
    
        public BuildStructureOperationProject(String name, String path, String identityPath, String projectDir, String buildFile, Set<BuildStructureOperationProject> children) {
            this.name = name;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 22 03:43:27 UTC 2022
    - 3.3K bytes
    - Viewed (0)
Back to top