Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1131 - 1140 of 2,272 for inf2 (0.02 seconds)

  1. android/guava-testlib/src/com/google/common/testing/TearDownStack.java

          stack.clear();
        }
        for (TearDown tearDown : stackCopy) {
          try {
            tearDown.tearDown();
          } catch (Throwable t) {
            if (suppressThrows) {
              logger.log(Level.INFO, "exception thrown during tearDown", t);
            } else {
              if (exception == null) {
                exception = t;
              } else {
                exception.addSuppressed(t);
              }
            }
          }
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Oct 01 13:14:50 GMT 2025
    - 2.7K bytes
    - Click Count (0)
  2. guava-testlib/src/com/google/common/testing/TearDownStack.java

          stack.clear();
        }
        for (TearDown tearDown : stackCopy) {
          try {
            tearDown.tearDown();
          } catch (Throwable t) {
            if (suppressThrows) {
              logger.log(Level.INFO, "exception thrown during tearDown", t);
            } else {
              if (exception == null) {
                exception = t;
              } else {
                exception.addSuppressed(t);
              }
            }
          }
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Oct 01 13:14:50 GMT 2025
    - 2.7K bytes
    - Click Count (0)
  3. src/main/java/jcifs/dcerpc/msrpc/MsrpcShareGetInfo.java

         * @throws IOException if there is an error retrieving the security information
         */
        public ACE[] getSecurity() throws IOException {
            final srvsvc.ShareInfo502 info502 = (srvsvc.ShareInfo502) this.info;
            if (info502.security_descriptor != null) {
                SecurityDescriptor sd;
                sd = new SecurityDescriptor(info502.security_descriptor, 0, info502.sd_size);
                return sd.getAces();
            }
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 2.3K bytes
    - Click Count (0)
  4. docs/tr/docs/how-to/conditional-openapi.md

    <div class="termy">
    
    ```console
    $ OPENAPI_URL= uvicorn main:app
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    ```
    
    </div>
    
    Böylece `/openapi.json`, `/docs` veya `/redoc` URL'lerine giderseniz, aşağıdaki gibi bir `404 Not Found` hatası alırsınız:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 2.6K bytes
    - Click Count (0)
  5. docs/en/docs/advanced/events.md

    {* ../../docs_src/events/tutorial002_py310.py hl[6] *}
    
    Here, the `shutdown` event handler function will write a text line `"Application shutdown"` to a file `log.txt`.
    
    /// info
    
    In the `open()` function, the `mode="a"` means "append", so, the line will be added after whatever is on that file, without overwriting the previous contents.
    
    ///
    
    /// tip
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 7.8K bytes
    - Click Count (0)
  6. docs/pt/docs/advanced/events.md

    {* ../../docs_src/events/tutorial002_py310.py hl[6] *}
    
    Aqui, a função de manipulador do evento `shutdown` escreverá uma linha de texto `"Application shutdown"` no arquivo `log.txt`.
    
    /// info | Informação
    
    Na função `open()`, o `mode="a"` significa "acrescentar", então a linha será adicionada depois do que já estiver naquele arquivo, sem sobrescrever o conteúdo anterior.
    
    ///
    
    /// tip | Dica
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 8.7K bytes
    - Click Count (0)
  7. docs/ko/docs/advanced/additional-responses.md

    {* ../../docs_src/additional_responses/tutorial001_py310.py hl[18,22] *}
    
    /// note | 참고
    
    `JSONResponse`를 직접 반환해야 한다는 점을 기억하세요.
    
    ///
    
    /// info | 정보
    
    `model` 키는 OpenAPI의 일부가 아닙니다.
    
    **FastAPI**는 여기에서 Pydantic 모델을 가져와 JSON Schema를 생성하고 올바른 위치에 넣습니다.
    
    올바른 위치는 다음과 같습니다:
    
    * 값으로 또 다른 JSON 객체(`dict`)를 가지는 `content` 키 안에:
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 9.6K bytes
    - Click Count (0)
  8. docs/zh/docs/advanced/additional-responses.md

    例如,要声明另一个状态码为 `404` 且具有 Pydantic 模型 `Message` 的响应,你可以这样写:
    
    {* ../../docs_src/additional_responses/tutorial001_py310.py hl[18,22] *}
    
    /// note | 注意
    
    记住你需要直接返回 `JSONResponse`。
    
    ///
    
    /// info | 信息
    
    `model` 键不是 OpenAPI 的一部分。
    
    **FastAPI** 会从这里获取 Pydantic 模型,生成 JSON Schema,并把它放到正确的位置。
    
    正确的位置是:
    
    * 在键 `content` 中,它的值是另一个 JSON 对象(`dict`),该对象包含:
        * 一个媒体类型作为键,例如 `application/json`,它的值是另一个 JSON 对象,该对象包含:
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 8.7K bytes
    - Click Count (0)
  9. docs/zh-hant/docs/tutorial/body-nested-models.md

                "name": "The Baz"
            }
        ]
    }
    ```
    
    /// info
    
    注意 `images` 鍵現在是一個由 image 物件組成的列表。
    
    ///
    
    ## 深度巢狀模型 { #deeply-nested-models }
    
    你可以定義任意深度的巢狀模型:
    
    {* ../../docs_src/body_nested_models/tutorial007_py310.py hl[7,12,18,21,25] *}
    
    /// info
    
    請注意,`Offer` 具有一個 `Item` 的列表,而每個 `Item` 又有一個可選的 `Image` 列表。
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 6.5K bytes
    - Click Count (0)
  10. docs/zh-hant/docs/tutorial/request-files.md

    # 請求中的檔案 { #request-files }
    
    你可以使用 `File` 定義由用戶端上傳的檔案。
    
    /// info
    
    若要接收上傳的檔案,請先安裝 [`python-multipart`](https://github.com/Kludex/python-multipart)。
    
    請先建立並啟用一個[虛擬環境](../virtual-environments.md),然後安裝,例如:
    
    ```console
    $ pip install python-multipart
    ```
    
    因為上傳的檔案是以「表單資料」送出的。
    
    ///
    
    ## 匯入 `File` { #import-file }
    
    從 `fastapi` 匯入 `File` 與 `UploadFile`:
    
    {* ../../docs_src/request_files/tutorial001_an_py310.py hl[3] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 6.6K bytes
    - Click Count (0)
Back to Top