Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 851 - 860 of 1,289 for bool (0.06 seconds)

  1. docs/ko/docs/python-types.md

    # 파이썬 타입 소개 { #python-types-intro }
    
    파이썬은 선택적으로 "타입 힌트(type hints)"(“type annotations”라고도 함)를 지원합니다.
    
    이러한 **"타입 힌트"** 또는 애너테이션은 변수의 <dfn title="예: str, int, float, bool">타입</dfn>을 선언할 수 있게 해주는 특수한 구문입니다.
    
    변수의 타입을 선언하면 에디터와 도구가 더 나은 지원을 제공할 수 있습니다.
    
    이 문서는 파이썬 타입 힌트에 대한 **빠른 자습서 / 내용 환기**입니다. **FastAPI**와 함께 사용하기 위해 필요한 최소한만 다룹니다... 실제로는 아주 조금만 있으면 됩니다.
    
    **FastAPI**는 모두 이러한 타입 힌트에 기반을 두고 있으며, 이는 많은 장점과 이점을 제공합니다.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 13K bytes
    - Click Count (0)
  2. docs/fr/docs/tutorial/body.md

    Les paramètres de la fonction seront reconnus comme tel :
    
    * Si le paramètre est aussi déclaré dans le **chemin**, il sera utilisé comme paramètre de chemin.
    * Si le paramètre est d'un **type singulier** (comme `int`, `float`, `str`, `bool`, etc.), il sera interprété comme un paramètre de **requête**.
    * Si le paramètre est déclaré comme ayant pour type un **modèle Pydantic**, il sera interprété comme faisant partie du **corps** de la requête.
    
    /// note | Remarque
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 7.8K bytes
    - Click Count (0)
  3. docs/de/docs/tutorial/path-params.md

    Sie können für Typdeklarationen auch `str`, `float`, `bool` und viele andere komplexe Datentypen verwenden.
    
    Mehrere davon werden wir in den nächsten Kapiteln erkunden.
    
    ## Die Reihenfolge ist wichtig { #order-matters }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 10K bytes
    - Click Count (0)
  4. cmd/erasure-healing_test.go

    	ifi.Erasure.Index = 1
    
    	testCases := []struct {
    		name             string
    		metaArr          []FileInfo
    		errs             []error
    		dataErrs         map[int][]int
    		expectedMeta     FileInfo
    		expectedDangling bool
    	}{
    		{
    			name: "FileInfoExists-case1",
    			metaArr: []FileInfo{
    				{},
    				{},
    				fi,
    				fi,
    			},
    			errs: []error{
    				errFileNotFound,
    				errDiskNotFound,
    				nil,
    				nil,
    			},
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 48.5K bytes
    - Click Count (0)
  5. docs/tr/docs/tutorial/path-params.md

    Tüm veri doğrulamaları, arka planda [Pydantic](https://docs.pydantic.dev/) tarafından gerçekleştirilir; böylece onun tüm avantajlarından faydalanırsınız. Ve emin ellerde olduğunuzu bilirsiniz.
    
    Aynı tip tanımlarını `str`, `float`, `bool` ve daha birçok karmaşık veri tipiyle kullanabilirsiniz.
    
    Bunların birkaçı, eğitimin sonraki bölümlerinde ele alınacaktır.
    
    ## Sıralama Önemlidir { #order-matters }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 9.7K bytes
    - Click Count (0)
  6. docs/zh-hant/docs/tutorial/body.md

    你也可以同時宣告**本文**、**路徑**與**查詢**參數。
    
    **FastAPI** 會分別辨識並從正確的位置取得資料。
    
    {* ../../docs_src/body/tutorial004_py310.py hl[16] *}
    
    函式參數的辨識方式如下:
    
    - 如果參數同時在**路徑**中宣告,則作為路徑參數。
    - 如果參數是**單一型別**(像是 `int`、`float`、`str`、`bool` 等),會被視為**查詢**參數。
    - 如果參數宣告為 **Pydantic 模型** 型別,會被視為請求**本文**。
    
    /// note
    
    FastAPI 會因為預設值 `= None` 而知道 `q` 的值不是必填。
    
    `str | None` 並非 FastAPI 用來判斷是否必填的依據;它會因為有預設值 `= None` 而知道不是必填。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 6K bytes
    - Click Count (0)
  7. docs/es/docs/tutorial/path-params.md

    Puedes usar las mismas declaraciones de tipo con `str`, `float`, `bool` y muchos otros tipos de datos complejos.
    
    Varios de estos se exploran en los siguientes capítulos del tutorial.
    
    ## El orden importa { #order-matters }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 9.4K bytes
    - Click Count (0)
  8. src/cmd/cgo/doc.go

    from Go 1.9 and earlier, use the cftype or jni rewrites in the Go fix tool:
    
    	go tool fix -r cftype <pkg>
    	go tool fix -r jni <pkg>
    
    It will replace nil with 0 in the appropriate places.
    
    The EGLDisplay case was introduced in Go 1.12. Use the egl rewrite
    to auto-update code from Go 1.11 and earlier:
    
    	go tool fix -r egl <pkg>
    
    The EGLConfig case was introduced in Go 1.15. Use the eglconf rewrite
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Mon Dec 08 22:37:14 GMT 2025
    - 43.9K bytes
    - Click Count (0)
  9. api/go1.16.txt

    pkg go/build/constraint, method (*NotExpr) String() string
    pkg go/build/constraint, method (*OrExpr) Eval(func(string) bool) bool
    pkg go/build/constraint, method (*OrExpr) String() string
    pkg go/build/constraint, method (*SyntaxError) Error() string
    pkg go/build/constraint, method (*TagExpr) Eval(func(string) bool) bool
    pkg go/build/constraint, method (*TagExpr) String() string
    pkg go/build/constraint, type AndExpr struct
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Click Count (0)
  10. docs/uk/docs/tutorial/path-params.md

    Ви можете використовувати ті самі оголошення типів з `str`, `float`, `bool` та багатьма іншими складними типами даних.
    
    Декілька з них розглядаються в наступних розділах посібника.
    
    ## Порядок має значення { #order-matters }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 14K bytes
    - Click Count (0)
Back to Top