- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 32 for downstream (0.04 sec)
-
impl/maven-core/src/main/java/org/apache/maven/execution/ProjectDependencyGraph.java
/** * Gets the downstream projects of the specified project. A downstream project is a project that directly or * indirectly depends on the given project. * * @param project The project whose downstream projects should be retrieved, must not be {@code null}. * @param transitive A flag whether to retrieve all direct and indirect downstream projects or just the immediateRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/graph/FilteredProjectDependencyGraph.java
// only A, C, and E are whitelisted duplicates will occur. When scanning projects A, C, and E, those will be // added to 'filtered' as they are whitelisted. When scanning B and D, they are not whitelisted, and since // transitive is false, their downstream dependencies will be added to 'filtered'. E is a downstream dependencyRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Jun 19 16:34:39 UTC 2025 - 6.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/multithreaded/SmartProjectComparator.java
private long calculateWeight(MavenProject project) { // Calculate maximum weight of downstream dependencies long maxDownstreamWeight = dependencyGraph.getDownstreamProjects(project, false).stream() .mapToLong(this::getProjectWeight) .max() .orElse(0L); // Weight = 1 + max downstream weight (similar to Takari Smart Builder) return 1L + maxDownstreamWeight; }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Aug 06 12:03:40 UTC 2025 - 4.6K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/graph/DefaultProjectDependencyGraphTest.java
// // When getting the non-transitive, downstream projects of aProject with a whitelist of aProject, dProject, // and eProject, we expect to get dProject, and eProject with no duplicates. // Before the fix, this would return dProject and eProject twice, once from bProject and once from cProject. As // aProject is whitelisted, it should not be returned as a downstream project for itself. bProject and cProjectRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 10.3K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/builder/multithreaded/SmartProjectComparatorTest.java
comparator = new SmartProjectComparator(dependencyGraph); } @Test void testProjectWeightCalculation() { // Test that projects with longer downstream chains get higher weights // Graph: A -> B,C; B -> X,Y; C -> X,Z MavenProject projectA = ProjectDependencyGraphStub.A; MavenProject projectB = ProjectDependencyGraphStub.B;
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Aug 06 12:03:40 UTC 2025 - 8.9K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/transformation/impl/DefaultConsumerPomBuilder.java
import org.eclipse.aether.RepositorySystemSession; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * Builds consumer POMs from project models, transforming them into a format suitable for downstream consumers. * <p> * A consumer POM is a simplified version of a project's POM that is published for consumption by other projects.
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Nov 27 07:40:26 UTC 2025 - 21.2K bytes - Viewed (0) -
docs/LICENSE
5. Downstream recipients. a. Offer from the Licensor -- Licensed Material. Every recipient of the Licensed Material automatically receives an offer from the Licensor to exercise the Licensed Rights under the terms and conditions of this Public License. b. No downstream restrictions. You may not offer or imposeRegistered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Mon May 10 16:50:06 UTC 2021 - 18.2K bytes - Viewed (0) -
LICENSE
not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Fri Apr 23 18:58:53 UTC 2021 - 33.7K bytes - Viewed (0) -
android/guava/src/com/google/common/reflect/TypeResolver.java
throw new IllegalArgumentException("No type mapping from " + fromClass + " to " + to); } }.visit(from); } /** * Resolves all type variables in {@code type} and all downstream types and returns a * corresponding type with type variables resolved. */ public Type resolveType(Type type) { checkNotNull(type); if (type instanceof TypeVariable) {
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Sep 23 22:30:05 UTC 2025 - 25.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java
// Reactor Make Mode // ---------------------------------------------------------------------- String REACTOR_MAKE_UPSTREAM = "make-upstream"; String REACTOR_MAKE_DOWNSTREAM = "make-downstream"; String REACTOR_MAKE_BOTH = "make-both"; // ---------------------------------------------------------------------- // Artifact repository policiesRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Dec 12 11:02:17 UTC 2024 - 18.6K bytes - Viewed (0)