- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 1,211 for field5 (0.08 sec)
-
docs/pt/docs/tutorial/schema-extra-example.md
Por exemplo, você pode usar isso para adicionar metadados para uma interface de usuário de front-end, etc. /// ## `Field` de argumentos adicionais Ao usar `Field ()` com modelos Pydantic, você também pode declarar informações extras para o **JSON Schema** passando quaisquer outros argumentos arbitrários para a função.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 6.1K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Serialization.java
// Secret sauce for setting final fields; don't make it public. static final class FieldSetter<T> { private final Field field; private FieldSetter(Field field) { this.field = field; field.setAccessible(true); } void set(T instance, Object value) { try { field.set(instance, value); } catch (IllegalAccessException impossible) { throw new AssertionError(impossible);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 8.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/info/Smb2SetInfoRequestTest.java
try { Field infoTypeField = Smb2SetInfoRequest.class.getDeclaredField("infoType"); infoTypeField.setAccessible(true); byte actualInfoType = (byte) infoTypeField.get(request); assertEquals(Smb2Constants.SMB2_0_INFO_FILE, actualInfoType); Field fileInfoClassField = Smb2SetInfoRequest.class.getDeclaredField("fileInfoClass");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.9K bytes - Viewed (0) -
docs/ja/docs/tutorial/schema-extra-example.md
その追加情報はそのまま出力され、JSON Schemaに追加されます。 ## `Field`の追加引数 後述する`Field`、`Path`、`Query`、`Body`などでは、任意の引数を関数に渡すことでJSON Schemaの追加情報を宣言することもできます: {* ../../docs_src/schema_extra_example/tutorial002.py hl[4,10,11,12,13] *} /// warning | 注意 これらの追加引数が渡されても、文書化のためのバリデーションは追加されず、注釈だけが追加されることを覚えておいてください。 /// ## `Body`の追加引数 追加情報を`Field`に渡すのと同じように、`Path`、`Query`、`Body`などでも同じことができます。
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 2.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/FuzzyQueryCommandTest.java
assertNotNull(result); } // Test with various field names public void test_convertFuzzyQuery_withVariousFields() { QueryContext context = new QueryContext("test", false); String[] fields = { "title", "content", "url", "site", "host", "mimetype" }; for (String field : fields) { Term term = new Term(field, "fuzzy"); FuzzyQuery fuzzyQuery = new FuzzyQuery(term);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/joblog/EditForm.java
* This is a required field indicating when the job began. */ @Required public String startTime; /** * The timestamp when the job completed execution. * This field indicates when the job finished, if it has completed. */ public String endTime; /** * Initializes the form with default null values.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.3K bytes - Viewed (0) -
docs/en/docs/tutorial/response-model.md
/// #### Data with values for fields with defaults { #data-with-values-for-fields-with-defaults } But if your data has values for the model's fields with default values, like the item with ID `bar`: ```Python hl_lines="3 5" { "name": "Bar", "description": "The bartenders", "price": 62,
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 16K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/scheduler/EditForm.java
} /** * The unique identifier of the scheduler being edited. * This is a required field for identifying which scheduler to update. */ @Required @Size(max = 1000) public String id; /** * The version number of the scheduler for optimistic locking. * This field is required to prevent concurrent modification conflicts
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/failureurl/EditForm.java
*/ public String errorLog; /** * The number of times this URL has failed. * This is a required field that tracks repeated failures for the same URL. */ @Required @ValidateTypeFailure public String errorCount; /** * The timestamp of the last access attempt for this URL.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.2K bytes - Viewed (0) -
android/guava/src/com/google/common/net/HttpHeaders.java
public static final String DATE = "Date"; /** The HTTP {@code Pragma} header field name. */ public static final String PRAGMA = "Pragma"; /** The HTTP {@code Via} header field name. */ public static final String VIA = "Via"; /** The HTTP {@code Warning} header field name. */ public static final String WARNING = "Warning"; // HTTP Request header fields
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Mar 27 20:37:16 UTC 2025 - 35.4K bytes - Viewed (0)