- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 304 for user_name (0.08 sec)
-
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 Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Feb 23 15:09:35 UTC 2023 - 5K 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 Nov 03 09:35:10 UTC 2024 - 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 Nov 03 07:19:11 UTC 2024 - 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 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 Nov 03 07:19:11 UTC 2024 - Last Modified: Thu Aug 15 23:30:12 UTC 2024 - 9.2K bytes - Viewed (0) -
docs/zh/docs/features.md
![editor support](https://fastapi.tiangolo.com/img/pycharm-completion.png) ไฝ ๅฐ่ฝ่ฟ่กไปฃ็ ่กฅๅ จ๏ผ่ฟๆฏๅจไนๅไฝ ๅฏ่ฝๆพ่ฎคไธบไธๅฏ่ฝ็ไบใไพๅฆ๏ผๅจๆฅ่ช่ฏทๆฑ JSON ไฝ๏ผๅฏ่ฝๆฏๅตๅฅ็๏ผไธญ็้ฎ `price`ใ ไธไผๅ่พ้้ฎๅ๏ผๆฅๅ็ฟป็ๆๆกฃ๏ผๆ่ ๆฅๅๆปๅจๅฏปๆพไฝ ๆๅไฝฟ็จ็ `username` ๆ่ `user_name` ใ ### ็ฎๆด ไปปไฝ็ฑปๅ้ฝๆๅ็็**้ป่ฎคๅผ**๏ผไปปไฝๅๅฐๆน้ฝๆๅฏ้้ ็ฝฎใๆๆ็ๅๆฐ่ขซๅพฎ่ฐ๏ผๆฅๆปก่ถณไฝ ็้ๆฑ๏ผๅฎไนๆไฝ ้่ฆ็ APIใ ไฝๆฏ้ป่ฎคๆ ๅตไธ๏ผไธๅ้ฝ่ฝ**โ้กบๅฉๅทฅไฝโ**ใ ### ้ช่ฏ * ๆ ก้ชๅคง้จๅ๏ผ็่ณๆๆ๏ผ๏ผ็ Python **ๆฐๆฎ็ฑปๅ**๏ผๅ ๆฌ๏ผ * JSON ๅฏน่ฑก (`dict`).
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 8.9K bytes - Viewed (0) -
docs/sts/rw-ldap-username.json
Harshavardhana <******@****.***> 1622223187 -0700
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri May 28 17:33:07 UTC 2021 - 201 bytes - Viewed (0) -
docs_src/security/tutorial005_an_py310.py
def get_password_hash(password): return pwd_context.hash(password) def get_user(db, username: str): if username in db: user_dict = db[username] return UserInDB(**user_dict) def authenticate_user(fake_db, username: str, password: str): user = get_user(fake_db, username) if not user: return False if not verify_password(password, user.hashed_password):
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon May 20 17:37:28 UTC 2024 - 5.2K bytes - Viewed (0) -
docs_src/security/tutorial005_an_py39.py
def get_password_hash(password): return pwd_context.hash(password) def get_user(db, username: str): if username in db: user_dict = db[username] return UserInDB(**user_dict) def authenticate_user(fake_db, username: str, password: str): user = get_user(fake_db, username) if not user: return False if not verify_password(password, user.hashed_password):
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon May 20 17:37:28 UTC 2024 - 5.3K bytes - Viewed (0) -
tests/test_multipart_installation.py
with pytest.raises(RuntimeError, match=multipart_incorrect_install_error): app = FastAPI() @app.post("/") async def root(username: str = Form()): return username # pragma: nocover def test_incorrect_multipart_installed_file_upload(monkeypatch): monkeypatch.setattr("python_multipart.__version__", "0.0.12") with warnings.catch_warnings(record=True):
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 27 21:46:26 UTC 2024 - 5.7K bytes - Viewed (0) -
tests/test_tutorial/test_request_form_models/test_tutorial002_an.py
def test_post_body_form(client: TestClient): response = client.post("/login/", data={"username": "Foo", "password": "secret"}) assert response.status_code == 200 assert response.json() == {"username": "Foo", "password": "secret"} @needs_pydanticv2 def test_post_body_extra_form(client: TestClient): response = client.post( "/login/", data={"username": "Foo", "password": "secret", "extra": "extra"} )
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Sep 06 17:31:18 UTC 2024 - 6.2K bytes - Viewed (0)