- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 68 for transitively (0.04 sec)
-
okhttp/src/jvmMain/java9/module-info.java
@SuppressWarnings("module") module okhttp3 { requires transitive kotlin.stdlib; requires transitive okio; requires java.logging; exports okhttp3; exports okhttp3.internal to okhttp3.logging, okhttp3.sse, okhttp3.java.net.cookiejar, okhttp3.dnsoverhttps, mockwebserver3, okhttp3.mockwebserver, okhttp3.coroutines, okhttp3.tls; exports okhttp3.internal.concurrent to mockwebserver3, okhttp3.mockwebserver;Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Sun Sep 21 08:30:26 UTC 2025 - 969 bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/project/inheritance/t09/ProjectInheritanceTest.java
import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.junit.jupiter.api.Assertions.assertTrue; /** * Verifies exclusions listed in dependencyManagement are valid for * transitive dependencies. * */ @Deprecated @SuppressWarnings("checkstyle:UnusedLocalVariable") class ProjectInheritanceTest extends AbstractProjectInheritanceTestCase {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/ProjectDependencyGraph.java
* @param transitive A flag whether to retrieve all direct and indirect downstream projects or just the immediate * downstream projects. * @return The downstream projects in the build order, never {@code null}. */ List<MavenProject> getDownstreamProjects(MavenProject project, boolean transitive); /**Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.7K bytes - Viewed (0) -
guava-testlib/src/module-info.java
* the License. */ /** Guava Testlib */ module com.google.common.testlib { requires java.logging; requires transitive com.google.common; requires transitive junit; requires static com.google.errorprone.annotations; requires static com.google.j2objc.annotations; requires static org.jspecify; exports com.google.common.collect.testing;Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Apr 01 21:16:20 UTC 2025 - 1.2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/ProjectDependenciesResolver.java
* under the License. */ package org.apache.maven.project; /** * Resolves the transitive dependencies of a project. * * @deprecated use {@code org.apache.maven.api.services.ProjectBuilder} instead */ @Deprecated(since = "4.0.0") public interface ProjectDependenciesResolver { /** * Resolves the transitive dependencies of a project. *Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 23 10:13:56 UTC 2025 - 1.5K bytes - Viewed (0) -
buildSrc/src/main/kotlin/JavaModules.kt
if (enableValidation) { compileKotlinTask.source(file("src/main/java9")) } // Ignore warnings about using 'requires transitive' on automatic modules. // not needed when compiling with recent JDKs, e.g. 17 options.compilerArgs.add("-Xlint:-requires-transitive-automatic") // Patch the compileKotlinJvm output classes into the compilation so exporting packages works correctly. options.compilerArgs.addAll(Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Sun Sep 21 06:22:22 UTC 2025 - 1.9K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/ProjectDependencyGraphStub.java
} @Override public List<MavenProject> getDownstreamProjects(MavenProject project, boolean transitive) { if (transitive) { throw new RuntimeException("Not implemented yet"); } List<MavenProject> result = new ArrayList<>(); for (Dependency dependency : getDependencies()) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 8.6K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/DefaultLegacyArtifactCollector.java
// whether we are working on a transitive dependency or not. This // allows depMgmt to always override transitive dependencies, while // explicit child override depMgmt (viz. depMgmt should only // provide defaults to children, but should override transitives). // We can do this by calling isChildOfRootNode on the current node.Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 36.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/DependencyResolutionResult.java
*/ DependencyNode getDependencyGraph(); /** * Gets the transitive dependencies of the project that were not excluded by * {@link DependencyResolutionRequest#getResolutionFilter()}. This list is a union of the results from * {@link #getResolvedDependencies()} and {@link #getUnresolvedDependencies()}. * * @return The transitive dependencies, never {@code null}. */ List<Dependency> getDependencies();Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 23 10:13:56 UTC 2025 - 2.7K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/project/inheritance/t10/ProjectInheritanceTest.java
import static org.junit.jupiter.api.Assertions.assertTrue; /** * Verifies scope inheritance of direct and transitive dependencies. * * Should show three behaviors: * * 1. dependencyManagement should override the scope of transitive dependencies. * 2. Direct dependencies should override the scope of dependencyManagement. * 3. Direct dependencies should inherit scope from dependencyManagement when
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 3.7K bytes - Viewed (0)