Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 561 - 570 of 581 for ello (0.07 seconds)

  1. docs/uk/docs/deployment/docker.md

    * Створіть порожній файл `__init__.py`.
    * Створіть файл `main.py` з вмістом:
    
    ```Python
    from fastapi import FastAPI
    
    app = FastAPI()
    
    
    @app.get("/")
    def read_root():
        return {"Hello": "World"}
    
    
    @app.get("/items/{item_id}")
    def read_item(item_id: int, q: str | None = None):
        return {"item_id": item_id, "q": q}
    ```
    
    ### Dockerfile { #dockerfile }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 44.2K bytes
    - Click Count (0)
  2. okhttp/src/jvmTest/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    olayan
    
    // olayangroup : Competrol (Luxembourg) Sarl
    // https://www.iana.org/domains/root/db/olayangroup.html
    olayangroup
    
    // ollo : Dish DBS Corporation
    // https://www.iana.org/domains/root/db/ollo.html
    ollo
    
    // omega : The Swatch Group Ltd
    // https://www.iana.org/domains/root/db/omega.html
    omega
    
    // one : One.com A/S
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Fri Dec 27 13:39:56 GMT 2024
    - 309.7K bytes
    - Click Count (1)
  3. docs/ko/docs/virtual-environments.md

    pydantic==2.8.0
    ```
    
    ///
    
    ## 프로그램 실행 { #run-your-program }
    
    가상 환경을 활성화한 뒤에는 프로그램을 실행할 수 있으며, 설치한 패키지가 들어있는 가상 환경 내부의 Python을 사용하게 됩니다.
    
    <div class="termy">
    
    ```console
    $ python main.py
    
    Hello World
    ```
    
    </div>
    
    ## 에디터 설정 { #configure-your-editor }
    
    아마 에디터를 사용할 텐데, 자동 완성과 인라인 오류 표시를 받을 수 있도록 생성한 가상 환경을 사용하도록 설정하세요(대부분 자동 감지합니다).
    
    예를 들면:
    
    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)
  4. docs/pt/docs/deployment/docker.md

    * Crie um arquivo vazio `__init__.py`.
    * Crie um arquivo `main.py` com:
    
    ```Python
    from fastapi import FastAPI
    
    app = FastAPI()
    
    
    @app.get("/")
    def read_root():
        return {"Hello": "World"}
    
    
    @app.get("/items/{item_id}")
    def read_item(item_id: int, q: str | None = None):
        return {"item_id": item_id, "q": q}
    ```
    
    ### Dockerfile { #dockerfile }
    
    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)
  5. docs/zh-hant/docs/alternatives.md

    ```Python
    response = requests.get("http://example.com/some/url")
    ```
    
    相對地,FastAPI 的 API 路徑操作(path operation)可能像這樣:
    
    ```Python hl_lines="1"
    @app.get("/some/url")
    def read_url():
        return {"message": "Hello World"}
    ```
    
    看看 `requests.get(...)` 與 `@app.get(...)` 的相似之處。
    
    /// check | 啟發 **FastAPI**
    
    * 擁有簡單直觀的 API。
    * 直接使用 HTTP 方法名稱(操作),以直接、直觀的方式表達。
    * 具備合理的預設值,同時提供強大的自訂能力。
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 20K bytes
    - Click Count (0)
  6. docs/ko/docs/alternatives.md

    ```Python
    response = requests.get("http://example.com/some/url")
    ```
    
    이에 대응하는 FastAPI의 API *경로 처리*는 다음과 같이 보일 수 있습니다:
    
    ```Python hl_lines="1"
    @app.get("/some/url")
    def read_url():
        return {"message": "Hello World"}
    ```
    
    `requests.get(...)`와 `@app.get(...)`의 유사성을 확인해 보세요.
    
    /// check | **FastAPI**에 영감을 준 것
    
    * 단순하고 직관적인 API를 갖기.
    * HTTP method 이름(operations)을 직접, 직관적이고 명확한 방식으로 사용하기.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 26.3K bytes
    - Click Count (0)
  7. docs/zh-hant/docs/deployment/docker.md

    * 建立一個 `app` 目錄並進入。
    * 建立一個空的 `__init__.py` 檔案。
    * 建立一個 `main.py` 檔案,內容如下:
    
    ```Python
    from fastapi import FastAPI
    
    app = FastAPI()
    
    
    @app.get("/")
    def read_root():
        return {"Hello": "World"}
    
    
    @app.get("/items/{item_id}")
    def read_item(item_id: int, q: str | None = None):
        return {"item_id": item_id, "q": q}
    ```
    
    ### Dockerfile { #dockerfile }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 24.9K bytes
    - Click Count (0)
  8. okhttp/src/jvmTest/kotlin/okhttp3/internal/cache/DiskLruCacheTest.kt

        // attempt to delete the file. Do not explicitly close the cache here so the entry is left as
        // incomplete.
        val creator = cache.edit("k1")!!
        creator.newSink(0).buffer().use {
          it.writeUtf8("Hello")
        }
    
        // Simulate a severe Filesystem failure on the first initialization.
        filesystem.setFaultyDelete(cacheDir / "k1.0.tmp", true)
        filesystem.setFaultyDelete(cacheDir, true)
        cache =
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Feb 03 22:17:59 GMT 2026
    - 59.4K bytes
    - Click Count (0)
  9. src/test/java/jcifs/smb/SmbFileIntegrationTest.java

        }
    
        @Test
        void testFileWriteAndRead() throws Exception {
            SmbFile file = new SmbFile(baseUrl + "shared/content.txt", context);
            String testContent = "Hello, SMB World!\nThis is a test file.";
    
            // Write content to file
            try (OutputStream out = file.openOutputStream(false)) {
                out.write(testContent.getBytes("UTF-8"));
            }
    
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 56K bytes
    - Click Count (0)
  10. docs/ko/docs/deployment/docker.md

    * `app` 디렉터리를 만들고 들어갑니다.
    * 빈 파일 `__init__.py`를 만듭니다.
    * 다음 내용으로 `main.py` 파일을 만듭니다:
    
    ```Python
    from fastapi import FastAPI
    
    app = FastAPI()
    
    
    @app.get("/")
    def read_root():
        return {"Hello": "World"}
    
    
    @app.get("/items/{item_id}")
    def read_item(item_id: int, q: str | None = None):
        return {"item_id": item_id, "q": q}
    ```
    
    ### Dockerfile { #dockerfile }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 32.6K bytes
    - Click Count (0)
Back to Top