- Sort Score
- Num 10 results
- Language All
Results 51 - 60 of 831 for extras (0.06 seconds)
-
android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt
again. The Mock Turtle went on. `We had the best of educations--in fact, we went to school every day--' `I'VE been to a day-school, too,' said Alice; `you needn't be so proud as all that.' `With extras?' asked the Mock Turtle a little anxiously. `Yes,' said Alice, `we learned French and music.' `And washing?' said the Mock Turtle. `Certainly not!' said Alice indignantly.
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Apr 21 02:27:51 GMT 2017 - 145.2K bytes - Click Count (0) -
guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt
again. The Mock Turtle went on. `We had the best of educations--in fact, we went to school every day--' `I'VE been to a day-school, too,' said Alice; `you needn't be so proud as all that.' `With extras?' asked the Mock Turtle a little anxiously. `Yes,' said Alice, `we learned French and music.' `And washing?' said the Mock Turtle. `Certainly not!' said Alice indignantly.
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Oct 29 21:35:03 GMT 2012 - 145.2K bytes - Click Count (0) -
docs/es/docs/tutorial/extra-models.md
# Modelos Extra { #extra-models } Continuando con el ejemplo anterior, será común tener más de un modelo relacionado. Esto es especialmente el caso para los modelos de usuario, porque: * El **modelo de entrada** necesita poder tener una contraseña. * El **modelo de salida** no debería tener una contraseña. * El **modelo de base de datos** probablemente necesitaría tener una contraseña hasheada. /// danger | PeligroCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 7.2K bytes - Click Count (0) -
docs/en/docs/tutorial/extra-models.md
So, we get a Pydantic model from the data in another Pydantic model. #### Unpacking a `dict` and extra keywords { #unpacking-a-dict-and-extra-keywords } And then adding the extra keyword argument `hashed_password=hashed_password`, like in: ```Python UserInDB(**user_in.model_dump(), hashed_password=hashed_password) ``` ...ends up being like:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 6.7K bytes - Click Count (0) -
docs/fr/docs/tutorial/extra-models.md
# Modèles supplémentaires { #extra-models } En poursuivant l'exemple précédent, il est courant d'avoir plusieurs modèles liés. C'est particulièrement vrai pour les modèles d'utilisateur, car : * Le modèle d'entrée doit pouvoir contenir un mot de passe. * Le modèle de sortie ne doit pas avoir de mot de passe. * Le modèle de base de données devra probablement avoir un mot de passe haché. /// danger | DangerCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 7.6K bytes - Click Count (0) -
docs/zh/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:06:37 GMT 2026 - 6.5K bytes - Click Count (0) -
docs/en/docs/tutorial/schema-extra-example.md
Here are several ways to do it. ## Extra JSON Schema data in Pydantic models { #extra-json-schema-data-in-pydantic-models } You can declare `examples` for a Pydantic model that will be added to the generated JSON Schema. {* ../../docs_src/schema_extra_example/tutorial001_py310.py hl[13:24] *}Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 8.7K bytes - Click Count (0) -
docs/uk/docs/tutorial/extra-models.md
# Додаткові моделі { #extra-models } Продовжуючи попередній приклад, часто потрібно мати більше ніж одну пов’язану модель. Особливо це стосується моделей користувача, тому що: * **вхідна модель** повинна мати пароль. * **вихідна модель** не повинна містити пароль. * **модель бази даних**, ймовірно, повинна містити хеш пароля. /// danger | ОбережноCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 9.4K bytes - Click Count (0) -
docs/tr/docs/tutorial/extra-models.md
# Ek Modeller { #extra-models } Önceki örnekten devam edersek, birbiriyle ilişkili birden fazla modelin olması oldukça yaygındır. Bu durum özellikle kullanıcı modellerinde sık görülür, çünkü: * **input modeli** bir `password` içerebilmelidir. * **output modeli** `password` içermemelidir. * **database modeli** büyük ihtimalle hash'lenmiş bir `password` tutmalıdır. /// danger | TehlikeCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 7.4K bytes - Click Count (0) -
docs/tr/docs/tutorial/extra-data-types.md
# Ek Veri Tipleri { #extra-data-types } Şimdiye kadar şunlar gibi yaygın veri tiplerini kullanıyordunuz: * `int` * `float` * `str` * `bool` Ancak daha karmaşık veri tiplerini de kullanabilirsiniz. Ve yine, şimdiye kadar gördüğünüz özelliklerin aynısına sahip olursunuz: * Harika editör desteği. * Gelen request'lerden veri dönüştürme. * response verileri için veri dönüştürme. * Veri doğrulama.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 2.8K bytes - Click Count (0)