- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 1,045 for field40 (0.19 seconds)
-
docs/de/docs/tutorial/body-fields.md
# Body – Felder { #body-fields } So wie Sie zusätzliche Validierung und Metadaten in Parametern der *Pfadoperation-Funktion* mittels `Query`, `Path` und `Body` deklarieren, können Sie auch innerhalb von Pydantic-Modellen zusätzliche Validierung und Metadaten deklarieren, mittels Pydantics `Field`. ## `Field` importieren { #import-field } Importieren Sie es zuerst: {* ../../docs_src/body_fields/tutorial001_an_py310.py hl[4] *} /// warning | AchtungCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Feb 14 07:57:30 GMT 2026 - 2.7K bytes - Click Count (0) -
docs/es/docs/tutorial/body-fields.md
# Body - Campos { #body-fields } De la misma manera que puedes declarar validaciones adicionales y metadatos en los parámetros de las *path operation function* con `Query`, `Path` y `Body`, puedes declarar validaciones y metadatos dentro de los modelos de Pydantic usando `Field` de Pydantic. ## Importar `Field` { #import-field } Primero, tienes que importarlo: {* ../../docs_src/body_fields/tutorial001_an_py310.py hl[4] *} /// warning | AdvertenciaCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Tue Dec 16 16:33:45 GMT 2025 - 2.6K bytes - Click Count (0) -
docs/fr/docs/tutorial/body-fields.md
# Corps - Champs { #body-fields } De la même manière que vous pouvez déclarer des validations supplémentaires et des métadonnées dans les paramètres d'une fonction de chemin d'accès avec `Query`, `Path` et `Body`, vous pouvez déclarer des validations et des métadonnées à l'intérieur des modèles Pydantic en utilisant `Field` de Pydantic. ## Importer `Field` { #import-field } D'abord, vous devez l'importer :Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Feb 14 08:12:41 GMT 2026 - 2.9K bytes - Click Count (0) -
docs/ko/docs/tutorial/body-fields.md
# 본문 - 필드 { #body-fields } `Query`, `Path`와 `Body`를 사용해 *경로 처리 함수* 매개변수 내에서 추가적인 검증이나 메타데이터를 선언한 것처럼 Pydantic의 `Field`를 사용하여 모델 내에서 검증과 메타데이터를 선언할 수 있습니다. ## `Field` 임포트 { #import-field } 먼저 이를 임포트해야 합니다: {* ../../docs_src/body_fields/tutorial001_an_py310.py hl[4] *} /// warning | 경고 `Field`는 다른 것들처럼 (`Query`, `Path`, `Body` 등) `fastapi`에서가 아닌 `pydantic`에서 바로 임포트 되는 점에 주의하세요. /// ## 모델 어트리뷰트 선언 { #declare-model-attributes }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Feb 14 08:57:01 GMT 2026 - 2.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/thumbnail/impl/EmptyGeneratorTest.java
emptyGenerator = new EmptyGenerator(); // Test adding conditions - this should work without container emptyGenerator.addCondition("field1", "pattern1"); emptyGenerator.addCondition("field1", "pattern2"); emptyGenerator.addCondition("field2", "pattern.*"); // We can't test isTarget properly without container, // but we can verify conditions are added
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 6.5K 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/query/BoostQueryCommandTest.java
// Test executing BoostQuery with a BooleanQuery inside BooleanQuery.Builder boolBuilder = new BooleanQuery.Builder(); boolBuilder.add(new TermQuery(new Term("field1", "value1")), BooleanClause.Occur.MUST); boolBuilder.add(new TermQuery(new Term("field2", "value2")), BooleanClause.Occur.SHOULD); BooleanQuery boolQuery = boolBuilder.build(); BoostQuery boostQuery = new BoostQuery(boolQuery, 2.0f);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 17K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/body-fields.md
# Body - 欄位 { #body-fields } 就像你可以在「路徑操作函式 (path operation function)」的參數中用 `Query`、`Path` 和 `Body` 宣告額外的驗證與中繼資料一樣,你也可以在 Pydantic 模型中使用 Pydantic 的 `Field` 來宣告驗證與中繼資料。 ## 匯入 `Field` { #import-field } 首先,你需要匯入它: {* ../../docs_src/body_fields/tutorial001_an_py310.py hl[4] *} /// warning 請注意,`Field` 是直接從 `pydantic` 匯入的,不像其他(如 `Query`、`Path`、`Body` 等)是從 `fastapi` 匯入。 /// ## 宣告模型屬性 { #declare-model-attributes }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Feb 14 08:15:26 GMT 2026 - 2.3K bytes - Click Count (0) -
docs/tr/docs/tutorial/body-fields.md
# Body - Alanlar { #body-fields } `Query`, `Path` ve `Body` ile *path operation function* parametrelerinde ek doğrulama ve metadata tanımlayabildiğiniz gibi, Pydantic modellerinin içinde de Pydantic'in `Field`'ını kullanarak doğrulama ve metadata tanımlayabilirsiniz. ## `Field`'ı import edin { #import-field } Önce import etmeniz gerekir: {* ../../docs_src/body_fields/tutorial001_an_py310.py hl[4] *} /// warning | UyarıCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Feb 05 15:43:38 GMT 2026 - 2.7K bytes - Click Count (0)