- Sort Score
- Num 10 results
- Language All
Results 161 - 170 of 202 for injecting (0.14 seconds)
-
docs/ko/docs/tutorial/dependencies/index.md
**FastAPI**는 아주 강력하지만 직관적인 **<dfn title="컴포넌트, 리소스, 제공자, 서비스, 인젝터블로도 알려져 있음">의존성 주입</dfn>** 시스템을 가지고 있습니다. 이는 사용하기 아주 쉽게 설계했으며, 어느 개발자나 다른 컴포넌트와 **FastAPI**를 쉽게 통합할 수 있도록 만들었습니다. ## "의존성 주입"은 무엇입니까? { #what-is-dependency-injection } **"의존성 주입"**은 프로그래밍에서 여러분의 코드(이 경우, *경로 처리 함수*)가 작동하고 사용하는 데 필요로 하는 것, 즉 "의존성"을 선언할 수 있는 방법을 의미합니다. 그 후에, 시스템(이 경우 **FastAPI**)은 여러분의 코드가 요구하는 의존성을 제공하기 위해 필요한 모든 작업을 처리합니다.(의존성을 "주입"합니다)Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 11.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java
public SpnegoAuthenticator() { // do nothing } /** * Initializes the SPNEGO authenticator and registers it with the SSO manager. * This method is called automatically after dependency injection is complete. */ @PostConstruct public void init() { if (logger.isDebugEnabled()) { logger.debug("Initializing {}", this.getClass().getSimpleName()); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 08:18:23 GMT 2026 - 18.2K bytes - Click Count (3) -
guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java
* of this queue less the current {@code size} of this queue. * * <p>Note that you cannot always tell if an attempt to insert an element will succeed by * inspecting {@code remainingCapacity} because it may be the case that another thread is about to * insert or remove an element. */ @CanIgnoreReturnValue @Override public int remainingCapacity() {Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 23 21:06:42 GMT 2026 - 22.4K bytes - Click Count (0) -
docs/ja/docs/features.md
* クエリパラメータ。 * クッキー、など。 さらに、Starlette のすべてのセキュリティ機能(**セッション Cookie** を含む)も利用できます。 これらはすべて再利用可能なツールやコンポーネントとして構築されており、システム、データストア、リレーショナル/NoSQL データベース等と容易に統合できます。 ### 依存性の注入 { #dependency-injection } FastAPI には、非常に使いやすく、かつ非常に強力な <dfn title='別名: コンポーネント、リソース、サービス、プロバイダー'><strong>依存性の注入</strong></dfn> システムがあります。 * 依存関係は依存関係を持つこともでき、階層または **依存関係の「グラフ」** を作成できます。 * すべてフレームワークによって**自動的に処理**されます。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 11.6K bytes - Click Count (0) -
okhttp/src/jvmTest/kotlin/okhttp3/CookieTest.kt
@Test fun ipv6AddressMalformed() { val cookie = parse("http://[::1]/".toHttpUrl(), "a=b; domain=::2::2") assertThat(cookie!!.domain).isEqualTo("::1") } /** * These public suffixes were selected by inspecting the publicsuffix.org list. It's possible they * may change in the future. If this test begins to fail, please double check they are still * present in the public suffix list. */ @Test fun domainIsPublicSuffix() {
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Sat Nov 01 12:18:11 GMT 2025 - 24.4K bytes - Click Count (0) -
docs/de/docs/index.md
* Ein sehr leistungsfähiges und einfach zu bedienendes System für **<dfn title="auch bekannt als Komponenten, Ressourcen, Provider, Services, Injectables">Dependency Injection</dfn>**. * Sicherheit und Authentifizierung, einschließlich Unterstützung für **OAuth2** mit **JWT-Tokens** und **HTTP Basic** Authentifizierung.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:58:09 GMT 2026 - 23.6K bytes - Click Count (1) -
src/main/java/org/codelibs/fess/ldap/LdapManager.java
return fessConfig.getRoleSearchGroupPrefix(); } } return null; } /** * Escapes special characters in an LDAP search filter to prevent LDAP injection attacks. * * @param filter the LDAP search filter to escape (null is treated as empty string) * @return the escaped filter string safe for use in LDAP queries (empty string if filter is null)
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Jan 02 08:06:20 GMT 2026 - 85.2K bytes - Click Count (0) -
guava/src/com/google/common/collect/ImmutableMultimap.java
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Mar 08 16:16:42 GMT 2026 - 28.1K bytes - Click Count (0) -
scripts/docs.py
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 17:46:10 GMT 2026 - 25.4K bytes - Click Count (0) -
fastapi/dependencies/utils.py
# Handle non-param type annotations like Request # Only apply special handling when there's no explicit Depends - if there's a Depends, # the dependency will be called and its return value used instead of the special injection if depends is None and lenient_issubclass( type_annotation, ( Request, WebSocket, HTTPConnection, Response,Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sun Mar 15 11:44:39 GMT 2026 - 38.7K bytes - Click Count (3)