- Sort Score
- Num 10 results
- Language All
Results 731 - 740 of 836 for flot (0.02 seconds)
-
android/guava-tests/test/com/google/common/primitives/DoublesTest.java
List<Byte> bytes = Arrays.asList((byte) 0, (byte) 1, (byte) 2); List<Short> shorts = Arrays.asList((short) 0, (short) 1, (short) 2); List<Integer> ints = Arrays.asList(0, 1, 2); List<Float> floats = Arrays.asList(0.0f, 1.0f, 2.0f); List<Long> longs = Arrays.asList(0L, 1L, 2L); List<Double> doubles = Arrays.asList(0.0, 1.0, 2.0); assertThat(Doubles.toArray(bytes)).isEqualTo(array);Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Mar 08 01:43:32 GMT 2026 - 30.9K bytes - Click Count (0) -
android/guava/src/com/google/common/base/Ascii.java
*/ public static final byte DC1 = 17; // aka XON /** * Transmission On: Although originally defined as DC1, this ASCII control character is now better * known as the XON code used for software flow control in serial communications. The main use is * restarting the transmission after the communication has been stopped by the XOFF control code. * * @since 8.0 */
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 17 20:26:29 GMT 2025 - 21.7K bytes - Click Count (0) -
tests/test_generate_unique_id_function.py
return f"bar_{route.name}" def custom_generate_unique_id3(route: APIRoute): return f"baz_{route.name}" class Item(BaseModel): name: str price: float class Message(BaseModel): title: str description: str def test_top_level_generate_unique_id(): app = FastAPI(generate_unique_id_function=custom_generate_unique_id) router = APIRouter()Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sun Feb 08 10:18:38 GMT 2026 - 75K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/base/ToStringHelperTest.java
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 15:59:55 GMT 2026 - 22K bytes - Click Count (0) -
docs/ja/docs/tutorial/body.md
**FastAPI** はそれぞれを認識し、正しい場所からデータを取得します。 {* ../../docs_src/body/tutorial004_py310.py hl[16] *} 関数パラメータは以下のように認識されます: * パラメータが **path** でも宣言されている場合、パスパラメータとして使用されます。 * パラメータが **単数型**(`int`、`float`、`str`、`bool` など)の場合、**query** パラメータとして解釈されます。 * パラメータが **Pydanticモデル** の型として宣言されている場合、リクエスト **body** として解釈されます。 /// note | 備考 FastAPIは、デフォルト値 `= None` があるため、`q` の値が必須ではないことを認識します。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 8.2K bytes - Click Count (0) -
docs/ko/docs/features.md
### 검증 { #validation } * 다음을 포함해 대부분(혹은 전부?)의 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:06:26 GMT 2026 - 11K bytes - Click Count (0) -
docs/ja/docs/features.md
しかしデフォルトのままでも、すべて **うまく動きます**。 ### 検証 { #validation } * ほとんど(あるいはすべて?)の 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) -
docs/ja/docs/tutorial/security/simple-oauth2.md
前章から発展させて、完全なセキュリティフローに必要な不足部分を追加していきます。 ## `username` と `password` を取得する { #get-the-username-and-password } `username` と `password` を取得するために **FastAPI** のセキュリティユーティリティを使います。 OAuth2 では、「password flow」(ここで使用するフロー)を使う場合、クライアント/ユーザーはフォームデータとして `username` と `password` フィールドを送信する必要があります。 しかも、フィールド名はこの通りでなければなりません。つまり、`user-name` や `email` では動作しません。 ただし、フロントエンドで最終ユーザーにどう表示するかは自由です。 また、データベースのモデルでは任意の別名を使って構いません。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 12.1K bytes - Click Count (0) -
tests/test_response_model_as_return_annotation.py
class BaseUser(BaseModel): name: str class User(BaseUser): surname: str class DBUser(User): password_hash: str class Item(BaseModel): name: str price: float app = FastAPI() @app.get("/no_response_model-no_annotation-return_model") def no_response_model_no_annotation_return_model(): return User(name="John", surname="Doe")
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Tue Feb 17 09:59:14 GMT 2026 - 50.3K bytes - Click Count (0) -
src/main/webapp/WEB-INF/view/admin/user/admin_user_edit.jsp
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Feb 23 08:03:44 GMT 2026 - 31.4K bytes - Click Count (0)