Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 197 for tago (0.51 sec)

  1. docs/es/docs/virtual-environments.md

    ///
    
    ## Crea un Proyecto
    
    Primero, crea un directorio para tu proyecto.
    
    Lo que normalmente hago es crear un directorio llamado `code` dentro de mi directorio de usuario.
    
    Y dentro de eso creo un directorio por proyecto.
    
    <div class="termy">
    
    ```console
    // Ve al directorio principal
    $ cd
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  2. docs/ja/docs/tutorial/path-operation-configuration.md

    /// note | 技術詳細
    
    また、`from starlette import status`を使用することもできます。
    
    **FastAPI** は開発者の利便性を考慮して、`fastapi.status`と同じ`starlette.status`を提供しています。しかし、これはStarletteから直接提供されています。
    
    ///
    
    ## タグ
    
    `tags`パラメータを`str`の`list`(通常は1つの`str`)と一緒に渡すと、*path operation*にタグを追加できます:
    
    {* ../../docs_src/path_operation_configuration/tutorial002.py hl[17,22,27] *}
    
    これらはOpenAPIスキーマに追加され、自動ドキュメントのインターフェースで使用されます:
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. cmd/api-errors.go

    	},
    	ErrInvalidPart: {
    		Code:           "InvalidPart",
    		Description:    "One or more of the specified parts could not be found.  The part may not have been uploaded, or the specified entity tag may not match the part's entity tag.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrMissingPart: {
    		Code:           "InvalidRequest",
    		Description:    "You must specify at least one part",
    		HTTPStatusCode: http.StatusBadRequest,
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Wed Apr 16 07:34:24 UTC 2025
    - 93K bytes
    - Viewed (1)
  4. src/main/java/org/codelibs/fess/app/service/JobLogService.java

            cb.query().addOrderBy_StartTime_Desc();
            cb.query().addOrderBy_EndTime_Desc();
    
            // search
    
        }
    
        /**
         * Deletes job logs that ended before the specified number of days ago.
         * Used for cleaning up old log entries.
         *
         * @param days the number of days to look back from the current time
         */
        public void deleteBefore(final int days) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  5. docs/en/docs/history-design-future.md

    # History, Design and Future { #history-design-and-future }
    
    Some time ago, <a href="https://github.com/fastapi/fastapi/issues/3#issuecomment-454956920" class="external-link" target="_blank">a **FastAPI** user asked</a>:
    
    > What’s the history of this project? It seems to have come from nowhere to awesome in a few weeks [...]
    
    Here's a little bit of that history.
    
    ## Alternatives { #alternatives }
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  6. docs/vi/docs/deployment/versions.md

    Bạn có thể tạo ra sản phẩm thực tế với **FastAPI** ngay bây giờ (và bạn có thể đã làm điều này trong một thời gian dài), bạn chỉ cần đảm bảo rằng bạn sử dụng một phiên bản hoạt động đúng với các đoạn mã còn lại của bạn.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri Feb 28 14:15:38 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  7. PULL_REQUESTS_ETIQUETTE.md

    3. **Flow**:
       - Review promptly to avoid blocking progress.
       - Balance quality and speed—minor issues can be addressed later via issues, not PR blocks.
       - If unable to complete the review, tag another reviewer (e.g., `@username please take over`).
    
    4. **Shared Responsibility**:
       - All MinIO contributors are reviewers. The first commenter on a PR owns the review unless they delegate.
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Sun May 25 16:32:03 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/admin/storage/admin_storage.jsp

    	                                                        >
    	                                                            <em class="fa fa-tags">
    	                                                            <la:message key="labels.storage_button_tags"/>
    	                                                        </a>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu May 26 01:48:41 UTC 2022
    - 20.4K bytes
    - Viewed (0)
  9. docs/es/docs/advanced/path-operation-advanced-configuration.md

    ///
    
    Tiene toda la información sobre la *path operation* y se usa para generar la documentación automática.
    
    Incluye los `tags`, `parameters`, `requestBody`, `responses`, etc.
    
    Este esquema de OpenAPI específico de *path operation* normalmente se genera automáticamente por **FastAPI**, pero también puedes extenderlo.
    
    /// tip | Consejo
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 17:46:44 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. docs/pt/docs/advanced/path-operation-advanced-configuration.md

    ///
    
    Ele possui toda a informação sobre a *operação de rota* e é usado para gerar a documentação automaticamente.
    
    Ele inclui os atributos `tags`, `parameters`, `requestBody`, `responses`, etc.
    
    Esse esquema específico para uma *operação de rota* normalmente é gerado automaticamente pelo **FastAPI**, mas você também pode estender ele.
    
    /// tip | Dica
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top