Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 36 of 36 for identityPath (0.12 sec)

  1. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/settings/SoftwareTypeConventionIntegrationTest.groovy

        }
    
        static String projectDependency(String projectPath) {
            return "DefaultProjectDependency{identityPath='${projectPath}', configuration='default'}"
        }
    
        static String getDeclarativeScriptThatConfiguresOnlyTestSoftwareType(String configuration="") {
            return """
                testSoftwareType {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 12:50:35 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  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)
Back to top