- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 411 for 19 (0.02 seconds)
-
docs/ko/docs/tutorial/dependencies/classes-as-dependencies.md
* 기본값이 `100`인 `int` 쿼리 매개변수 `limit`. 두 경우 모두 데이터는 변환되고, 검증되며, OpenAPI 스키마에 문서화되는 등 여러 처리가 적용됩니다. ## 사용하기 { #use-it } 이제 이 클래스를 사용해 의존성을 선언할 수 있습니다. {* ../../docs_src/dependencies/tutorial002_an_py310.py hl[19] *} **FastAPI**는 `CommonQueryParams` 클래스를 호출합니다. 그러면 해당 클래스의 "인스턴스"가 생성되고, 그 인스턴스가 함수의 매개변수 `commons`로 전달됩니다. ## 타입 어노테이션 vs `Depends` { #type-annotation-vs-depends } 위 코드에서 `CommonQueryParams`를 두 번 작성하는 방식에 주목하세요:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Feb 14 08:57:01 GMT 2026 - 8K bytes - Click Count (0) -
api/README
compatibility. Starting with go1.19.txt, each API feature line must end in "#nnnnn" giving the GitHub issue number of the proposal issue that accepted the new API. This helps with our end-of-cycle audit of new APIs. The same requirement applies to next/* (described below), which will become a go1.XX.txt for XX >= 19. The next/ directory contains the only files intended to be mutated.
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Wed Jan 31 19:22:50 GMT 2024 - 1.2K bytes - Click Count (0) -
src/test/java/jcifs/smb1/smb1/SmbComNtTransactionTest.java
assertEquals(smbComNtTransaction.maxDataCount, SmbComTransaction.readInt4(dst, 15), "maxDataCount should be written correctly"); assertEquals(smbComNtTransaction.parameterCount, SmbComTransaction.readInt4(dst, 19), "parameterCount should be written correctly"); assertEquals(smbComNtTransaction.parameterOffset, SmbComTransaction.readInt4(dst, 23), "parameterOffset should be written correctly");
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 7.9K bytes - Click Count (0) -
internal/s3select/json/testdata/7.json
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Tue Jun 01 21:59:40 GMT 2021 - 86 bytes - Click Count (0) -
docs/en/docs/tutorial/dependencies/classes-as-dependencies.md
## Use it { #use-it } Now you can declare your dependency using this class. {* ../../docs_src/dependencies/tutorial002_an_py310.py hl[19] *} **FastAPI** calls the `CommonQueryParams` class. This creates an "instance" of that class and the instance will be passed as the parameter `commons` to your function.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Feb 11 18:32:12 GMT 2026 - 6.8K bytes - Click Count (0) -
docs_src/security/tutorial005_py310.py
"email": "******@****.***", "hashed_password": "$argon2id$v=19$m=65536,t=3,p=4$wagCPXjifgvUFBzq4hqe3w$CYaIb8sB+wtD+Vu/P4uod1+Qof8h+1g7bbDlBID48Rc", "disabled": False, }, "alice": { "username": "alice", "full_name": "Alice Chains", "email": "******@****.***", "hashed_password": "$argon2id$v=19$m=65536,t=3,p=4$g2/AV1zwopqUntPKJavBFw$BwpRGDCyUHLvHICnwijyX8ROGoiUPwNKZ7915MeYfCE",
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Feb 12 18:10:35 GMT 2026 - 5.3K bytes - Click Count (0) -
docs/zh/docs/tutorial/dependencies/classes-as-dependencies.md
* 一个 `limit` 查询参数,是 `int` 类型,默认值为 `100`。 在两个例子下,数据都将被转换、验证、在 OpenAPI schema 上文档化,等等。 ## 使用它 { #use-it } 现在,你可以使用这个类来声明你的依赖项了。 {* ../../docs_src/dependencies/tutorial002_an_py310.py hl[19] *} **FastAPI** 调用 `CommonQueryParams` 类。这将创建该类的一个 "实例",该实例将作为参数 `commons` 被传递给你的函数。 ## 类型注解 vs `Depends` { #type-annotation-vs-depends } 注意,我们在上面的代码中编写了两次`CommonQueryParams`: //// tab | Python 3.10+Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Feb 13 13:37:57 GMT 2026 - 6.8K bytes - Click Count (0) -
cmd/storagemetric_string.go
_ = x[storageMetricDelete-14] _ = x[storageMetricDeleteVersions-15] _ = x[storageMetricVerifyFile-16] _ = x[storageMetricWriteAll-17] _ = x[storageMetricDeleteVersion-18] _ = x[storageMetricWriteMetadata-19] _ = x[storageMetricUpdateMetadata-20] _ = x[storageMetricReadVersion-21] _ = x[storageMetricReadXL-22] _ = x[storageMetricReadAll-23] _ = x[storageMetricStatInfoFile-24] _ = x[storageMetricReadMultiple-25]
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Mon Aug 12 08:38:15 GMT 2024 - 2.2K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/dependencies/classes-as-dependencies.md
- 一個查詢參數 `limit`,型別為 `int`,預設為 `100`。 兩種情況下,資料都會被轉換、驗證,並記錄到 OpenAPI schema 中等。 ## 如何使用 { #use-it } 現在你可以用這個類別來宣告你的相依性。 {* ../../docs_src/dependencies/tutorial002_an_py310.py hl[19] *} **FastAPI** 會呼叫 `CommonQueryParams` 類別。這會建立該類別的一個「實例」,而該實例會以參數 `commons` 的形式傳給你的函式。 ## 型別註解與 `Depends` { #type-annotation-vs-depends } 注意上面程式碼裡我們寫了兩次 `CommonQueryParams`: //// tab | Python 3.10+Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Feb 14 08:15:26 GMT 2026 - 6.7K bytes - Click Count (0) -
internal/s3select/simdj/testdata/parking-citations-10.json.zst
Color":"BK","Location":"GEORGIA ST/OLYMPIC","Route":"1FB70","Agency":1,"ViolationCode":"8069A","ViolationDescr":"NO STOPPING/STANDING","Fine":93,"Latitude":99999,"Longitude":99999} {"Ticket":1106226590,"IssueData":"2015-09-15T00:00:00","IssueTime":"19","RPState":"CA","PlateExpiry":"201507","Make":"CHEV","BodyStyle":"VN","Color":"GY","Location":"SAN PEDRO S/O BOYD","Route":"1A35W","Agency":1,"ViolationCode":"4000A1","ViolationDescr":"NO EVIDENCE OF REG","Fine":50,"Latitude":99999,"Longitude":99999}...
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Tue Jun 01 21:59:40 GMT 2021 - 693 bytes - Click Count (0)