Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 281 - 290 of 377 for edited (0.25 seconds)

  1. docs/fr/docs/tutorial/dependencies/index.md

    ///
    
    Les dépendances continueront de fonctionner comme prévu, et la **meilleure partie** est que **l’information de type sera conservée**, ce qui signifie que votre éditeur pourra continuer à vous fournir **l’autocomplétion**, **des erreurs en ligne**, etc. Idem pour d’autres outils comme `mypy`.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 11.1K bytes
    - Click Count (0)
  2. docs/es/docs/advanced/generate-clients.md

    Por ejemplo, podrías querer probar:
    
    * [Speakeasy](https://speakeasy.com/editor?utm_source=fastapi+repo&utm_medium=github+sponsorship)
    * [Stainless](https://www.stainless.com/?utm_source=fastapi&utm_medium=referral)
    * [liblab](https://developers.liblab.com/tutorials/sdk-for-fastapi?utm_source=fastapi)
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 10.4K bytes
    - Click Count (0)
  3. docs/ko/docs/tutorial/body.md

    모델의 JSON 스키마는 생성된 OpenAPI 스키마에 포함되며 대화형 API 문서에 표시됩니다:
    
    <img src="/img/tutorial/body/image01.png">
    
    이를 필요로 하는 각각의 *경로 처리* 내부의 API 문서에도 사용됩니다:
    
    <img src="/img/tutorial/body/image02.png">
    
    ## 편집기 지원 { #editor-support }
    
    편집기에서, 함수 내에서 타입 힌트와 완성을 어디서나 (만약 Pydantic model 대신에 `dict`을 받을 경우 나타나지 않을 수 있습니다) 받을 수 있습니다:
    
    <img src="/img/tutorial/body/image03.png">
    
    잘못된 타입 연산에 대한 에러 확인도 받을 수 있습니다:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 8K bytes
    - Click Count (0)
  4. CHANGELOG/CHANGELOG-1.2.md

    paused deployments can’t be rolled back (this is expected), and the command
    waits for rollback events to return the result. Users should use “kubectl
    rollout resume” to resume a deployment before rolling back.
      * “kubectl edit <list>” will open the editor multiple times, once for each
    resource in the list.
      * If you create HPA object using autoscaling/v1 API without specifying
    targetCPUUtilizationPercentage and read it using kubectl it will print default
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Fri Dec 04 06:36:19 GMT 2020
    - 41.4K bytes
    - Click Count (0)
  5. docs/fr/docs/deployment/docker.md

    l'image : si un fichier n'a pas changé depuis la dernière construction de l'image de conteneur, alors il va **réutiliser la même couche** créée la dernière fois, au lieu de recopier le fichier et créer une nouvelle couche à partir de zéro.
    
    Éviter simplement la copie des fichiers n'améliore pas nécessairement les choses de manière significative, mais comme il a utilisé le cache pour cette étape, il peut **utiliser le cache pour l'étape suivante**. Par exemple, il peut utiliser le cache pour...
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 32.3K bytes
    - Click Count (0)
  6. docs/zh-hant/docs/tutorial/first-steps.md

    你也可以把檔案路徑傳給 `fastapi dev` 指令,它會自動猜測要使用的 FastAPI app 物件:
    
    ```console
    $ fastapi dev main.py
    ```
    
    但這樣每次執行 `fastapi` 指令時都要記得傳入正確路徑。
    
    此外,其他工具可能找不到它,例如 [VS Code 擴充套件](../editor-support.md) 或 [FastAPI Cloud](https://fastapicloud.com),因此建議在 `pyproject.toml` 中使用 `entrypoint`。
    
    ### 部署你的應用程式(可選) { #deploy-your-app-optional }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 13.3K bytes
    - Click Count (0)
  7. src/cmd/api/main_test.go

    			if methodNames == nil {
    				methodNames = make(map[string]bool)
    			}
    			methodNames[m.Obj().Name()] = true
    		}
    	}
    
    	// emit methods with pointer receiver; exclude
    	// methods that we have emitted already
    	// (the method set of *T includes the methods of T)
    	pset := types.NewMethodSet(types.NewPointer(typ))
    	for i, n := 0, pset.Len(); i < n; i++ {
    		m := pset.At(i)
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Mon Mar 02 13:20:41 GMT 2026
    - 31.4K bytes
    - Click Count (0)
  8. docs/tr/docs/advanced/security/oauth2-scopes.md

    Ayrıca `fastapi.security` içinden import edilen, `SecurityScopes` tipinde özel bir parametre tanımlıyoruz.
    
    Bu `SecurityScopes` sınıfı, `Request`'e benzer (`Request`, request nesnesini doğrudan almak için kullanılmıştı).
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 14.7K bytes
    - Click Count (0)
  9. src/archive/zip/struct.go

    	// If only the MS-DOS date is present, the timezone is assumed to be UTC.
    	//
    	// When writing, an extended timestamp (which is timezone-agnostic) is
    	// always emitted. The legacy MS-DOS date field is encoded according to the
    	// location of the Modified time.
    	Modified time.Time
    
    	// ModifiedTime is an MS-DOS-encoded time.
    	//
    	// Deprecated: Use Modified instead.
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Tue May 28 21:41:09 GMT 2024
    - 12.1K bytes
    - Click Count (0)
  10. docs/en/docs/tutorial/first-steps.md

    $ fastapi dev main.py
    ```
    
    But you would have to remember to pass the correct path every time you call the `fastapi` command.
    
    Additionally, other tools might not be able to find it, for example the [VS Code Extension](../editor-support.md) or [FastAPI Cloud](https://fastapicloud.com), so it is recommended to use the `entrypoint` in `pyproject.toml`.
    
    ### Deploy your app (optional) { #deploy-your-app-optional }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Mar 07 09:29:03 GMT 2026
    - 13.4K bytes
    - Click Count (0)
Back to Top