- Sort Score
- Num 10 results
- Language All
Results 821 - 830 of 855 for Dependencias (0.27 seconds)
-
docs/ko/docs/tutorial/security/oauth2-jwt.md
응답을 위해 토큰 엔드포인트에서 사용될 Pydantic 모델을 정의합니다. 새 액세스 토큰을 생성하기 위한 유틸리티 함수를 생성합니다. {* ../../docs_src/security/tutorial004_an_py310.py hl[4,7,13:15,29:31,82:90] *} ## 의존성 업데이트 { #update-the-dependencies } `get_current_user`가 이전과 동일한 토큰을 받도록 업데이트하되, 이번에는 JWT 토큰을 사용하도록 합니다. 받은 토큰을 디코딩하고 검증한 뒤 현재 사용자를 반환합니다. 토큰이 유효하지 않다면 즉시 HTTP 오류를 반환합니다.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 13K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/query-params-str-validations.md
/// info | 說明 這需搭配 Pydantic 2 或以上版本。😎 /// /// tip | 提示 如果你需要做任何需要與「外部元件」溝通的驗證(例如資料庫或其他 API),應該改用「FastAPI 依賴」(FastAPI Dependencies),你稍後會學到。 這些自訂驗證器適用於只需使用請求中「同一份資料」即可完成的檢查。 /// ### 理解這段程式碼 { #understand-that-code } 重點就是在 `Annotated` 中使用「`AfterValidator` 搭配函式」。如果你願意,可以略過這一節。🤸 ---Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 14.8K bytes - Click Count (0) -
docs/ja/docs/tutorial/security/simple-oauth2.md
これはあなた自身のコードで実装する必要があり、これらのJSONキーを使っていることを確認してください。 仕様に準拠するために、あなた自身が正しく覚えて実装すべきことは、ほぼこれだけです。 それ以外は **FastAPI** が面倒を見てくれます。 /// ## 依存関係の更新 { #update-the-dependencies } ここで依存関係を更新します。 アクティブなユーザーの場合にのみ `current_user` を取得したいとします。 そこで、`get_current_active_user` を依存関係として利用する追加の依存関係 `get_current_active_user` を作成します。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 12.1K bytes - Click Count (0) -
docs/tr/docs/tutorial/query-params-str-validations.md
/// /// tip | İpucu Veritabanı veya başka bir API gibi herhangi bir **harici bileşen** ile iletişim gerektiren bir doğrulama yapmanız gerekiyorsa, bunun yerine **FastAPI Dependencies** kullanmalısınız; onları ileride öğreneceksiniz. Bu custom validator’lar, request’te sağlanan **yalnızca** **aynı veri** ile kontrol edilebilen şeyler içindir. /// ### O Kodu Anlamak { #understand-that-code }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 17.3K bytes - Click Count (0) -
.idea/gradle.xml
<option value="$PROJECT_DIR$/build-logic/uber-plugins" /> <option value="$PROJECT_DIR$/packaging/core-platform" /> <option value="$PROJECT_DIR$/packaging/distributions-dependencies" /> <option value="$PROJECT_DIR$/packaging/distributions-full" /> <option value="$PROJECT_DIR$/packaging/internal-build-reports" /> <option value="$PROJECT_DIR$/packaging/public-api" />Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Mar 27 10:18:20 GMT 2026 - 25.5K bytes - Click Count (0) -
.bazelrc
# Do not do this. If enabled protobuf's core internal target # @com_google_protobuf//python:protobuf_python will start depending on a bunch # of cc_binary shared libraries artifacts, which will mess with how we link # protobuf dependencies ourselves. By default this value is false, but some # projects enable it, which we don't want here. # common --define=use_fast_cpp_protos=true # Make Bazel print out all options from rc files. common --announce_rc
Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Sat Mar 28 04:33:01 GMT 2026 - 58.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/filter/LoadControlFilterTest.java
// ================ /** * Testable subclass that bypasses ComponentUtil dependencies. * This allows testing the filter logic without requiring the DI container. */ private static class TestableLoadControlFilter extends LoadControlFilter { private short cpuPercent = 0;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 06:04:58 GMT 2026 - 33.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/util/ComponentUtil.java
import org.lastaflute.job.JobManager; import org.lastaflute.web.servlet.request.RequestManager; import org.lastaflute.web.servlet.request.ResponseManager; /** * Utility class for accessing system components and dependencies. * Provides centralized access to various helpers, managers, and services throughout the Fess application. */ public final class ComponentUtil {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 30.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java
ComponentUtil.register(languageHelper, "languageHelper"); ComponentUtil.register(fessConfig, "fessConfig"); ComponentUtil.register(ingestFactory, "ingestFactory"); // Inject dependencies indexUpdater.searchEngineClient = searchEngineClient; indexUpdater.dataService = dataService; indexUpdater.urlQueueService = urlQueueService;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 33.6K bytes - Click Count (0) -
docs/ko/docs/tutorial/query-params-str-validations.md
/// info | 정보 이는 Pydantic 2 이상 버전에서 사용할 수 있습니다. 😎 /// /// tip | 팁 데이터베이스나 다른 API 같은 **외부 구성요소**와 통신이 필요한 어떤 종류의 검증이든 해야 한다면, 대신 **FastAPI Dependencies**를 사용해야 합니다. 이에 대해서는 나중에 배우게 됩니다. 이 커스텀 validator는 요청에서 제공된 **같은 데이터만**으로 확인할 수 있는 것들을 위한 것입니다. /// ### 코드 이해하기 { #understand-that-code }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 18.7K bytes - Click Count (0)