- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 17 for doe (0.06 sec)
-
compat/maven-compat/src/test/java/org/apache/maven/toolchain/DefaultToolchainTest.java
DefaultToolchain toolchain = newDefaultToolchain(model); toolchain.addProvideToken("name", RequirementMatcherFactory.createExactMatcher("Jane Doe")); assertFalse(toolchain.matchesRequirements(Collections.singletonMap("name", "John Doe"))); verify(logger).debug("Toolchain {} doesn't match required property: {}", toolchain, "name"); } @Test void testEquals() {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Tue Feb 11 12:33:57 UTC 2025 - 4.9K bytes - Viewed (0) -
docs/em/docs/tutorial/extra-models.md
``` & โคด๏ธ ๐ฅ ๐ค: ```Python user_dict = user_in.dict() ``` ๐ฅ ๐ โ๏ธ `dict` โฎ๏ธ ๐ฝ ๐ข `user_dict` (โซ๏ธ `dict` โฉ๏ธ Pydantic ๐ท ๐). & ๐ฅ ๐ฅ ๐ค: ```Python print(user_dict) ``` ๐ฅ ๐ ๐ค ๐ `dict` โฎ๏ธ: ```Python { 'username': 'john', 'password': 'secret', 'email': 'john.doe@example.com', 'full_name': None, }
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 5.7K bytes - Viewed (0) -
docs/en/docs/tutorial/extra-models.md
Pydantic models have a `.dict()` method that returns a `dict` with the model's data. So, if we create a Pydantic object `user_in` like: ```Python user_in = UserIn(username="john", password="secret", email="john.doe@example.com") ``` and then we call: ```Python user_dict = user_in.dict() ``` we now have a `dict` with the data in the variable `user_dict` (it's a `dict` instead of a Pydantic model object).
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 7.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticatorTest.java
String jwtClaim = "{\"email\":\"******@****.***\",\"sub\":\"1234567890\",\"name\":\"John Doe\",\"groups\":[\"group1\",\"group2\"]}"; // Execute authenticator.parseJwtClaim(jwtClaim, attributes); // Verify assertEquals("1234567890", attributes.get("sub")); assertEquals("John Doe", attributes.get("name")); // Check groups array
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 2K bytes - Viewed (0) -
docs/pt/docs/tutorial/extra-models.md
Os modelos Pydantic possuem um mรฉtodo `.dict()` que retorna um `dict` com os dados do modelo. Entรฃo, se criarmos um objeto Pydantic `user_in` como: ```Python user_in = UserIn(username="john", password="secret", email="john.doe@example.com") ``` e depois chamarmos: ```Python user_dict = user_in.dict() ``` agora temos um `dict` com os dados na variรกvel `user_dict` (รฉ um `dict` em vez de um objeto de modelo Pydantic).
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 6.8K bytes - Viewed (0) -
docs/de/docs/tutorial/extra-models.md
Pydantic-Modelle haben eine `.dict()`-Methode, die ein `dict` mit den Daten des Modells zurรผckgibt. 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 wir rufen seine `.dict()`-Methode auf: ```Python user_dict = user_in.dict() ```
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 7.8K bytes - Viewed (0) -
docs/ko/docs/tutorial/extra-models.md
`user_in`์ Pydantic ๋ชจ๋ธ ํด๋์ค์ธ `UserIn`์ ๋๋ค. Pydantic ๋ชจ๋ธ์ ๋ชจ๋ธ ๋ฐ์ดํฐ๋ฅผ ํฌํจํ `dict`๋ฅผ ๋ฐํํ๋ `.dict()` ๋ฉ์๋๋ฅผ ์ ๊ณตํฉ๋๋ค. ๋ฐ๋ผ์, ๋ค์๊ณผ ๊ฐ์ด Pydantic ๊ฐ์ฒด `user_in`์ ์์ฑํ ์ ์์ต๋๋ค: ```Python user_in = UserIn(username="john", password="secret", email="john.doe@example.com") ``` ๊ทธ ๋ค์, ๋ค์๊ณผ ๊ฐ์ด ํธ์ถํฉ๋๋ค: ```Python user_dict = user_in.dict() ``` ์ด์ ๋ณ์ `user_dict`์ ๋ฐ์ดํฐ๊ฐ ํฌํจ๋ `dict`๋ฅผ ๊ฐ์ง๊ฒ ๋ฉ๋๋ค(์ด๋ Pydantic ๋ชจ๋ธ ๊ฐ์ฒด๊ฐ ์๋ `dict`์ ๋๋ค). ๊ทธ๋ฆฌ๊ณ ๋ค์๊ณผ ๊ฐ์ด ํธ์ถํ๋ฉด: ```Python
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri May 30 13:38:33 UTC 2025 - 8.4K bytes - Viewed (0) -
docs/ja/docs/tutorial/extra-models.md
`user_in`ใฏ`UserIn`ใฏใฉในใฎPydanticใขใใซใงใใ Pydanticใขใใซใซใฏใใขใใซใฎใใผใฟใๅซใ`dict`ใ่ฟใ`.dict()`ใกใฝใใใใใใพใใ ใใใงใไปฅไธใฎใใใชPydanticใชใใธใงใฏใ`user_in`ใไฝๆใใใจ: ```Python user_in = UserIn(username="john", password="secret", email="john.doe@example.com") ``` ใใใฆๅผใณๅบใใจ: ```Python user_dict = user_in.dict() ``` ใใใงๅคๆฐ`user_dict`ใฎใใผใฟใๆใค`dict`ใใงใใพใใใ๏ผใใใฏPydanticใขใใซใฎใชใใธใงใฏใใฎไปฃใใใซ`dict`ใงใ๏ผใ ใใใฆๅผใณๅบใใจ: ```Python print(user_dict)
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 6.6K bytes - Viewed (0) -
docs/es/docs/tutorial/extra-models.md
Los modelos Pydantic tienen un mรฉtodo `.dict()` que devuelve un `dict` con los datos del modelo. Asรญ que, si creamos un objeto Pydantic `user_in` como: ```Python user_in = UserIn(username="john", password="secret", email="john.doe@example.com") ``` y luego llamamos a: ```Python user_dict = user_in.dict() ``` ahora tenemos un `dict` con los datos en la variable `user_dict` (es un `dict` en lugar de un objeto modelo Pydantic).
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 7.3K bytes - Viewed (0) -
docs/em/docs/tutorial/security/simple-oauth2.md
### ๐ค ๐ ๐ ๐ฉโ๐ป ๐ฝ ๐ โ๏ธ ๐ ๏ธ `GET` โฎ๏ธ โก `/users/me`. ๐ ๐ ๐ค ๐ ๐ฉโ๐ป ๐, ๐: ```JSON { "username": "johndoe", "email": "******@****.***", "full_name": "John Doe", "disabled": false, "hashed_password": "fakehashedsecret" } ``` <img src="/img/tutorial/security/image06.png"> ๐ฅ ๐ ๐ ๐ โน & โ, & โคด๏ธ ๐ ๐ ๐ ๏ธ ๐, ๐ ๐ ๐ค ๐บ๐ธ๐ 4๏ธโฃ0๏ธโฃ1๏ธโฃ โ:
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 7.7K bytes - Viewed (0)