Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 28 of 28 for findProject (0.47 sec)

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

                        // if the configuration of that project changes, the result of this call might be different
                        val coupledProjects = listOfNotNull(parentPath?.let { referrerProject.findProject(it) })
                        reportCrossProjectTaskAccess(coupledProjects, path)
                    }
                } else {
                    checkCrossProjectTaskAccess(task)
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/internal/EclipseDependenciesCreator.java

                    buildDependencies = ((ComponentArtifactMetadata) artifactId).getBuildDependencies();
                }
                if (!asJavaModule) {
                    Project artifactProject = project.findProject(componentIdentifier.getProjectPath());
                    if (artifactProject != null) {
                        asJavaModule = EclipseClassPathUtil.isInferModulePath(artifactProject);
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  3. subprojects/composite-builds/src/test/groovy/org/gradle/composite/internal/DefaultIncludedBuildRegistryTest.groovy

            modelServices.servicesForBuild(_, _, _) >> Mock(BuildModelControllerServices.Supplier)
            settings.rootProject >> Stub(ProjectDescriptor) {
                getName() >> "root"
            }
            settings.findProject(_) >> {
                it[0] in projects ? Stub(ProjectDescriptor) : null
            }
    
            build.buildIdentifier >> DefaultBuildIdentifier.ROOT
            build.identityPath >> Path.ROOT
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 14:36:04 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/DefaultIncludedBuildRegistry.java

            CompositeStoppable.stoppable(buildsByIdentifier.values()).stop();
        }
    
        private void assertNameDoesNotClashWithRootSubproject(IncludedBuildState includedBuild) {
            if (rootBuild.getProjects().findProject(includedBuild.getIdentityPath()) != null) {
                throw new GradleException("Included build in " + includedBuild.getBuildRootDir() + " has name '" + includedBuild.getName() + "' which is the same as a project of the main build.");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:19 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/build/DefaultBuildLifecycleController.java

                    : null;
            }
    
            @Nullable
            private ProjectInternal findProjectOf(BuildState build, Path projectPath) {
                ProjectState project = build.getProjects().findProject(projectPath);
                return project != null
                    ? project.getMutableModel()
                    : null;
            }
    
            @Nullable
            private BuildState findBuild(Path buildPath) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProjectStateRegistry.java

                }
                return projectState;
            }
    
            @Nullable
            @Override
            public ProjectState findProject(Path projectPath) {
                return projectsByPath.get(projectPath);
            }
    
            @Override
            public Set<? extends ProjectState> getAllProjects() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 21K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/DefaultTaskContainerTest.groovy

            then:
            container.findByPath(":task") == task
        }
    
        void "does not find tasks from unknown projects"() {
            when:
            project.findProject(":unknown") >> null
    
            then:
            container.findByPath(":unknown:task") == null
        }
    
        void "does not find unknown tasks by path"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 14:36:44 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         *
         * @param path The path.
         * @return The project with the given path. Returns null if no such project exists.
         */
        @Nullable
        Project findProject(String path);
    
        /**
         * <p>Locates a project by path. If the path is relative, it is interpreted relative to this project.</p>
         *
         * @param path The path.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
Back to top