Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 21 - 30 of 93 for vibe (0.02 seconds)

  1. docs/zh/docs/project-generation.md

      - 🔍 [Pydantic](https://docs.pydantic.dev),FastAPI 使用,用于数据验证与配置管理。
      - 💾 [PostgreSQL](https://www.postgresql.org) 作为 SQL 数据库。
    - 🚀 [React](https://react.dev) 用于前端。
      - 💃 使用 TypeScript、hooks、Vite 以及现代前端技术栈的其他部分。
      - 🎨 [Tailwind CSS](https://tailwindcss.com) 与 [shadcn/ui](https://ui.shadcn.com) 用于前端组件。
      - 🤖 自动生成的前端客户端。
      - 🧪 [Playwright](https://playwright.dev) 用于端到端测试。
      - 🦇 支持暗黑模式。
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 1.8K bytes
    - Click Count (0)
  2. docs/fr/docs/how-to/conditional-openapi.md

    Nous l'utilisons ensuite lors de la création de l'application `FastAPI`.
    
    Vous pouvez alors désactiver OpenAPI (y compris les interfaces utilisateur des documents) en définissant la variable d'environnement `OPENAPI_URL` sur la chaîne vide, comme ceci :
    
    <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>
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 3K bytes
    - Click Count (0)
  3. docs/tr/docs/project-generation.md

      - 💾 SQL veritabanı olarak [PostgreSQL](https://www.postgresql.org).
    - 🚀 frontend için [React](https://react.dev).
      - 💃 TypeScript, hooks, Vite ve modern bir frontend stack'inin diğer parçalarını kullanır.
      - 🎨 frontend component'leri için [Tailwind CSS](https://tailwindcss.com) ve [shadcn/ui](https://ui.shadcn.com).
      - 🤖 Otomatik üretilen bir frontend client.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 2.1K bytes
    - Click Count (0)
  4. docs/pt/docs/project-generation.md

        - 💾 [PostgreSQL](https://www.postgresql.org) como banco de dados SQL.
    - 🚀 [React](https://react.dev) para o frontend.
        - 💃 Usando TypeScript, hooks, Vite, e outras partes de uma _stack_ frontend moderna.
        - 🎨 [Tailwind CSS](https://tailwindcss.com) e [shadcn/ui](https://ui.shadcn.com) para os componentes de frontend.
        - 🤖 Um cliente frontend automaticamente gerado.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 2.1K bytes
    - Click Count (0)
  5. docs/pt/docs/tutorial/bigger-applications.md

    ///
    
    Um único ponto `.`, como em:
    
    ```Python
    from .dependencies import get_token_header
    ```
    
    significaria:
    
    * Começando no mesmo pacote em que este módulo (o arquivo `app/routers/items.py`) vive (o diretório `app/routers/`)...
    * encontre o módulo `dependencies` (um arquivo imaginário em `app/routers/dependencies.py`)...
    * e dele, importe a função `get_token_header`.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 20.3K bytes
    - Click Count (0)
  6. android/guava/src/com/google/common/collect/LinkedHashMultimap.java

       * <i>adding</i> to the returned set is not possible.
       */
      @Override
      public Set<K> keySet() {
        return super.keySet();
      }
    
      /**
       * Returns a collection of all values in the multimap. Changes to the returned collection will
       * update the underlying multimap, and vice versa.
       *
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Dec 26 20:08:09 GMT 2025
    - 19.2K bytes
    - Click Count (0)
  7. guava/src/com/google/common/collect/LinkedHashMultimap.java

       * <i>adding</i> to the returned set is not possible.
       */
      @Override
      public Set<K> keySet() {
        return super.keySet();
      }
    
      /**
       * Returns a collection of all values in the multimap. Changes to the returned collection will
       * update the underlying multimap, and vice versa.
       *
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Dec 26 20:08:09 GMT 2025
    - 20K bytes
    - Click Count (0)
  8. docs/ja/docs/project-generation.md

      - 🔍 FastAPIで使用される、データバリデーションと設定管理向けの [Pydantic](https://docs.pydantic.dev)。
      - 💾 SQLデータベースとしての [PostgreSQL](https://www.postgresql.org)。
    - 🚀 フロントエンド向けの [React](https://react.dev)。
      - 💃 TypeScript、hooks、Vite、その他のモダンなフロントエンドスタックの各要素を使用。
      - 🎨 フロントエンドコンポーネント向けの [Tailwind CSS](https://tailwindcss.com) と [shadcn/ui](https://ui.shadcn.com)。
      - 🤖 自動生成されたフロントエンドクライアント。
      - 🧪 End-to-Endテスト向けの [Playwright](https://playwright.dev)。
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 2.4K bytes
    - Click Count (0)
  9. android/guava/src/com/google/common/collect/AbstractSortedSetMultimap.java

       * have the provided key, an empty collection is returned.
       *
       * <p>Changes to the returned collection will update the underlying multimap, and vice versa.
       *
       * <p>Because a {@code SortedSetMultimap} has unique sorted values for a given key, this method
       * returns a {@link SortedSet}, instead of the {@link Collection} specified in the {@link
       * Multimap} interface.
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 20 13:05:10 GMT 2025
    - 5.5K bytes
    - Click Count (0)
  10. guava-testlib/src/com/google/common/testing/ClassSanityTester.java

       *       instances.
       *   <li>For the constructor or static factory method used to construct instances, it's checked
       *       that when equal parameters are passed, the result instance should also be equal; and vice
       *       versa.
       *   <li>If a non-private constructor or non-private static factory method exists:
       *       <ul>
       *         <li>Test will fail if default value for a parameter cannot be determined.
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sat Aug 09 01:14:59 GMT 2025
    - 32.5K bytes
    - Click Count (0)
Back to Top