Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 581 - 590 of 5,831 for What (0.04 seconds)

  1. docs/ko/docs/tutorial/request-files.md

    ///
    
    /// note | Starlette 기술 세부사항
    
    **FastAPI**의 `UploadFile` 은 **Starlette**의 `UploadFile` 을 직접적으로 상속받지만, **Pydantic** 및 FastAPI의 다른 부분들과의 호환성을 위해 필요한 부분들이 추가되었습니다.
    
    ///
    
    ## "폼 데이터"란 { #what-is-form-data }
    
    HTML의 폼들(`<form></form>`)이 서버에 데이터를 전송하는 방식은 대개 데이터에 JSON과는 다른 "특별한" 인코딩을 사용합니다.
    
    **FastAPI**는 JSON 대신 올바른 위치에서 데이터를 읽을 수 있도록 합니다.
    
    /// note | 기술 세부사항
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 8.3K bytes
    - Click Count (0)
  2. docs/es/docs/tutorial/dependencies/dependencies-with-yield.md

    ## Context Managers { #context-managers }
    
    ### Qué son los "Context Managers" { #what-are-context-managers }
    
    Los "Context Managers" son aquellos objetos de Python que puedes usar en un `with` statement.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 13.3K bytes
    - Click Count (0)
  3. docs/zh-hant/docs/virtual-environments.md

    這會從 [PyPI](https://pypi.org/project/fastapi/) 下載一個壓縮檔案,其中包含 FastAPI 的程式碼。
    
    它還會**下載** FastAPI 所依賴的其他套件的檔案。
    
    接著,它會**解壓**所有這些檔案,並將它們放在你的電腦中的某個目錄中。
    
    預設情況下,這些下載和解壓的檔案會放置於隨 Python 安裝的目錄中,即**全域環境**。
    
    ## 什麼是虛擬環境 { #what-are-virtual-environments }
    
    解決套件都安裝在全域環境中的問題方法是為你所做的每個專案使用一個**虛擬環境**。
    
    虛擬環境是一個**目錄**,與全域環境非常相似,你可以在其中針對某個專案安裝套件。
    
    這樣,每個專案都會有自己的虛擬環境(`.venv` 目錄),其中包含自己的套件。
    
    ```mermaid
    flowchart TB
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 21K bytes
    - Click Count (0)
  4. docs/tr/docs/deployment/docker.md

    # If running behind a proxy like Nginx or Traefik add --proxy-headers
    # CMD ["fastapi", "run", "app/main.py", "--port", "80", "--proxy-headers"]
    ```
    
    </details>
    
    ## Container Nedir { #what-is-a-container }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 29.6K bytes
    - Click Count (0)
  5. src/archive/zip/reader_test.go

    		b[0x11]++
    		b[0x9d]++
    
    		// TODO(bradfitz): add a new test that only corrupts
    		// one of these values, and verify that that's also an
    		// error. Currently, the reader code doesn't verify the
    		// fileheader and TOC's crc32 match if they're both
    		// non-zero and only the second line above, the TOC,
    		// is what matters.
    	})
    }
    
    // rZipBytes returns the bytes of a recursive zip file, without
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Thu Jan 15 18:35:56 GMT 2026
    - 57.9K bytes
    - Click Count (0)
  6. CHANGELOG/CHANGELOG-1.16.md

    - Verify that CRD default values in OpenAPI specs are pruned, with the exceptions of values under `metadata`. ([#78829](https://github.com/kubernetes/kubernetes/pull/78829), [@sttts](https://github.com/sttts))
    - Fixes a bug that when there is a "connection refused" error, the reflector's ListAndWatch func will return directly but what expected is that sleep 1 second and rewatch since the specified resourceVersion.
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Wed Oct 23 20:13:20 GMT 2024
    - 345.2K bytes
    - Click Count (0)
  7. RELEASE.md

            etc.) may break.
        *   Code that uses full path for `get_concrete_function` to trace Keras
            symbolic inputs directly should switch to building matching
            `tf.TensorSpec`s directly and tracing the `TensorSpec` objects.
        *   Code that relies on the exact number and names of the op layers that
            TensorFlow operations were converted into may have changed.
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Mon Mar 30 18:31:38 GMT 2026
    - 746.5K bytes
    - Click Count (3)
  8. docs/fr/docs/deployment/docker.md

    # Si vous exécutez derrière un proxy comme Nginx ou Traefik, ajoutez --proxy-headers
    # CMD ["fastapi", "run", "app/main.py", "--port", "80", "--proxy-headers"]
    ```
    
    </details>
    
    ## Qu'est-ce qu'un conteneur { #what-is-a-container }
    
    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)
  9. docs/ko/docs/virtual-environments.md

    또한 FastAPI가 의존하는 다른 패키지들의 파일도 **다운로드**합니다.
    
    그 다음 모든 파일을 **압축 해제**하고 컴퓨터의 한 디렉터리에 넣습니다.
    
    기본적으로, 다운로드하고 압축 해제한 파일들은 Python 설치와 함께 제공되는 디렉터리, 즉 **전역 환경**에 저장됩니다.
    
    ## 가상 환경이란 무엇인가요 { #what-are-virtual-environments }
    
    전역 환경에 모든 패키지를 두는 문제에 대한 해결책은 작업하는 **각 프로젝트마다 가상 환경**을 사용하는 것입니다.
    
    가상 환경은 전역 환경과 매우 유사한 하나의 **디렉터리**이며, 프로젝트의 패키지를 설치할 수 있습니다.
    
    이렇게 하면 각 프로젝트는 자체 가상 환경(`.venv` 디렉터리)과 자체 패키지를 갖게 됩니다.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 24.8K bytes
    - Click Count (0)
  10. docs/pt/docs/deployment/docker.md

    # Se estiver executando atrás de um proxy como Nginx ou Traefik, adicione --proxy-headers
    # CMD ["fastapi", "run", "app/main.py", "--port", "80", "--proxy-headers"]
    ```
    
    </details>
    
    ## O que é um Contêiner { #what-is-a-container }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 30.9K bytes
    - Click Count (0)
Back to Top