Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 121 - 130 of 952 for operativo (0.06 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. docs/tr/docs/advanced/stream-data.md

    ### Async Olmayan Path Operation Function'lar { #non-async-path-operation-functions }
    
    Normal `def` fonksiyonlarını (yani `async` olmadan) da kullanabilir ve aynı şekilde `yield` yazabilirsiniz.
    
    {* ../../docs_src/stream_data/tutorial001_py310.py ln[26:29] hl[27] *}
    
    ### Tip Annotasyonu Yok { #no-annotation }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:51:35 GMT 2026
    - 5.8K bytes
    - Click Count (0)
  2. internal/config/batch/help.go

    			Description: `maximum sleep duration between objects to slow down batch replication operation` + defaultHelpPostfix(ReplicationWorkersWait),
    			Optional:    true,
    			Type:        "duration",
    		},
    		config.HelpKV{
    			Key:         KeyRotationWorkersWait,
    			Description: `maximum sleep duration between objects to slow down batch keyrotation operation` + defaultHelpPostfix(KeyRotationWorkersWait),
    			Optional:    true,
    			Type:        "duration",
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sat Dec 02 10:51:33 GMT 2023
    - 1.8K bytes
    - Click Count (0)
  3. docs/tr/docs/advanced/additional-responses.md

    <img src="/img/tutorial/additional-responses/image01.png">
    
    ## Ön Tanımlı Response'ları Özel Olanlarla Birleştirme { #combine-predefined-responses-and-custom-ones }
    
    Birçok *path operation* için geçerli olacak bazı ön tanımlı response'larınız olabilir; ancak bunları her *path operation*'ın ihtiyaç duyduğu özel response'larla birleştirmek isteyebilirsiniz.
    
    Bu durumlarda, Python'daki bir `dict`'i `**dict_to_unpack` ile "unpacking" tekniğini kullanabilirsiniz:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 9.2K bytes
    - Click Count (0)
  4. docs/en/docs/advanced/stream-data.md

    If you declare a `response_class=StreamingResponse` in your *path operation function*, you can use `yield` to send each chunk of data in turn.
    
    {* ../../docs_src/stream_data/tutorial001_py310.py ln[1:23] hl[20,23] *}
    
    FastAPI will give each chunk of data to the `StreamingResponse` as is, it won't try to convert it to JSON or anything similar.
    
    ### Non-async *path operation functions* { #non-async-path-operation-functions }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 5.4K bytes
    - Click Count (0)
  5. fastapi/openapi/models.py

        summary: str | None = None
        description: str | None = None
        get: Operation | None = None
        put: Operation | None = None
        post: Operation | None = None
        delete: Operation | None = None
        options: Operation | None = None
        head: Operation | None = None
        patch: Operation | None = None
        trace: Operation | None = None
        servers: list[Server] | None = None
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 15 11:44:39 GMT 2026
    - 14.2K bytes
    - Click Count (0)
  6. src/main/java/jcifs/internal/smb2/ioctl/SrvCopyChunkCopyResponse.java

     * of a server-side copy operation.
     *
     * @author mbechler
     *
     */
    public class SrvCopyChunkCopyResponse implements Decodable {
    
        /**
         * Constructs a new SrvCopyChunkCopyResponse.
         * This response contains the results of a server-side copy operation.
         */
        public SrvCopyChunkCopyResponse() {
        }
    
        private int chunksWritten;
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 2.6K bytes
    - Click Count (0)
  7. docs/tr/docs/advanced/additional-status-codes.md

    # Ek Status Code'ları { #additional-status-codes }
    
    Varsayılan olarak **FastAPI**, response'ları bir `JSONResponse` kullanarak döndürür; *path operation*'ınızdan döndürdüğünüz içeriği bu `JSONResponse`'un içine yerleştirir.
    
    Varsayılan status code'u veya *path operation* içinde sizin belirlediğiniz status code'u kullanır.
    
    ## Ek status code'ları { #additional-status-codes_1 }
    
    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)
  8. docs/pt/docs/tutorial/dependencies/dependencies-with-yield.md

        end
        dep ->> operation: Executar dependência, e.g. sessão de BD
        opt raise
            operation -->> dep: Lançar exceção (e.g. HTTPException)
            opt handle
                dep -->> dep: Pode capturar exceções, lançar uma nova HTTPException, lançar outras exceções
            end
            handler -->> client: resposta de erro HTTP
        end
    
        operation ->> client: Retornar resposta ao cliente
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 13.8K bytes
    - Click Count (0)
  9. docs/en/docs/advanced/additional-status-codes.md

    # Additional Status Codes { #additional-status-codes }
    
    By default, **FastAPI** will return the responses using a `JSONResponse`, putting the content you return from your *path operation* inside of that `JSONResponse`.
    
    It will use the default status code or the one you set in your *path operation*.
    
    ## Additional status codes { #additional-status-codes_1 }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 2K bytes
    - Click Count (0)
  10. docs/ja/docs/advanced/sub-applications.md

    「マウント」とは、特定のパスに完全に「独立した」アプリケーションを追加し、そのサブアプリケーションで宣言された path operation によって、そのパス以下のすべてを処理させることを意味します。
    
    ### トップレベルアプリケーション { #top-level-application }
    
    まず、メインのトップレベル **FastAPI** アプリケーションと、その path operation を作成します:
    
    {* ../../docs_src/sub_applications/tutorial001_py310.py hl[3, 6:8] *}
    
    ### サブアプリケーション { #sub-application }
    
    次に、サブアプリケーションとその path operation を作成します。
    
    このサブアプリケーションは通常の FastAPI アプリケーションですが、これを「マウント」します:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 3.5K bytes
    - Click Count (0)
Back to Top