- Sort Score
- Num 10 results
- Language All
Results 21 - 30 of 1,049 for field13 (0.17 seconds)
-
docs/ja/docs/tutorial/body-fields.md
# ボディ - フィールド { #body-fields } `Query`や`Path`、`Body`を使って *path operation関数* のパラメータに追加のバリデーションやメタデータを宣言するのと同じように、Pydanticの`Field`を使ってPydanticモデルの内部でバリデーションやメタデータを宣言することができます。 ## `Field`のインポート { #import-field } まず、以下のようにインポートします: {* ../../docs_src/body_fields/tutorial001_an_py310.py hl[4] *} /// warning | 注意 `Field`は他の全てのもの(`Query`、`Path`、`Body`など)とは違い、`fastapi`からではなく、`pydantic`から直接インポートされていることに注意してください。 ///Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Feb 04 16:44:21 GMT 2026 - 3K bytes - Click Count (0) -
docs/pt/docs/tutorial/body-fields.md
# Corpo - Campos { #body-fields } Da mesma forma que você pode declarar validações adicionais e metadados nos parâmetros de uma *função de operação de rota* com `Query`, `Path` e `Body`, você pode declarar validações e metadados dentro de modelos do Pydantic usando `Field` do Pydantic. ## Importe `Field` { #import-field } Primeiro, você tem que importá-lo: {* ../../docs_src/body_fields/tutorial001_an_py310.py hl[4] *} /// warning | AtençãoCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Nov 12 16:23:57 GMT 2025 - 2.6K bytes - Click Count (0) -
docs/uk/docs/tutorial/body-fields.md
# Тіло — Поля { #body-fields } Так само як ви можете оголошувати додаткову валідацію та метадані в параметрах *функції операції шляху* за допомогою `Query`, `Path` та `Body`, ви можете оголошувати валідацію та метадані всередині моделей Pydantic, використовуючи `Field` від Pydantic. ## Імпорт `Field` { #import-field } Спочатку вам потрібно імпортувати це: {* ../../docs_src/body_fields/tutorial001_an_py310.py hl[4] *} /// warning | ПопередженняCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sun Jan 11 00:15:06 GMT 2026 - 3.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/entity/QueryContextTest.java
existingList.add("existing"); fieldLogMap.put("field", existingList); getMockRequest().setAttribute(Constants.FIELD_LOGS, fieldLogMap); queryContext = new QueryContext("test", true); queryContext.addFieldLog("field", "new"); List<String> list = fieldLogMap.get("field"); assertEquals(2, list.size()); assertEquals("existing", list.get(0));
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 17.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGeneratorTest.java
// Test adding single condition generator.addCondition("field1", "value1"); // Test adding multiple conditions for same field generator.addCondition("field1", "value2"); // Test adding conditions for different fields generator.addCondition("field2", "pattern.*"); // Verify conditions can be added without errors assertNotNull(generator);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Feb 04 14:24:39 GMT 2026 - 17.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/validation/UriTypeTest.java
@Test public void test_annotationHashCodeAndEquals() throws Exception { final Field field1 = UriTypeTest.class.getDeclaredField("testFieldWeb"); final UriType annotation1 = field1.getAnnotation(UriType.class); final Field field2 = UriTypeTest.class.getDeclaredField("testFieldFile"); final UriType annotation2 = field2.getAnnotation(UriType.class);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 21.3K bytes - Click Count (0) -
android/guava/src/com/google/common/util/concurrent/ExecutionSequencer.java
* identity equality of its Thread field so that the task field is only accessed by a single * thread. */ private static final class ThreadConfinedTaskQueue { /** * This field is only used for identity comparisons with the current thread. Field assignments * are atomic, but do not provide happens-before ordering; however: * * <ul>Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Sep 23 01:35:55 GMT 2025 - 22.1K bytes - Click Count (0) -
docs/tr/docs/tutorial/request-form-models.md
Bazı özel kullanım senaryolarında (muhtemelen çok yaygın değildir), form field'larını yalnızca Pydantic model'inde tanımlananlarla **sınırlamak** isteyebilirsiniz. Ve **fazladan** gelen field'ları **yasaklayabilirsiniz**. /// note | Not Bu özellik FastAPI `0.114.0` sürümünden itibaren desteklenmektedir. 🤓 ///
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 2.4K bytes - Click Count (0) -
docs/tr/docs/tutorial/cookie-param-models.md
Pydantic'in model configuration'ını kullanarak `extra` olan herhangi bir field'ı `forbid` edebilirsiniz: {* ../../docs_src/cookie_param_models/tutorial002_an_py310.py hl[10] *} Bir client **fazladan cookie** göndermeye çalışırsa, bir **error** response alır.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Feb 13 12:41:38 GMT 2026 - 3.3K bytes - Click Count (0) -
src/test/java/jcifs/internal/dtyp/SecurityInfoTest.java
void testConstantsArePublicStaticFinal() { Field[] fields = SecurityInfo.class.getDeclaredFields(); for (Field field : fields) { int modifiers = field.getModifiers(); assertTrue(Modifier.isPublic(modifiers), "Field " + field.getName() + " should be public"); assertTrue(Modifier.isStatic(modifiers), "Field " + field.getName() + " should be static");
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 7.5K bytes - Click Count (0)