- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 268 for proyectos (0.08 sec)
-
okhttp-coroutines/build.gradle.kts
project.applyJavaModules("okhttp3.coroutines") dependencies { api(projects.okhttp) implementation(libs.kotlinx.coroutines.core) api(libs.squareup.okio) api(libs.kotlin.stdlib) testImplementation(libs.kotlin.test.annotations) testImplementation(libs.kotlin.test.common) testImplementation(libs.kotlin.test.junit) testApi(libs.assertk) testImplementation(projects.okhttpTestingSupport)
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Sun Sep 21 06:22:22 UTC 2025 - 937 bytes - Viewed (0) -
samples/tlssurvey/build.gradle.kts
plugins { kotlin("jvm") application id("com.google.devtools.ksp") } application { mainClass.set("okhttp3.survey.RunSurveyKt") } dependencies { implementation(projects.okhttp) implementation(projects.okhttpCoroutines) implementation(libs.conscrypt.openjdk) implementation(libs.retrofit) implementation(libs.converter.moshi) implementation(libs.squareup.moshi) implementation(libs.squareup.moshi.kotlin)Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Sat May 17 05:15:32 UTC 2025 - 518 bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/ContextEnabled.java
* under the License. */ package org.apache.maven.plugin; import java.util.Map; /** * Interface to allow <code>Mojos</code> to communicate with each others <code>Mojos</code>, other than * project's source root and project's attachment.<br> * The plugin manager would pull the context out of the plugin container context, and populate it into the Mojo. * */ public interface ContextEnabled { /**
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/graph/ProjectSelector.java
"The requested required projects " + requiredSelectors + " do not exist.", request.getPom()); } else { String optionalSelectors = unresolvedSelectors.stream() .map(ProjectActivation.ProjectActivationSettings::selector) .collect(Collectors.joining(", ")); LOGGER.info("The requested optional projects {} do not exist.", optionalSelectors);
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 11 16:38:19 UTC 2025 - 7.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/DuplicateProjectException.java
* @param collisions The POM files of the projects that collided, indexed by their g:a:v, may be {@code null}. */ public DuplicateProjectException(String message, Map<String, List<File>> collisions) { super(message, (File) null); this.collisions = (collisions != null) ? collisions : new LinkedHashMap<>(); } /** * Gets the POM files of the projects that collided. *Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.9K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/BuildListCalculator.java
for (TaskSegment taskSegment : taskSegments) { List<MavenProject> projects; if (taskSegment.isAggregating()) { projects = Collections.singletonList(rootProject); } else { projects = session.getProjects(); } for (MavenProject project : projects) { ClassLoader tccl = Thread.currentThread().getContextClassLoader();Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlan.java
private final Map<MavenProject, List<MavenProject>> projects; private final Map<String, String> aliases = new HashMap<>(); private volatile Set<String> duplicateIds; private volatile List<BuildStep> sortedNodes; BuildPlan() { this.projects = null; } public BuildPlan(Map<MavenProject, List<MavenProject>> projects) { this.projects = projects; }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Mar 28 12:11:25 UTC 2025 - 6.1K bytes - Viewed (0) -
util/gradle_integration_tests.sh
#!/bin/bash set -eu ./mvnw clean install --projects '!guava-testlib,!guava-tests,!guava-bom,!guava-gwt' -Dmaven.test.skip=true -Dmaven.javadoc.skip=true ./mvnw clean install --projects '!guava-testlib,!guava-tests,!guava-bom' -Dmaven.test.skip=true -Dmaven.javadoc.skip=true -f android # We run this separately so that its change to the default toolchain doesn't affect anything else.
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Jan 02 19:24:12 UTC 2025 - 1.9K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/ProjectSorter.java
/** * Sort a list of projects. * <ul> * <li>collect all the vertices for the projects that we want to build.</li> * <li>iterate through the deps of each project and if that dep is within * the set of projects we want to build then add an edge, otherwise throw * the edge away because that dependency is not within the set of projects * we are trying to build. we assume a closed set.</li>Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 10.3K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/AbstractCoreMavenComponentTestCase.java
.setUserProperties(new Properties()); initRepoSession(request, configuration); List<MavenProject> projects = new ArrayList<>(); if (pom != null) { MavenProject project = projectBuilder.build(pom, configuration).getProject(); projects.add(project); if (includeModules) { for (String module : project.getModules()) {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 20:01:00 UTC 2025 - 12.1K bytes - Viewed (0)