- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 955 for field1 (0.06 sec)
-
schema/field.go
field.IgnoreMigration = true case "migration": field.IgnoreMigration = true } } if v, ok := field.TagSettings["->"]; ok { field.Creatable = false field.Updatable = false if strings.ToLower(v) == "false" { field.Readable = false } else { field.Readable = true } } if v, ok := field.TagSettings["<-"]; ok { field.Creatable = true field.Updatable = true
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Wed Aug 20 04:51:17 UTC 2025 - 32K bytes - Viewed (0) -
docs/ja/docs/tutorial/body-fields.md
## `Field`のインポート まず、以下のようにインポートします: {* ../../docs_src/body_fields/tutorial001.py hl[4] *} /// warning | 注意 `Field`は他の全てのもの(`Query`、`Path`、`Body`など)とは違い、`fastapi`からではなく、`pydantic`から直接インポートされていることに注意してください。 /// ## モデルの属性の宣言 以下のように`Field`をモデルの属性として使用することができます:
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Jun 22 14:34:53 UTC 2025 - 2.5K bytes - Viewed (0) -
docs/uk/docs/tutorial/body-fields.md
## Імпорт `Field` Спочатку вам потрібно імпортувати це: {* ../../docs_src/body_fields/tutorial001_an_py310.py hl[4] *} /// warning Зверніть увагу, що `Field` імпортується прямо з `pydantic`, а не з `fastapi`, як всі інші (`Query`, `Path`, `Body` тощо). ///
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 3.7K bytes - Viewed (0) -
docs/pt/docs/tutorial/body-fields.md
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 2.1K bytes - Viewed (0) -
src/test/java/jcifs/MsrpcDfsRootEnumTest.java
// Helper method to set DfsEnumArray using reflection private void setDfsEnumArray(MsrpcDfsRootEnum target, netdfs.DfsEnumArray200 array) throws Exception { Field eField = netdfs.DfsEnumStruct.class.getDeclaredField("e"); eField.setAccessible(true); eField.set(target.info, array); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.9K bytes - Viewed (0) -
api/maven-api-plugin/src/main/mdo/lifecycle.mdo
<description>Root element of the {@code lifecycle.xml} file.</description> <fields> <field> <name>lifecycles</name> <version>1.0.0+</version> <association xml.itemsStyle="flat"> <type>Lifecycle</type> <multiplicity>*</multiplicity> </association> </field> </fields> </class> <class> <name>Lifecycle</name>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sun May 18 09:15:56 UTC 2025 - 5.6K bytes - Viewed (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");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 7.5K bytes - Viewed (0) -
api/maven-api-model/src/main/mdo/maven.mdo
<association> <type>Reporting</type> </association> </field> </fields> </class> <class> <name>PluginContainer</name> <version>3.0.0+</version> <description>Contains the plugins information for the project.</description> <fields> <field> <name>plugins</name> <version>4.0.0+</version>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Aug 07 14:32:16 UTC 2025 - 132.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/com/ServerDataTest.java
} /** * Test all fields are public and accessible */ @Test @DisplayName("Test all fields are public") public void testAllFieldsArePublic() { // Get all declared fields Field[] fields = ServerData.class.getDeclaredFields(); // Verify we have the expected number of fields assertEquals(19, fields.length); // Verify all fields are public
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17K bytes - Viewed (0) -
api/maven-api-settings/src/main/mdo/settings.mdo
</field> <field> <name>exists</name> <version>1.0.0+</version> <type>String</type> <description> The name of the file that should exist to activate a profile. Please note, that missing and exists fields cannot be used together. Only one of them should be used at any one time. </description> </field> </fields> </class>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sun May 18 09:15:56 UTC 2025 - 33.8K bytes - Viewed (0)