- Sort Score
- Num 10 results
- Language All
Results 221 - 230 of 708 for dependency_c (0.08 seconds)
-
fastapi/param_functions.py
] = None, *, use_cache: Annotated[ bool, Doc( """ By default, after a dependency is called the first time in a request, if the dependency is declared again for the rest of the request (for example if the dependency is needed by several dependencies), the value will be re-used for the rest of the request.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sun Mar 15 11:44:39 GMT 2026 - 68K bytes - Click Count (0) -
docs/ja/docs/tutorial/dependencies/index.md
**FastAPI** は非常に強力でありながら直感的な **<dfn title="別名: コンポーネント、リソース、プロバイダ、サービス、インジェクタブル">依存性注入</dfn>** システムを持っています。 それは非常にシンプルに使用できるように設計されており、開発者が他のコンポーネント **FastAPI** と統合するのが非常に簡単になるように設計されています。 ## 「Dependency Injection」とは { #what-is-dependency-injection } **「Dependency Injection」** とは、プログラミングにおいて、コード(この場合は、*path operation 関数*)が動作したり使用したりするために必要なもの(「依存関係」)を宣言する方法があることを意味します: そして、そのシステム(この場合は、**FastAPI**)は、必要な依存関係をコードに提供するために必要なことは何でも行います(依存関係を「注入」します)。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 11.9K bytes - Click Count (0) -
guava/module.json
} }, "variants": [ { "name": "${variant.jvmEnvironmentVariantName}ApiElements", "attributes": { "org.gradle.category": "library", "org.gradle.dependency.bundling": "external", "org.gradle.jvm.version": "8", "org.gradle.jvm.environment": "${variant.jvmEnvironment}", "org.gradle.libraryelements": "jar", "org.gradle.usage": "java-api" },
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Sep 29 19:50:42 GMT 2025 - 7.5K bytes - Click Count (0) -
docs/uk/docs/tutorial/dependencies/sub-dependencies.md
Ви можете створювати залежності, які мають підзалежності. Вони можуть бути настільки глибокими, наскільки потрібно. FastAPI подбає про їх розв'язання. ## Перша залежність «dependable» { #first-dependency-dependable } Можна створити першу залежність («dependable») так: {* ../../docs_src/dependencies/tutorial005_an_py310.py hl[8:9] *}Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Feb 14 08:43:14 GMT 2026 - 5.7K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/DependencyLicensesPrecommitPlugin.java
.getByName(CompileOnlyResolvePlugin.RESOLVEABLE_COMPILE_ONLY_CONFIGURATION_NAME); t.setDependencies( runtimeClasspath.fileCollection(dependency -> dependency instanceof ProjectDependency == false).minus(compileOnly) ); }); // we also create the updateShas helper task that is associated with dependencyLicenses
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 2.1K bytes - Click Count (0) -
pom.xml
</plugin> </plugins> </build> <dependencies> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.19.0</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> </dependency> </dependencies>
Created: Thu Apr 02 15:34:12 GMT 2026 - Last Modified: Sat Dec 20 04:17:15 GMT 2025 - 4.7K bytes - Click Count (0) -
README.md
- Minimal dependencies (only Apache Commons IO) ## Installation ### Maven Add the dependency to your `pom.xml` (replace `x.y.z` with the latest version): ```xml <dependency> <groupId>org.codelibs</groupId> <artifactId>curl4j</artifactId> <version>x.y.z</version> </dependency> ``` See [Maven Central](https://repo1.maven.org/maven2/org/codelibs/curl4j/) for available versions. ### Gradle
Created: Thu Apr 02 15:34:12 GMT 2026 - Last Modified: Thu Nov 20 13:34:13 GMT 2025 - 2.5K bytes - Click Count (0) -
docs/es/docs/tutorial/dependencies/sub-dependencies.md
Puedes crear dependencias que tengan **sub-dependencias**. Pueden ser tan **profundas** como necesites. **FastAPI** se encargará de resolverlas. ## Primera dependencia "dependable" { #first-dependency-dependable } Podrías crear una primera dependencia ("dependable") así: {* ../../docs_src/dependencies/tutorial005_an_py310.py hl[8:9] *}
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Feb 13 13:41:41 GMT 2026 - 3.9K bytes - Click Count (0) -
compat/maven-model/src/test/resources/xml/pom.xml
<dependencies> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-api-model</artifactId> <version>4.0.0-alpha-1-SNAPSHOT</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-xml</artifactId> <version>4.0.0-alpha-1-SNAPSHOT</version> </dependency> </dependencies> <build> <plugins>
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 4.2K bytes - Click Count (0) -
fastapi/.agents/skills/fastapi/references/dependencies.md
# Dependency Injection Use dependencies when: * They can't be declared in Pydantic validation and require additional logic * The logic depends on external resources or could block in any other way * Other dependencies need their results (it's a sub-dependency) * The logic can be shared by multiple endpoints to do things like error early, authentication, etc. * They need to handle cleanup (e.g., DB sessions, file handles), using dependencies with `yield`
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sun Mar 01 10:05:57 GMT 2026 - 3.2K bytes - Click Count (0)