- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 236 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_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/en/docs/tutorial/background-tasks.md
Registered: 2025-05-25 07:19 - Last Modified: 2024-11-10 17:23 - 4.6K 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: 2025-05-25 09:35 - Last Modified: 2024-04-08 03:29 - 2.3K bytes - Viewed (0) -
docs/em/docs/tutorial/extra-models.md
🔜 🏁 🕳 🌓: ```Python UserInDB( username="john", password="secret", email="******@****.***", full_name=None, ) ``` ⚖️ 🌅 ⚫️❔, ⚙️ `user_dict` 🔗, ⏮️ ⚫️❔ 🎚 ⚫️ 💪 ✔️ 🔮: ```Python UserInDB( username = user_dict["username"], password = user_dict["password"], email = user_dict["email"], full_name = user_dict["full_name"], ) ``` #### Pydantic 🏷 ⚪️➡️ 🎚 ➕1️⃣
Registered: 2025-05-25 07:19 - Last Modified: 2024-11-18 02:25 - 5.7K bytes - Viewed (0)