Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 57 of 57 for identityPath (0.15 sec)

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

        override fun setIncludedBuilds(includedBuilds: MutableCollection<out IncludedBuildInternal>) {
            delegate.setIncludedBuilds(includedBuilds)
        }
    
        override fun getIdentityPath(): Path =
            delegate.identityPath
    
        override fun contextualize(description: String): String =
            delegate.contextualize(description)
    
        override fun getPublicBuildPath(): PublicBuildPath =
            delegate.publicBuildPath
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

            private DetachedDependencyResolutionDomainObjectContext(DomainObjectContext delegate) {
                this.delegate = delegate;
            }
    
            @Override
            public Path identityPath(String name) {
                return delegate.identityPath(name);
            }
    
            @Override
            public Path projectPath(String name) {
                return delegate.projectPath(name);
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultProjectTest.groovy

            }
        }
    
        private DefaultProject defaultProject(String name, ProjectState owner, def parent, File rootDir, ClassLoaderScope scope) {
            _ * owner.identityPath >> (parent == null ? Path.ROOT : parent.identityPath.child(name))
            _ * owner.projectPath >> (parent == null ? Path.ROOT : parent.projectPath.child(name))
            _ * owner.depth >> owner.projectPath.segmentCount()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/AbstractTask.java

        }
    
        @Internal
        @Override
        public String getPath() {
            return identity.projectPath.toString();
        }
    
        @Override
        public Path getIdentityPath() {
            return identity.identityPath;
        }
    
        @Override
        public Task dependsOn(final Object... paths) {
            taskMutator.mutate("Task.dependsOn(Object...)", new Runnable() {
                @Override
                public void run() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 12:20:43 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/DefaultTaskContainerTest.groovy

        private taskIdentityFactory = TestTaskIdentities.factory()
        private taskFactory = Mock(ITaskFactory)
        private project = Mock(ProjectInternal, name: "<project>") {
            identityPath(_) >> { String name ->
                Path.path(":project").child(name)
            }
            projectPath(_) >> { String name ->
                Path.path(":project").child(name)
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 14:36:44 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

        private DefaultConfigurationFactory confFactory(String projectPath, String buildPath) {
            def domainObjectContext = Stub(DomainObjectContext)
            def build = Path.path(buildPath)
            _ * domainObjectContext.identityPath(_) >> { String p -> build.append(Path.path(projectPath)).child(p) }
            _ * domainObjectContext.projectPath(_) >> { String p -> Path.path(projectPath).child(p) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/AccessorsClassPath.kt

            hasher.putHash(requireNotNull(identityFileInputs[CLASSPATH_INPUT_PROPERTY]).hash)
            val identityHash = hasher.hash().toString()
            return UnitOfWork.Identity { identityHash }
        }
    
        override fun getWorkspaceProvider() = workspaceProvider.accessors
    
        override fun getInputFingerprinter() = inputFingerprinter
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 22K bytes
    - Viewed (0)
Back to top