- Sort Score
- Num 10 results
- Language All
Results 111 - 120 of 450 for Email (0.02 seconds)
-
docs/zh-hant/docs/features.md
* 驗證大部分(甚至所有?)的 Python **資料型別**,包括: * JSON 物件 (`dict`)。 * JSON 陣列 (`list`) 定義項目型別。 * 字串 (`str`) 欄位,定義最小或最大長度。 * 數字 (`int`, `float`) 與其最大值和最小值等。 * 驗證外來的型別,比如: * URL * Email * UUID * ...等等。 所有的驗證都由完善且強大的 **Pydantic** 處理。 ### 安全性及身份驗證 { #security-and-authentication } FastAPI 已經整合了安全性和身份驗證的功能,但不會強制與特定的資料庫或資料模型進行綁定。 OpenAPI 中定義的安全模式,包括:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 9.2K bytes - Click Count (0) -
pom.xml
<version>${lasta.job.version}</version> </dependency> <!-- mail --> <dependency> <groupId>org.dbflute.mail</groupId> <artifactId>mailflute</artifactId> <version>${mailflute.version}</version> <exclusions> <exclusion> <groupId>com.sun.mail</groupId> <artifactId>jakarta.mail</artifactId> </exclusion> </exclusions> </dependency>
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 19 07:04:54 GMT 2026 - 49.9K bytes - Click Count (0) -
docs/en/docs/advanced/settings.md
# Settings and Environment Variables { #settings-and-environment-variables } In many cases your application could need some external settings or configurations, for example secret keys, database credentials, credentials for email services, etc. Most of these settings are variable (can change), like database URLs. And many could be sensitive, like secrets. For this reason it's common to provide them in environment variables that are read by the application. /// tipCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 10.9K bytes - Click Count (0) -
docs/en/docs/tutorial/security/oauth2-jwt.md
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 10.7K bytes - Click Count (0) -
src/main/java/jcifs/smb1/util/DES.java
// HIGH RISK ACTIVITIES. // // // The rest is: // // Copyright (C) 1996 by Jef Poskanzer <******@****.***>. All rights reserved. // // Copyright (C) 1996 by Wolfgang Platzer // email: ******@****.*** // // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions // are met:
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 22.7K bytes - Click Count (0) -
docs/ja/docs/features.md
* ほとんど(あるいはすべて?)の Python の **データ型** に対する検証: * JSON オブジェクト(`dict`)。 * 項目の型を定義する JSON 配列(`list`)。 * 文字列(`str`)フィールドの最小/最大長。 * 数値(`int`、`float`)の最小/最大値、など。 * よりエキゾチックな型の検証: * URL。 * Email。 * UUID。 * ...その他。 すべての検証は、確立され堅牢な **Pydantic** によって処理されます。 ### セキュリティと認証 { #security-and-authentication } セキュリティと認証が統合されています。データベースやデータモデルとの妥協はありません。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 11.6K bytes - Click Count (0) -
helm/minio/values.yaml
existingClientSecretName: "" existingClientIdKey: "" existingClientSecretKey: "" claimName: "policy" scopes: "openid,profile,email" redirectUri: "https://console-endpoint-url/oauth_callback" # Can leave empty claimPrefix: "" comment: "" displayName: "" networkPolicy: enabled: false
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Tue Aug 12 18:20:36 GMT 2025 - 19.7K bytes - Click Count (1) -
src/test/java/org/codelibs/curl/CurlRequestTest.java
CurlRequest request = new CurlRequest(Method.GET, "https://example.com"); // Add params with special characters request.param("name", "John Doe").param("email", "******@****.***").param("query", "hello & goodbye").param("special", "100%"); assertNotNull(request); assertEquals(Method.GET, request.method()); } @Test
Created: Thu Apr 02 15:34:12 GMT 2026 - Last Modified: Sat Mar 21 09:11:12 GMT 2026 - 24.7K bytes - Click Count (0) -
docs/en/docs/help-fastapi.md
There you can select "Releases only". By doing it, you will receive notifications (in your email) whenever there's a new release (a new version) of **FastAPI** with bug fixes and new features. ## Connect with the author { #connect-with-the-author }
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 12.6K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/security/oauth2-jwt.md
/// check | 檢查 注意在程式碼中完全沒有明文密碼「`secret`」,我們只有雜湊後的版本。 /// <img src="/img/tutorial/security/image08.png"> 呼叫端點 `/users/me/`,你會得到類似這樣的回應: ```JSON { "username": "johndoe", "email": "******@****.***", "full_name": "John Doe", "disabled": false } ``` <img src="/img/tutorial/security/image09.png"> 如果你打開開發者工具,可以看到送出的資料只包含權杖;密碼只會在第一次請求(用來驗證使用者並取得 access token)時送出,之後就不會再送:
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 10.1K bytes - Click Count (0)