- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 421 for email (1.48 sec)
-
impl/maven-core/src/test/remote-repo/org/apache/maven/maven/2.0/maven-2.0.pom
<id>jvanzyl</id> <name>Jason van Zyl</name> <email>******@****.***</email> <organization>ASF</organization> <roles> <role>PMC Chair</role> </roles> <timezone>-5</timezone> </developer> <developer> <id>brett</id> <name>Brett Porter</name> <email>******@****.***</email> <organization>ASF</organization> <roles>
Registered: 2025-12-28 03:35 - Last Modified: 2024-10-25 12:31 - 8.6K 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-12-28 07:19 - Last Modified: 2025-12-17 21:25 - 1.7K bytes - Viewed (0) -
tests/test_tutorial/test_response_model/test_tutorial003_01.py
Registered: 2025-12-28 07:19 - Last Modified: 2025-12-27 18:19 - 5.9K 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: v1Registered: 2025-12-28 19:28 - Last Modified: 2025-01-03 05:34 - 55.1K bytes - Viewed (0) -
tests/test_tutorial/test_response_model/test_tutorial003.py
Registered: 2025-12-28 07:19 - Last Modified: 2025-12-27 18:19 - 5.9K 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: 2025-12-28 07:19 - Last Modified: 2025-12-17 21:25 - 1.7K bytes - Viewed (0) -
tests/test_tutorial/test_extra_models/test_tutorial001_tutorial002.py
Registered: 2025-12-28 07:19 - Last Modified: 2025-12-26 10:43 - 5.5K 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-12-28 09:35 - Last Modified: 2025-09-19 01:49 - 14.8K bytes - Viewed (0) -
docs_src/background_tasks/tutorial001_py39.py
app = FastAPI() def write_notification(email: str, message=""): with open("log.txt", mode="w") as email_file: content = f"notification for {email}: {message}" email_file.write(content) @app.post("/send-notification/{email}") async def send_notification(email: str, background_tasks: BackgroundTasks): background_tasks.add_task(write_notification, email, message="some notification")
Registered: 2025-12-28 07:19 - Last Modified: 2025-12-17 20:41 - 519 bytes - Viewed (0) -
logger/sql_test.go
Registered: 2025-12-28 09:35 - Last Modified: 2024-03-21 08:00 - 8.4K bytes - Viewed (0)