Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 55 for identityPath (0.55 sec)

  1. subprojects/core/src/main/java/org/gradle/invocation/DefaultGradle.java

        }
    
        @Override
        public Path getIdentityPath() {
            if (identityPath == null) {
                identityPath = services.get(PublicBuildPath.class).getBuildPath();
            }
            return identityPath;
        }
    
        @Override
        public String contextualize(String description) {
            if (isRootBuild()) {
                return description;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/project/taskfactory/TaskIdentityFactory.java

            return new TaskIdentity<>(
                type,
                name,
                project.projectPath(name),
                project.identityPath(name),
                project.getGradle().getIdentityPath(),
                uniqueId
            );
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  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. 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)
  10. subprojects/core/src/test/groovy/org/gradle/configuration/project/LifecycleProjectEvaluatorTest.groovy

            gradle.startParameter >> new StartParameter()
            project.projectPath >> Path.path(":project1")
            project.path >> project.projectPath.toString()
            project.identityPath >> Path.path(":project1")
            project.stepEvaluationListener(listener, _) >> { listener, step ->
                step.execute(listener)
                null
            }
            project.getOwner() >> mutationState
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top