- Sort Score
- Num 10 results
- Language All
Results 201 - 210 of 369 for Badger (0.05 seconds)
-
docs/zh/docs/_llm-test.md
Some text /// /// note | 技术细节 Some text /// /// check | 检查 Some text /// /// tip | 提示 Some text /// /// warning | 警告 Some text /// /// danger | 危险 Some text /// //// //// tab | 信息 选项卡以及 `Info`/`Note`/`Warning`/等提示块,应在竖线(`|`)后添加其标题的翻译。 参见 `scripts/translate.py` 中通用提示的 `### Special blocks` 与 `### Tab blocks` 部分。 ////
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 10.7K bytes - Click Count (0) -
docs/ko/docs/index.md
<img src="https://github.com/fastapi/fastapi/actions/workflows/test.yml/badge.svg?event=push&branch=master" alt="Test"> </a> <a href="https://coverage-badge.samuelcolvin.workers.dev/redirect/fastapi/fastapi"> <img src="https://coverage-badge.samuelcolvin.workers.dev/fastapi/fastapi.svg" alt="Coverage"> </a> <a href="https://pypi.org/project/fastapi">
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 23.4K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/nego/Smb2NegotiateResponseInputValidationTest.java
// Negotiate context offset (0 for non-3.1.1) SMBUtil.writeInt4(0, buffer, 60); return buffer; } /** * Creates a larger buffer suitable for testing negotiate contexts. */ private byte[] createLargeBufferForContexts() { byte[] buffer = new byte[1024]; // Large enough for contexts // Copy basic structureCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 15.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/crawler/serializer/DataSerializer.java
* By explicitly registering classes, we prevent deserialization of arbitrary classes * which could lead to remote code execution vulnerabilities through gadget chains. * </p> * * @param kryo the Kryo instance to register classes with */ protected void registerClasses(final Kryo kryo) { // Primitive types and wrappersCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Jan 10 01:54:09 GMT 2026 - 10.5K bytes - Click Count (3) -
docs/zh-hant/docs/tutorial/extra-models.md
# 額外的模型 { #extra-models } 延續前一個範例,通常會有不只一個彼此相關的模型。 對使用者模型尤其如此,因為: * 「輸入模型」需要能包含密碼。 * 「輸出模型」不應包含密碼。 * 「資料庫模型」通常需要儲存雜湊後的密碼。 /// danger 切勿儲存使用者的明文密碼。務必只儲存可供驗證的「安全雜湊」。 若你還不清楚,稍後會在[安全性章節](security/simple-oauth2.md#password-hashing)學到什麼是「密碼雜湊」。 /// ## 多個模型 { #multiple-models } 以下是模型大致長相、與其密碼欄位以及它們被使用的位置: {* ../../docs_src/extra_models/tutorial001_py310.py hl[7,9,14,20,22,27:28,31:33,38:39] *}Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 6.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/crawler/serializer/DataSerializerTest.java
} } /** * Security test: Custom class should be rejected. * This test verifies that arbitrary user-defined classes cannot be serialized, * which is important for preventing gadget chain attacks. */ @Test public void test_security_customClassRejected() { // Create a simple custom object that is not registered CustomTestClass customObject = new CustomTestClass("test");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 21.6K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java
Function<Integer, Integer> adder = from -> from + holder.value; // Since holder.value is 2, applying 4 should yield 6. assertEquals(6, adder.apply(4).intValue()); ListenableFuture<Integer> immediateFuture = immediateFuture(4); Future<Integer> transformedFuture = transform(immediateFuture, adder, directExecutor()); // The composed future also yields 6.
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 22:45:21 GMT 2026 - 134K bytes - Click Count (0) -
guava-tests/test/com/google/common/util/concurrent/FuturesTest.java
Function<Integer, Integer> adder = from -> from + holder.value; // Since holder.value is 2, applying 4 should yield 6. assertEquals(6, adder.apply(4).intValue()); ListenableFuture<Integer> immediateFuture = immediateFuture(4); Future<Integer> transformedFuture = transform(immediateFuture, adder, directExecutor()); // The composed future also yields 6.
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 22:45:21 GMT 2026 - 134K bytes - Click Count (0) -
docs/ja/docs/how-to/custom-request-and-route.md
# カスタム Request と APIRoute クラス { #custom-request-and-apiroute-class } 場合によっては、`Request` や `APIRoute` クラスで使われるロジックを上書きしたいことがあります。 特に、ミドルウェアでのロジックの代替として有効な場合があります。 たとえば、アプリケーションで処理される前にリクエストボディを読み取ったり操作したりしたい場合です。 /// danger | 警告 これは「上級」機能です。 FastAPI を始めたばかりの場合は、このセクションは読み飛ばしてもよいでしょう。 /// ## ユースケース { #use-cases } ユースケースの例: * JSON ではないリクエストボディを JSON に変換する(例: [`msgpack`](https://msgpack.org/index.html))。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 5.4K bytes - Click Count (0) -
docs/de/docs/advanced/security/oauth2-scopes.md
Und wir geben die Scopes als Teil des JWT-Tokens zurück. /// danger | Gefahr Der Einfachheit halber fügen wir hier die empfangenen Scopes direkt zum Token hinzu.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:58:09 GMT 2026 - 15.7K bytes - Click Count (0)