Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1031 - 1040 of 1,150 for Little (0.09 seconds)

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

     * factory classes like:
     *
     * <pre>
     * interface Book {...}
     * public class Books {
     *   public static Book hardcover(String title) {...}
     *   public static Book paperback(String title) {...}
     * }
     * </pre>
     *
     * <p>And all the created {@code Book} instances can be tested with:
     *
     * <pre>
     * new ClassSanityTester()
     *     .forAllPublicStaticMethods(Books.class)
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Apr 02 14:49:41 GMT 2026
    - 32.5K bytes
    - Click Count (0)
  2. docs/es/docs/virtual-environments.md

    $ cd awesome-project
    ```
    
    </div>
    
    ## Crea un Entorno Virtual { #create-a-virtual-environment }
    
    Cuando empiezas a trabajar en un proyecto de Python **por primera vez**, crea un entorno virtual **<dfn title="hay otras opciones, esto es solo una guía sencilla">dentro de tu proyecto</dfn>**.
    
    /// tip | Consejo
    
    Solo necesitas hacer esto **una vez por proyecto**, no cada vez que trabajas.
    
    ///
    
    //// tab | `venv`
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 22.6K bytes
    - Click Count (0)
  3. android/guava-tests/test/com/google/common/util/concurrent/MoreExecutorsTest.java

    import org.jspecify.annotations.NullUnmarked;
    import org.jspecify.annotations.Nullable;
    import org.mockito.InOrder;
    
    /**
     * Tests for MoreExecutors.
     *
     * @author Kyle Littlefield (klittle)
     */
    @NullUnmarked
    @GwtIncompatible
    @J2ktIncompatible
    public class MoreExecutorsTest extends JSR166TestCase {
    
      private static final Runnable EMPTY_RUNNABLE = () -> {};
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 16 22:45:21 GMT 2026
    - 26.1K bytes
    - Click Count (0)
  4. docs/ja/docs/alternatives.md

    しかし、それはPythonの型ヒントが存在する前に作られたものです。そのため、すべての<dfn title="データがどのように構成されるべきかの定義">スキーマ</dfn>を定義するためには、Marshmallowが提供する特定のユーティリティやクラスを使用する必要があります。
    
    /// check | **FastAPI**へ与えたインスピレーション
    
    コードで「スキーマ」を定義し、データの型やバリデーションを自動で提供する点。
    
    ///
    
    ### [Webargs](https://webargs.readthedocs.io/en/latest/) { #webargs }
    
    APIに求められる他の大きな機能として、<dfn title="Pythonデータへの読み込みと変換">受信したリクエストデータのパース</dfn>があります。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 30.6K bytes
    - Click Count (0)
  5. docs/ko/docs/tutorial/schema-extra-example.md

    물론 여러 `examples`를 넘길 수 있습니다:
    
    {* ../../docs_src/schema_extra_example/tutorial004_an_py310.py hl[23:38] *}
    
    이와 같이 하면 예제들은 그 본문 데이터의 내부 **JSON 스키마**의 일부가 될 것입니다.
    
    그럼에도 불구하고, 지금 <dfn title="2023-08-26">이 문서를 작성하는 시간</dfn>에, 문서 UI를 보여주는 역할을 맡은 Swagger UI는 **JSON 스키마** 속 데이터를 위한 여러 예제의 표현을 지원하지 않습니다. 하지만 해결 방안을 밑에서 읽어보세요.
    
    ### OpenAPI-특화 `examples` { #openapi-specific-examples }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 10.3K bytes
    - Click Count (0)
  6. docs/zh-hant/docs/tutorial/dependencies/index.md

    # 依賴 { #dependencies }
    
    **FastAPI** 內建一套強大且直覺的 **<dfn title="也稱為:元件、資源、提供者、服務、可注入項">依賴注入</dfn>** 系統。
    
    它被設計為易於使用,使任何開發者都能輕鬆將其他元件與 **FastAPI** 整合。
    
    ## 什麼是「依賴注入」 { #what-is-dependency-injection }
    
    在程式設計中,「依賴注入」的意思是:你的程式碼(此處指你的「路徑操作函式 (path operation functions)」)可以宣告它為了正常運作所需要的各種東西:也就是「依賴」。
    
    接著,這個系統(此處是 **FastAPI**)會負責做任何必要的事,將這些所需的依賴提供給你的程式碼(「注入」依賴)。
    
    當你需要以下情境時,這特別有用:
    
    * 共享邏輯(相同的邏輯一次又一次地使用)。
    * 共用資料庫連線。
    * 強制套用安全性、驗證、角色要求等。
    * 以及許多其他事情...
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 8.9K bytes
    - Click Count (0)
  7. src/main/resources/fess_label_pt_BR.properties

    labels.user_name=Nome de usuário
    labels.login=Login
    labels.login.placeholder_username=Nome de usuário
    labels.login.placeholder_password=Senha
    labels.login.title=Login
    labels.index_label=Rótulo
    labels.index_lang=Idioma preferido
    labels.index_sort=Ordenar
    labels.index_num=Número de resultados
    labels.logout_title=Logout
    labels.logout=Logout
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 53.9K bytes
    - Click Count (0)
  8. docs/ko/docs/advanced/openapi-callbacks.md

    이 경우, 그 *external API*가 어떤 형태여야 하는지 문서화하고 싶을 수 있습니다. 어떤 *경로 처리*를 가져야 하는지, 어떤 body를 기대하는지, 어떤 응답을 반환해야 하는지 등입니다.
    
    ## 콜백이 있는 앱 { #an-app-with-callbacks }
    
    예시로 확인해 보겠습니다.
    
    청구서를 생성할 수 있는 앱을 개발한다고 가정해 보세요.
    
    이 청구서는 `id`, `title`(선택 사항), `customer`, `total`을 갖습니다.
    
    여러분의 API 사용자(외부 개발자)는 POST 요청으로 여러분의 API에서 청구서를 생성합니다.
    
    그 다음 여러분의 API는(가정해 보면):
    
    * 청구서를 외부 개발자의 고객에게 전송합니다.
    * 돈을 수금합니다.
    * API 사용자(외부 개발자)의 API로 다시 알림을 보냅니다.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 8.6K bytes
    - Click Count (0)
  9. docs/pt/docs/tutorial/dependencies/index.md

    # Dependências { #dependencies }
    
    O **FastAPI** possui um poderoso, mas intuitivo sistema de **<dfn title="também conhecida como componentes, recursos, provedores, serviços, injetáveis">Injeção de Dependência</dfn>**.
    
    Esse sistema foi pensado para ser fácil de usar, e permitir que qualquer desenvolvedor possa integrar facilmente outros componentes ao **FastAPI**.
    
    ## O que é "Injeção de Dependência" { #what-is-dependency-injection }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 10.6K bytes
    - Click Count (0)
  10. docs/zh-hant/docs/tutorial/schema-extra-example.md

    ### `Body` 搭配多個 `examples` { #body-with-multiple-examples }
    
    當然,你也可以傳入多個 `examples`:
    
    {* ../../docs_src/schema_extra_example/tutorial004_an_py310.py hl[23:38] *}
    
    這麼做時,這些範例會成為該 body 資料內部 **JSON Schema** 的一部分。
    
    然而,<dfn title="2023-08-26">撰寫本文時</dfn>,負責呈現文件 UI 的工具 Swagger UI 並不支援在 **JSON Schema** 中顯示多個範例。不過請繼續往下閱讀以取得變通方式。
    
    ### OpenAPI 特定的 `examples` { #openapi-specific-examples }
    
    在 **JSON Schema** 支援 `examples` 之前,OpenAPI 就已支援另一個同名的欄位 `examples`。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 8.4K bytes
    - Click Count (0)
Back to Top