- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 153 for proyectos (0.04 sec)
-
docs/es/docs/deployment/cloud.md
Trae la misma experiencia de desarrollador de construir aplicaciones con FastAPI a desplegarlas en la nube. 🎉 FastAPI Cloud es el sponsor principal y proveedor de financiamiento de los proyectos open source *FastAPI and friends*. ✨ ## Proveedores de Nube - Sponsors { #cloud-providers-sponsors }Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Tue Dec 16 16:33:45 UTC 2025 - 1.4K bytes - Viewed (0) -
docs/es/docs/deployment/fastapicloud.md
* HTTPS * Replicación, con autoescalado basado en requests * etc. FastAPI Cloud es el sponsor principal y proveedor de financiación de los proyectos open source de *FastAPI and friends*. ✨ ## Desplegar en otros proveedores de la nube { #deploy-to-other-cloud-providers }Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Tue Dec 16 16:16:35 UTC 2025 - 2.1K bytes - Viewed (0) -
docs/es/docs/history-design-future.md
Está siendo elegido sobre alternativas anteriores por adaptarse mejor a muchos casos de uso. Muchos desarrolladores y equipos ya dependen de **FastAPI** para sus proyectos (incluyéndome a mí y a mi equipo). Pero aún así, hay muchas mejoras y funcionalidades por venir. **FastAPI** tiene un gran futuro por delante.
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 10:15:01 UTC 2025 - 4.7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/multithreaded/SmartProjectComparator.java
/** * Smart project comparator that orders projects based on critical path analysis. * Projects with longer downstream dependency chains are prioritized to maximize * parallel execution efficiency. * * <p>The algorithm calculates a weight for each project as: * weight = 1 + max(downstream_project_weights) * * <p>Projects are then sorted by weight in descending order, ensuring that
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/site/apt/inheritance.apt
Minimum Element-Set for a Project POM In order to furnish a basic set of information which we need to distinguish one project from another, maven requires a minimum set of elements to be specified in each project's pom.xml. - [modelVersion] tells maven which version of the object model this project is compliant with (to support future legacy concerns)Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.5K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanCreatorTest.java
p2.setArtifactId("p2"); Map<MavenProject, List<MavenProject>> projects = new HashMap<>(); projects.put(p1, Collections.emptyList()); projects.put(p2, Collections.singletonList(p1)); BuildPlan plan = calculateLifecycleMappings(projects, "verify"); plan.then(calculateLifecycleMappings(projects, "install")); Stream.of(p1, p2).forEach(project -> {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Mar 28 15:21:19 UTC 2025 - 7.9K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/graph/DefaultProjectDependencyGraph.java
* * @param projects The projects to create the dependency graph with * @throws DuplicateProjectException * @throws CycleDetectedException */ public DefaultProjectDependencyGraph(Collection<MavenProject> projects) throws CycleDetectedException, DuplicateProjectException { this(projects, projects); } /**Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 5.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/ProjectDependencyGraph.java
/** * Describes the interdependencies between projects in the reactor. * * @since 3.0-alpha */ public interface ProjectDependencyGraph { /** * Gets all collected projects. * * @return All collected projects. * * @since 3.5.0 */ List<MavenProject> getAllProjects(); /**Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.7K bytes - Viewed (0) -
samples/compare/build.gradle.kts
plugins { kotlin("jvm") } dependencies { testImplementation(projects.okhttp) testImplementation(projects.mockwebserver3) testImplementation(projects.mockwebserver3Junit5) testImplementation(projects.okhttpTls) testImplementation(projects.okhttpTestingSupport) testImplementation(libs.httpClient5) testImplementation(libs.jettyClient) testImplementation(libs.junit) testImplementation(libs.assertk) }Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Wed Jun 18 12:28:21 UTC 2025 - 473 bytes - Viewed (0) -
okhttp-logging-interceptor/build.gradle.kts
) project.applyJavaModules("okhttp3.logging") dependencies { "friendsApi"(projects.okhttp) testImplementation(libs.junit) testImplementation(projects.mockwebserver3) testImplementation(projects.mockwebserver3Junit5) testImplementation(projects.okhttpTestingSupport) testImplementation(projects.okhttpTls) testImplementation(libs.assertk) } mavenPublishing {
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Sun Sep 21 06:22:22 UTC 2025 - 776 bytes - Viewed (0)