- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 428 for email (0.02 sec)
-
logger/sql_test.go
Registered: 2025-05-25 09:35 - Last Modified: 2024-03-21 08:00 - 8.4K bytes - Viewed (0) -
callbacks/create_test.go
ID int `gorm:"primaryKey"` Name string Email string `gorm:"default:(-)"` Age int `gorm:"default:(-)"` } s, err := schema.Parse(&user{}, schemaCache, schema.NamingStrategy{}) if err != nil { t.Errorf("parse schema error: %v, is not expected", err) return } dest := []*user{ { ID: 1, Name: "alice", Email: "email", Age: 18, }, { ID: 2,
Registered: 2025-05-25 09:35 - Last Modified: 2024-03-18 05:48 - 1.4K bytes - Viewed (0) -
tests/test_response_model_data_filter_no_inheritance.py
from fastapi.testclient import TestClient from pydantic import BaseModel app = FastAPI() class UserCreate(BaseModel): email: str password: str class UserDB(BaseModel): email: str hashed_password: str class User(BaseModel): email: str class PetDB(BaseModel): name: str owner: UserDB class PetOut(BaseModel): name: str owner: User
Registered: 2025-05-25 07:19 - Last Modified: 2023-07-07 17:12 - 1.7K bytes - Viewed (0) -
tests/test_tutorial/test_response_model/test_tutorial003_01.py
Registered: 2025-05-25 07:19 - Last Modified: 2025-01-19 06:57 - 6K bytes - Viewed (0) -
tests/test_tutorial/test_response_model/test_tutorial003_py310.py
Registered: 2025-05-25 07:19 - Last Modified: 2023-08-04 20:47 - 5.8K bytes - Viewed (0) -
chainable_api.go
// // // assign an email if the record is not found // db.Where(User{Name: "non_existing"}).Attrs(User{Email: "******@****.***"}).FirstOrInit(&user) // // user -> User{Name: "non_existing", Email: "******@****.***"} // // // assign an email if the record is not found, otherwise ignore provided email // db.Where(User{Name: "jinzhu"}).Attrs(User{Email: "******@****.***"}).FirstOrInit(&user)
Registered: 2025-05-25 09:35 - Last Modified: 2025-05-25 07:40 - 14.8K bytes - Viewed (0) -
tests/test_tutorial/test_response_model/test_tutorial003.py
Registered: 2025-05-25 07:19 - Last Modified: 2023-08-04 20:47 - 5.6K 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.4.0.tgz version: 5.4.0 - apiVersion: v1
Registered: 2025-05-25 19:28 - Last Modified: 2025-01-03 05:34 - 55.1K bytes - Viewed (0) -
docs_src/background_tasks/tutorial002_an_py39.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: 2025-05-25 07:19 - Last Modified: 2023-03-18 12:29 - 696 bytes - Viewed (0) -
docs_src/background_tasks/tutorial002_an.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: 2025-05-25 07:19 - Last Modified: 2023-03-18 12:29 - 725 bytes - Viewed (0)