- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 167 for email (0.02 seconds)
-
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>
Created: 2025-12-28 03:35 - Last Modified: 2024-10-25 12:31 - 8.6K bytes - Click Count (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
Created: 2025-12-28 07:19 - Last Modified: 2025-12-17 21:25 - 1.7K bytes - Click Count (0) -
tests/test_tutorial/test_response_model/test_tutorial003_01.py
Created: 2025-12-28 07:19 - Last Modified: 2025-12-27 18:19 - 5.9K bytes - Click Count (0) -
tests/test_tutorial/test_response_model/test_tutorial003.py
Created: 2025-12-28 07:19 - Last Modified: 2025-12-27 18:19 - 5.9K bytes - Click Count (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():
Created: 2025-12-28 07:19 - Last Modified: 2025-12-17 21:25 - 1.7K bytes - Click Count (0) -
tests/test_tutorial/test_extra_models/test_tutorial001_tutorial002.py
Created: 2025-12-28 07:19 - Last Modified: 2025-12-26 10:43 - 5.5K bytes - Click Count (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")
Created: 2025-12-28 07:19 - Last Modified: 2025-12-17 20:41 - 519 bytes - Click Count (0) -
logger/sql_test.go
Created: 2025-12-28 09:35 - Last Modified: 2024-03-21 08:00 - 8.4K bytes - Click Count (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,
Created: 2025-12-28 09:35 - Last Modified: 2024-03-18 05:48 - 1.4K bytes - Click Count (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"`
Created: 2025-12-28 09:35 - Last Modified: 2024-04-08 03:29 - 2.3K bytes - Click Count (0)