- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for getRootSchedulableBuilds (0.11 seconds)
-
impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/builder/multithreaded/ConcurrencyDependencyGraphTest.java
// start assertEquals(0, graph.getFinishedProjects().size()); assertEquals(6, graph.getNumberOfBuilds()); List<MavenProject> rootSchedulableBuilds = graph.getRootSchedulableBuilds(); // only Project.A has no dependencies assertEquals(1, rootSchedulableBuilds.size()); assertEquals( ProjectDependencyGraphStub.A, rootSchedulableBuilds.iterator().next());Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 3.8K bytes - Click Count (0) -
impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/ConcurrencyDependencyGraphTest.java
ConcurrencyDependencyGraph graph = new ConcurrencyDependencyGraph(getProjectBuildList(session), dependencyGraph); final List<MavenProject> projectBuilds = graph.getRootSchedulableBuilds(); assertEquals(1, projectBuilds.size()); assertEquals(A, projectBuilds.iterator().next()); final List<MavenProject> subsequent = graph.markAsFinished(A);Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 5K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/multithreaded/ConcurrencyDependencyGraph.java
* * @return A list of all the initial builds, ordered by priority (critical path first) */ public List<MavenProject> getRootSchedulableBuilds() { Set<MavenProject> result = new LinkedHashSet<>(); for (ProjectSegment projectBuild : projectBuilds) { if (projectDependencyGraphCreated: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Jul 23 17:27:08 GMT 2025 - 5.9K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/multithreaded/MultiThreadedBuilder.java
.map(Map.Entry::getKey) .collect(Collectors.toSet()); // schedule independent projects (ordered by critical path priority) for (MavenProject mavenProject : analyzer.getRootSchedulableBuilds()) { ProjectSegment projectSegment = projectBuildList.get(mavenProject); logger.debug("Scheduling: {}", projectSegment.getProject()); Callable<ProjectSegment> cb =
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Jul 16 03:42:09 GMT 2025 - 8.9K bytes - Click Count (0)