- Sort Score
- Result 10 results
- Languages All
Results 381 - 390 of 665 for Dependencias (0.07 sec)
-
buildscripts/checkdeps.sh
#!/usr/bin/env bash # _init() { shopt -s extglob ## Minimum required versions for build dependencies GIT_VERSION="1.0" GO_VERSION="1.16" OSX_VERSION="10.8" KNAME=$(uname -s) ARCH=$(uname -m) case "${KNAME}" in SunOS) ARCH=$(isainfo -k) ;; esac } ## FIXME: ## In OSX, 'readlink -f' option does not exist, hence ## we have our own readlink -f behavior here.Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Sun Jun 08 16:12:05 UTC 2025 - 3.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleDependencyResolver.java
} private boolean areAllDependenciesInReactor( Collection<MavenProject> projects, Collection<Dependency> dependencies) { Set<String> projectKeys = getReactorProjectKeys(projects); for (Dependency dependency : dependencies) { org.eclipse.aether.artifact.Artifact a = dependency.getArtifact();Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 15.6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/multithreaded/SmartProjectComparator.java
* the same weight, they are ordered by project ID for deterministic results. * * <p><b>Example:</b> * <p>Consider projects with dependencies: A → B → D, A → C → D * <ul> * <li>Project D: weight = 1 (no downstream dependencies)</li> * <li>Project B: weight = 2 (1 + max(D=1))</li> * <li>Project C: weight = 2 (1 + max(D=1))</li> * <li>Project A: weight = 3 (1 + max(B=2, C=2))</li> * </ul>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Aug 06 12:03:40 UTC 2025 - 4.6K bytes - Viewed (0) -
api/maven-api-spi/pom.xml
<version>4.1.0-SNAPSHOT</version> </parent> <artifactId>maven-api-spi</artifactId> <name>Maven 4 API :: SPI</name> <description>Maven 4 API - Maven SPI.</description> <dependencies> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-api-annotations</artifactId> </dependency> <dependency> <groupId>org.apache.maven</groupId>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sun Jun 29 22:37:39 UTC 2025 - 1.8K bytes - Viewed (0) -
pom.xml
<releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> </repositories> <dependencies> <dependency> <groupId>com.ibm.icu</groupId> <artifactId>icu4j</artifactId> <version>${icu4j.version}</version> </dependency> <dependency> <groupId>org.codelibs</groupId>
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Sat Dec 20 06:20:25 UTC 2025 - 4.3K bytes - Viewed (0) -
compat/maven-model/src/test/resources/xml/pom.xml
<version>4.0.0-alpha-1-SNAPSHOT</version> </parent> <artifactId>maven-model</artifactId> <name>Maven Model</name> <description>Model for Maven POM (Project Object Model)</description> <dependencies> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-api-model</artifactId> <version>4.0.0-alpha-1-SNAPSHOT</version> </dependency> <dependency>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.2K bytes - Viewed (0) -
impl/maven-core/src/main/mdo/extension.mdo
<name>ExtensionDescriptor</name> <description><![CDATA[ Extension descriptor, stored in <code>META-INF/maven/extension.xml</code> in an extension's jar artifact to precisely control parts of the extension and dependencies to expose in the API class loader. Maven uses Plexus Classworlds to build the class loader hierarchy, therefore some concepts used in this extensions stem from Plexus Classworlds originally.
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.5K bytes - Viewed (0) -
okhttp/src/androidMain/kotlin/okhttp3/internal/platform/PlatformInitializer.kt
*/ class PlatformInitializer : Initializer<Platform> { override fun create(context: Context): Platform { PlatformRegistry.applicationContext = context return Platform.get() } override fun dependencies(): List<Class<Initializer<*>>> = listOf()
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Tue Dec 31 14:50:53 UTC 2024 - 1K bytes - Viewed (1) -
samples/simple-client/build.gradle.kts
plugins { kotlin("jvm") } dependencies { implementation(projects.okhttp) implementation(libs.squareup.moshi)Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Tue Feb 15 23:38:32 UTC 2022 - 118 bytes - Viewed (0) -
samples/slack/build.gradle.kts
plugins { kotlin("jvm") } dependencies { implementation(projects.okhttp) implementation(projects.mockwebserver) implementation(libs.squareup.moshi)Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Sat May 10 11:15:14 UTC 2025 - 159 bytes - Viewed (0)