- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 181 for user_name (0.04 sec)
-
android/guava/src/com/google/common/base/StandardSystemProperty.java
PATH_SEPARATOR("path.separator"), /** Line separator ("\n" on UNIX). */ LINE_SEPARATOR("line.separator"), /** User's account name. */ USER_NAME("user.name"), /** User's home directory. */ USER_HOME("user.home"), /** User's current working directory. */ USER_DIR("user.dir"); private final String key; StandardSystemProperty(String key) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Mar 06 10:03:30 UTC 2025 - 4.9K bytes - Viewed (0) -
tests/embedded_struct_test.go
} else if len(stmt.Schema.PrimaryFields) != 1 { t.Errorf("should have only one primary field with embedded struct, but got %v", len(stmt.Schema.PrimaryFields)) } for _, name := range []string{"user_id", "user_name", "user_email"} { if !DB.Migrator().HasColumn(&HNPost{}, name) { t.Errorf("should has prefixed column %v", name) } } // save embedded struct DB.Save(&HNPost{BasePost: BasePost{Title: "news"}})
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Wed May 08 04:07:58 UTC 2024 - 7.3K bytes - Viewed (0) -
docs/em/docs/features.md
๐ ๐ ๐ค ๐ ๏ธ ๐ ๐ 5๏ธโฃ๐ ๐ค ๐ช โญ. ๐ผ, `price` ๐ ๐ ๐ป ๐ช (๐ ๐ช โ๏ธ ๐ฆ) ๐ ๐ โช๏ธโก๏ธ ๐จ. ๐ โโ ๐ โจ โ ๐ ๐, ๐ ๐ & โก ๐ ๐ฉบ, โ๏ธ ๐ ๐ & ๐ฝ ๐ ๐ฅ ๐ ๐ โ๏ธ `username` โ๏ธ `user_name`. ### ๐ โซ๏ธ โ๏ธ ๐ค **๐ข** ๐, โฎ๏ธ ๐ฆ ๐ณ ๐. ๐ ๐ข ๐ช ๐-๐ง โซ๏ธโ ๐ ๐ช & ๐ฌ ๐ ๏ธ ๐ ๐ช. โ๏ธ ๐ข, โซ๏ธ ๐ **"๐ท"**. ### ๐ฌ * ๐ฌ ๐ (โ๏ธ ๐ โ) ๐ **๐ฝ ๐**, ๐: * ๐ป ๐ (`dict`).
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 8K bytes - Viewed (0) -
docs/en/docs/features.md
No more typing the wrong key names, coming back and forth between docs, or scrolling up and down to find if you finally used `username` or `user_name`. ### Short { #short } It has sensible **defaults** for everything, with optional configurations everywhere. All the parameters can be fine-tuned to do what you need and to define the API you need.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 9.5K bytes - Viewed (0) -
docs/zh-hant/docs/features.md
 ไฝ ๅฐ่ฝ้ฒ่ก็จๅผ็ขผ่ฃ้ฝ๏ผ้ๆฏๅจไนๅไฝ ๅฏ่ฝๆพ่ช็บไธๅฏ่ฝ็ไบใไพๅฆ๏ผ่ซๆฑ JSON body๏ผๅฏ่ฝๆฏๅทข็็๏ผไธญ็้ต `price`ใ ้ๆจฃๆฏ่ผไธๆ่ผธ้ฏ้ตๅ๏ผไธ็จไพๅ็ฟป็ๆไปถ๏ผไนไธ็จไพๅๆปพๅๅฐๆพไฝ ๆๅพไฝฟ็จ็ `username` ๆ่ `user_name`ใ ### ็ฐกๆฝ FastAPI ็บไฝ ๆไพไบ**้ ่จญๅผ**๏ผ่ฎไฝ ไธๅฟ ๅจๅๆ้ฒ่ก็น็ฃ็้ ็ฝฎ๏ผไธๅ้ฝๅฏไปฅ่ชๅ้ไฝใๅฆๆไฝ ๆๆดๅ ท้ซ็้ๆฑ๏ผๅๅฏไปฅ้ฒ่ก่ชฟๆดๅ่ชๅฎ็พฉ๏ผ ไฝๅจๅคงๅคๆธๆ ๆณไธ๏ผไฝ ๅช้่ฆ็ดๆฅไฝฟ็จ้ ่จญๅผ๏ผๅฐฑ่ฝ้ ๅฉๅฎๆ API ้็ผใ ### ้ฉ่ญ ๆๆ็้ฉ่ญ้ฝ็ฑๅฎๅไธๅผทๅคง็ **Pydantic** ่็ใ
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Tue Dec 10 10:48:41 UTC 2024 - 9.6K bytes - Viewed (0) -
docs/sts/rw-ldap-username.json
Harshavardhana <******@****.***> 1622223187 -0700
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri May 28 17:33:07 UTC 2021 - 201 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/login/SpnegoCredential.java
*/ public SpnegoCredential(final String username) { this.username = username; } /** * Gets the user identifier from this credential. * * @return The username from SPNEGO authentication */ @Override public String getUserId() { return username; } /** * Returns a string representation of this credential. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbAuthentication.java
this.port = port; } /** * Returns the username. * @return The username. */ public String getUsername() { return username; } /** * Sets the username. * @param username The username. */ public void setUsername(final String username) { this.username = username; } /** * Returns the password.
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Sep 18 09:30:45 UTC 2025 - 3.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/FessUserNotFoundExceptionTest.java
assertNotNull(exception); assertEquals("User is not found: " + username, exception.getMessage()); assertNull(exception.getCause()); } public void test_constructor_withUnicodeCharacters() { // Test with username containing Unicode characters String username = "ใฆใผใถใผๅ"; FessUserNotFoundException exception = new FessUserNotFoundException(username);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.6K bytes - Viewed (0) -
docs/en/docs/tutorial/security/simple-oauth2.md
## Get the `username` and `password` { #get-the-username-and-password } We are going to use **FastAPI** security utilities to get the `username` and `password`. OAuth2 specifies that when using the "password flow" (that we are using) the client/user must send a `username` and `password` fields as form data.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 9.4K bytes - Viewed (0)