- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 410 for email (0.02 sec)
-
docs_src/security/tutorial003.py
fake_users_db = { "johndoe": { "username": "johndoe", "full_name": "John Doe", "email": "******@****.***", "hashed_password": "fakehashedsecret", "disabled": False, }, "alice": { "username": "alice", "full_name": "Alice Wonderson", "email": "******@****.***", "hashed_password": "fakehashedsecret2", "disabled": True, }, }
Registered: 2024-11-03 07:19 - Last Modified: 2022-05-14 11:59 - 2.4K bytes - Viewed (0) -
tests/default_value_test.go
package tests_test import ( "testing" "time" "gorm.io/gorm" ) func TestDefaultValue(t *testing.T) { type Harumph struct { gorm.Model Email string `gorm:"not null;index:,unique"` Name string `gorm:"notNull;default:foo"` Name2 string `gorm:"size:233;not null;default:'foo'"` Name3 string `gorm:"size:233;notNull;default:''"` Age int `gorm:"default:18"`
Registered: 2024-11-03 09:35 - Last Modified: 2024-04-08 03:29 - 2.3K bytes - Viewed (0) -
tests/test_tutorial/test_response_model/test_tutorial003.py
Registered: 2024-11-03 07:19 - Last Modified: 2023-08-04 20:47 - 5.6K bytes - Viewed (0) -
tests/test_tutorial/test_response_model/test_tutorial003_01_py310.py
Registered: 2024-11-03 07:19 - Last Modified: 2023-08-04 20:47 - 5.8K bytes - Viewed (0) -
docs_src/background_tasks/tutorial002_an_py310.py
message = f"found query: {q}\n" background_tasks.add_task(write_log, message) return q @app.post("/send-notification/{email}") async def send_notification( email: str, background_tasks: BackgroundTasks, q: Annotated[str, Depends(get_query)] ): message = f"message to {email}\n" background_tasks.add_task(write_log, message)
Registered: 2024-11-03 07:19 - Last Modified: 2023-03-18 12:29 - 683 bytes - Viewed (0) -
docs_src/extra_models/tutorial001.py
app = FastAPI() class UserIn(BaseModel): username: str password: str email: EmailStr full_name: Union[str, None] = None class UserOut(BaseModel): username: str email: EmailStr full_name: Union[str, None] = None class UserInDB(BaseModel): username: str hashed_password: str email: EmailStr full_name: Union[str, None] = None
Registered: 2024-11-03 07:19 - Last Modified: 2022-05-14 11:59 - 943 bytes - Viewed (0) -
index.yaml
home: https://min.io icon: https://min.io/resources/img/logo/MINIO_wordmark.png keywords: - minio - storage - object-storage - s3 - cluster maintainers: - email: ******@****.*** name: MinIO, Inc name: minio sources: - https://github.com/minio/minio urls: - https://charts.min.io/helm-releases/minio-5.3.0.tgz version: 5.3.0 - apiVersion: v1
Registered: 2024-11-03 19:28 - Last Modified: 2024-10-11 12:21 - 54.5K bytes - Viewed (0) -
tests/test_tutorial/test_security/test_tutorial005_an_py39.py
Registered: 2024-11-03 07:19 - Last Modified: 2024-03-13 19:07 - 16.3K bytes - Viewed (0) -
tests/test_response_model_data_filter.py
response = client.post( "/users", json={"email": "******@****.***", "password": "secret"} ) assert response.json() == {"email": "******@****.***"} def test_filter_second_level_model(): response = client.get("/pets/1") assert response.json() == { "name": "Nibbler", "owner": {"email": "******@****.***"}, } def test_list_of_models():
Registered: 2024-11-03 07:19 - Last Modified: 2023-07-07 17:12 - 1.7K bytes - Viewed (0) -
AUTHORS
# This file is distinct from the CONTRIBUTORS files. # See the latter for an explanation. # Names should be added to this file as: # Name or Organization <email address> # The email address is not required for organizations. Google Inc. Yuan Tang <terrytangyuan@gmail.com>
Registered: 2024-11-05 12:39 - Last Modified: 2022-03-03 15:11 - 357 bytes - Viewed (0)