- Sort Score
- Num 10 results
- Language All
Results 41 - 50 of 69 for Doe (0.13 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
docs/de/docs/tutorial/extra-models.md
Wenn wir also ein Pydantic-Objekt `user_in` erstellen, etwa so: ```Python user_in = UserIn(username="john", password="secret", email="john.doe@example.com") ``` und dann aufrufen: ```Python user_dict = user_in.model_dump() ```
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:58:09 GMT 2026 - 7.7K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/extra-models.md
user_in = UserIn(username="john", password="secret", email="john.doe@example.com") ``` 接著呼叫: ```Python user_dict = user_in.model_dump() ``` 此時變數 `user_dict` 會是一個承載資料的 `dict`(也就是 `dict`,而非 Pydantic 模型物件)。 若再呼叫: ```Python print(user_dict) ``` 我們會得到一個 Python `dict`: ```Python { 'username': 'john', 'password': 'secret', 'email': 'john.doe@example.com', 'full_name': None, } ```
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 6.3K bytes - Click Count (0) -
docs/ko/docs/tutorial/extra-models.md
Pydantic 모델은 모델 데이터를 포함한 `dict`를 반환하는 `.model_dump()` 메서드를 제공합니다. 따라서, 다음과 같이 Pydantic 객체 `user_in`을 생성할 수 있습니다: ```Python user_in = UserIn(username="john", password="secret", email="john.doe@example.com") ``` 그 다음, 다음과 같이 호출합니다: ```Python user_dict = user_in.model_dump() ``` 이제 변수 `user_dict`에 데이터가 포함된 `dict`를 가지게 됩니다(이는 Pydantic 모델 객체가 아닌 `dict`입니다). 그리고 다음과 같이 호출하면: ```Python
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 8K bytes - Click Count (0) -
docs/ja/docs/tutorial/extra-models.md
`user_in`は`UserIn`クラスのPydanticモデルです。 Pydanticモデルには、モデルのデータを含む`dict`を返す`.model_dump()`メソッドがあります。 そこで、以下のようなPydanticオブジェクト`user_in`を作成すると: ```Python user_in = UserIn(username="john", password="secret", email="john.doe@example.com") ``` そして呼び出すと: ```Python user_dict = user_in.model_dump() ``` これで変数`user_dict`のデータを持つ`dict`ができました。(これはPydanticモデルのオブジェクトの代わりに`dict`です)。 そして呼び出すと: ```Python print(user_dict)
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 8.1K bytes - Click Count (0) -
docs/tr/docs/python-types.md
/// ## Motivasyon { #motivation } Basit bir örnekle başlayalım: {* ../../docs_src/python_types/tutorial001_py310.py *} Bu programı çalıştırınca şu çıktıyı alırsınız: ``` John Doe ``` Fonksiyon şunları yapar: * `first_name` ve `last_name` değerlerini alır. * `title()` ile her birinin ilk harfini büyük harfe çevirir.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 11.9K bytes - Click Count (0) -
docs/uk/docs/python-types.md
/// ## Мотивація { #motivation } Давайте почнемо з простого прикладу: {* ../../docs_src/python_types/tutorial001_py310.py *} Виклик цієї програми виводить: ``` John Doe ``` Функція виконує наступне: * Бере `first_name` та `last_name`. * Перетворює першу літеру кожного з них у верхній регістр за допомогою `title()`.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 17.4K bytes - Click Count (0) -
docs/es/docs/python-types.md
/// ## Motivación { #motivation } Comencemos con un ejemplo simple: {* ../../docs_src/python_types/tutorial001_py310.py *} Llamar a este programa genera: ``` John Doe ``` La función hace lo siguiente: * Toma un `first_name` y `last_name`. * Convierte la primera letra de cada uno a mayúsculas con `title()`.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 11.6K bytes - Click Count (1) -
docs/pt/docs/python-types.md
/// ## Motivação { #motivation } Vamos começar com um exemplo simples: {* ../../docs_src/python_types/tutorial001_py310.py *} A chamada deste programa gera: ``` John Doe ``` A função faz o seguinte: * Pega um `first_name` e `last_name`. * Converte a primeira letra de cada uma em maiúsculas com `title()`.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 11.7K bytes - Click Count (0) -
docs/fr/docs/python-types.md
/// ## Motivation { #motivation } Commençons par un exemple simple : {* ../../docs_src/python_types/tutorial001_py310.py *} Exécuter ce programme affiche : ``` John Doe ``` La fonction fait ce qui suit : * Prend un `first_name` et un `last_name`. * Convertit la première lettre de chacun en majuscule avec `title()`.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 12.7K bytes - Click Count (0) -
src/test/java/jcifs/audit/SecurityAuditLoggerTest.java
Map<String, Object> context = new HashMap<>(); context.put("password", "secretpassword123"); context.put("sessionId", "abc123def456"); context.put("username", "john.doe@example.com"); logger.logEvent(EventType.AUTHENTICATION_SUCCESS, Severity.INFO, "Login attempt", context); // The test verifies that the logger runs without errors when masking is enabledCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 8.6K bytes - Click Count (0)