- Sort Score
- Num 10 results
- Language All
Results 421 - 430 of 1,079 for dependencia (0.09 seconds)
-
ci/official/requirements_updater/README.md
previous build will be preserved and reused for the subsequent builds. ### Specifying Python dependencies During bazel build all TensorFlow's Python dependencies are pinned to their specific versions. This is necessary to ensure reproducibility of the build. The pinned versions of the full transitive closure of TensorFlow's dependencies together with their corresponding hashes are specified in
Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Sat Jun 29 00:19:18 GMT 2024 - 3K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/UpdateShasTask.java
Set<File> shaFiles = parentTask.get().getShaFiles(); for (File dependency : parentTask.get().getDependencies()) { String jarName = dependency.getName(); File shaFile = parentTask.get().getShaFile(jarName); if (shaFile.exists() == false) { createSha(dependency, jarName, shaFile); } else { shaFiles.remove(shaFile); }
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 2.6K bytes - Click Count (0) -
docs/ja/docs/tutorial/bigger-applications.md
* これらすべての *path operations* では、実行前に `dependencies` のリストが評価・実行されます。 * 特定の *path operation* に依存関係を宣言した場合は、**それらも実行されます**。 * ルーターの依存関係が先に実行され、その後に[デコレータ内の `dependencies`](dependencies/dependencies-in-path-operation-decorators.md)、次に通常のパラメータ依存関係が続きます。 * [`scopes` を伴う `Security` 依存関係](../advanced/security/oauth2-scopes.md) を追加することもできます。 /// tip | 豆知識Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 22.8K bytes - Click Count (0) -
docs_src/bigger_applications/app_an_py310/main.py
from fastapi import Depends, FastAPI from .dependencies import get_query_token, get_token_header from .internal import admin from .routers import items, users app = FastAPI(dependencies=[Depends(get_query_token)]) app.include_router(users.router) app.include_router(items.router) app.include_router( admin.router, prefix="/admin", tags=["admin"], dependencies=[Depends(get_token_header)],
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Feb 12 13:19:43 GMT 2026 - 552 bytes - Click Count (0) -
compat/maven-compat/src/site/apt/index.apt
Plugins should avoid these classes and be updated to use only Maven3 dependencies (and require Maven3): see {{{https://cwiki.apache.org/confluence/display/MAVEN/Plugin+migration+to+Maven3+dependencies} Plugin migration to Maven3 dependencies}}Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 1.3K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/graph/DefaultProjectDependencyGraph.java
private final Map<MavenProject, Integer> order; private final Map<String, MavenProject> projects; /** * Creates a new project dependency graph based on the specified projects. * * @param projects The projects to create the dependency graph with * @throws DuplicateProjectException * @throws CycleDetectedException */Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 5.8K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyCoordinatesFactoryRequest.java
return builder() .session(requireNonNull(session, "session cannot be null")) .groupId(requireNonNull(dependency, "dependency").getGroupId()) .artifactId(dependency.getArtifactId()) .version(dependency.getVersion().toString()) .classifier(dependency.getClassifier())
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 12.1K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/ArtifactMetadata.java
this.artifactExists = artifactExists; } public Collection<ArtifactMetadata> getDependencies() { return dependencies; } public void setDependencies(Collection<ArtifactMetadata> dependencies) { this.dependencies = dependencies; } public String getArtifactUri() { return artifactUri; } public void setArtifactUri(String artifactUri) {Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Sun Mar 30 23:08:36 GMT 2025 - 8K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/resolution/ModelResolver.java
/** * Tries to resolve the POM for the specified dependency coordinates possibly updating {@code dependency}. * <p> * Unlike the {@link #resolveModel(java.lang.String, java.lang.String, java.lang.String)} method, this method * supports version ranges and updates the given {@code dependency} instance to match the returned * {@code ModelSource}. If {@code dependency} declares a version range, the version corresponding to the returnedCreated: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Sat Apr 05 11:52:05 GMT 2025 - 5.8K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/InternalTestArtifactExtension.java
}); DependencyHandler dependencies = project.getDependencies(); project.getPlugins().withType(JavaPlugin.class, javaPlugin -> { Dependency projectDependency = dependencies.create(project); dependencies.add(sourceSet.getApiElementsConfigurationName(), projectDependency); dependencies.add(sourceSet.getRuntimeElementsConfigurationName(), projectDependency); });Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Wed Sep 29 07:15:49 GMT 2021 - 2.8K bytes - Click Count (0)