Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 44 for identityPath (0.26 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/software/maven/src/test/groovy/org/gradle/api/publish/maven/internal/publication/DefaultMavenPublicationTest.groovy

            projectDependency.getGroup() >> "pub-group"
            projectDependency.getName() >> "pub-name"
            projectDependencyResolver.resolveComponent(ModuleVersionIdentifier, projectDependency.identityPath) >> DefaultModuleVersionIdentifier.newId("pub-group", "pub-name", "pub-version")
    
            when:
            publication.from(componentWithDependency(projectDependency))
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 01:33:41 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/tasks/DefaultTaskContainer.java

            }
            return new TaskCreationException(String.format("Could not create task '%s'.", project.identityPath(name)), cause);
        }
    
        private static BuildOperationDescriptor.Builder realizeDescriptor(TaskIdentity<?> identity, boolean replacement, boolean eager) {
            return BuildOperationDescriptor.displayName("Realize task " + identity.identityPath)
                .details(new RealizeDetails(identity, replacement, eager));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 09:54:40 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dependencies/DefaultProjectDependency.java

        }
    
        @Override
        public String toString() {
            return "DefaultProjectDependency{" + "identityPath='" + getIdentityPath() + '\'' + ", configuration='"
                + (getTargetConfiguration() == null ? Dependency.DEFAULT_CONFIGURATION : getTargetConfiguration()) + '\'' + '}';
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 13:59:13 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. platforms/extensibility/plugin-development/src/test/groovy/org/gradle/plugin/devel/plugins/JavaGradlePluginPluginTest.groovy

                    b { id = "b.plugin" }
                }
            }
    
            then:
            def publications = project.services.get(ProjectPublicationRegistry).getPublications(PluginPublication, project.identityPath)
            publications.size() == 2
            publications[0].pluginId == DefaultPluginId.of("a.plugin")
            publications[1].pluginId == DefaultPluginId.of("b.plugin")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 11.5K bytes
    - Viewed (0)
Back to top