Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 95 for identityPath (0.15 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/project/ProjectStateRegistry.java

        ProjectState stateFor(ProjectComponentIdentifier identifier) throws IllegalArgumentException;
    
        /**
         * Locates the state object that owns the project with the identity path.
         */
        ProjectState stateFor(Path identityPath) throws IllegalArgumentException;
    
        /**
         * Locates the state objects for all projects of the given build.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/main/java/org/gradle/swiftpm/plugins/SwiftPackageManagerExportPlugin.java

                        ProjectDependency projectDependency = (ProjectDependency) dependency;
                        Path identityPath = ((ProjectDependencyInternal) projectDependency).getIdentityPath();
                        SwiftPmTarget identifier = publicationResolver.resolveComponent(SwiftPmTarget.class, identityPath);
                        target.getRequiredTargets().add(identifier.getTargetName());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  3. 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)
  4. build-logic/jvm/src/main/kotlin/gradlebuild/kotlin/tasks/ParameterNamesIndex.kt

            sources.asSequence().mapNotNull { addSource(it) }
    
        private
        fun isolatedClassLoaderFor(classpath: Set<File>) =
            classLoaderFactory.createIsolatedClassLoader(identityPath.path, DefaultClassPath.of(classpath)) as URLClassLoader
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 4K bytes
    - Viewed (0)
  5. 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)
  6. subprojects/core/src/main/java/org/gradle/internal/service/scopes/ProjectScopeServices.java

            public ScriptScopedContext(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 09:21:42 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  7. subprojects/composite-builds/src/test/groovy/org/gradle/composite/internal/DefaultIncludedBuildTaskGraphParallelTest.groovy

                services.stop()
            }
            return result
        }
    
        BuildServices build(TreeServices services, BuildIdentifier identifier) {
            def identityPath = Stub(Path)
            def gradle = Stub(GradleInternal) {
                getIdentityPath() >> identityPath
            }
            return new BuildServices(services, identifier, gradle)
        }
    
        TaskInternal task(BuildServices services, Node dependsOn) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ScopeIdsFixture.groovy

                    }
    
                    @TaskAction def collect() {
                        def gradle = services.get(Gradle)
                        def scopeIds = [
                            "\${gradle.identityPath}": [
                                buildInvocation: services.get(${BuildInvocationScopeId.name}).id.asString(),
                                workspace: services.get(${WorkspaceScopeId.name}).id.asString(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildIncludeCycleIntegrationTest.groovy

            and:
            canRunFromCache(buildA, 'help')
        }
    
        def "included root build is only configured one time"() {
            given:
            buildA.buildFile << """
                println("Configuring \$identityPath")
            """
            buildB.settingsFile << "includeBuild '../buildA'"
    
            when:
            execute(buildA, 'help')
    
            then:
            output.count("Configuring :") == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Aug 19 21:32:57 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/dependencysubstitution/DefaultDependencySubstitutionSpec.groovy

        def "can specify target project"() {
            def projectState = Mock(ProjectState)
            projectState.componentIdentifier >> Stub(ProjectComponentIdentifier)
            def project = Mock(ProjectInternal)
            project.identityPath >> Path.path(":id:path")
            project.projectPath >> Path.path(":bar")
            project.name >> "bar"
            project.owner >> projectState
    
            when:
            details.useTarget(project)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.7K bytes
    - Viewed (0)
Back to top