Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 311 - 320 of 976 for tipi (0.05 seconds)

  1. docs/fr/docs/tutorial/middleware.md

        * Puis elle renverra la `response` générée par le *chemin d'accès* correspondant.
    * Vous pouvez ensuite modifier la `response` avant de la renvoyer.
    
    {* ../../docs_src/middleware/tutorial001_py310.py hl[8:9,11,14] *}
    
    /// tip | Astuce
    
    Gardez à l’esprit que des en-têtes propriétaires personnalisés peuvent être ajoutés [en utilisant le préfixe `X-`](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers).
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 4.4K bytes
    - Click Count (0)
  2. docs/tr/docs/tutorial/security/index.md

    Günümüzde pek popüler değildir veya pek kullanılmaz.
    
    OAuth2 ise iletişimin nasıl şifreleneceğini belirtmez; uygulamanızın HTTPS ile sunulmasını bekler.
    
    /// tip | İpucu
    
    **deployment** bölümünde Traefik ve Let's Encrypt kullanarak ücretsiz şekilde HTTPS’i nasıl kuracağınızı göreceksiniz.
    
    ///
    
    ## OpenID Connect { #openid-connect }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Feb 05 15:43:38 GMT 2026
    - 5K bytes
    - Click Count (0)
  3. docs/uk/docs/how-to/custom-request-and-route.md

    А також підклас `APIRoute`, щоб застосувати цей користувацький клас запиту.
    
    ### Створіть користувацький клас `GzipRequest` { #create-a-custom-gziprequest-class }
    
    /// tip | Порада
    
    Це навчальний приклад, щоб продемонструвати принцип роботи. Якщо вам потрібна підтримка Gzip, скористайтеся вбудованим [`GzipMiddleware`](../advanced/middleware.md#gzipmiddleware).
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 6.8K bytes
    - Click Count (0)
  4. docs/tr/docs/how-to/custom-request-and-route.md

    Ayrıca, o özel request sınıfını kullanmak için bir `APIRoute` alt sınıfı da oluşturacağız.
    
    ### Özel bir `GzipRequest` sınıfı oluşturun { #create-a-custom-gziprequest-class }
    
    /// tip | İpucu
    
    Bu, nasıl çalıştığını göstermek için hazırlanmış basit bir örnektir; Gzip desteğine ihtiyacınız varsa sağlanan [`GzipMiddleware`](../advanced/middleware.md#gzipmiddleware) bileşenini kullanabilirsiniz.
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 4.9K bytes
    - Click Count (0)
  5. src/main/webapp/js/bootstrap.min.js.map

    // TODO: remove this check in v6\n    if (!tip) {\n      return null\n    }\n\n    tip.classList.remove(CLASS_NAME_FADE, CLASS_NAME_SHOW)\n    // TODO: v6 the following can be achieved with CSS only\n    tip.classList.add(`bs-${this.constructor.NAME}-auto`)\n\n    const tipId = getUID(this.constructor.NAME).toString()\n\n    tip.setAttribute('id', tipId)\n\n    if (this._isAnimated()) {\n      tip.classList.add(CLASS_NAME_FADE)\n    }\n\n    return tip\n  }\n\n  setContent(content) {\n    this._newContent...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 12 06:14:02 GMT 2025
    - 211.9K bytes
    - Click Count (0)
  6. docs/en/docs/tutorial/query-params-str-validations.md

    But now, having `Query(max_length=50)` inside of `Annotated`, we are telling FastAPI that we want it to have **additional validation** for this value, we want it to have maximum 50 characters. 😎
    
    /// tip
    
    Here we are using `Query()` because this is a **query parameter**. Later we will see others like `Path()`, `Body()`, `Header()`, and `Cookie()`, that also accept the same arguments as `Query()`.
    
    ///
    
    FastAPI will now:
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 16.3K bytes
    - Click Count (0)
  7. docs/uk/docs/fastapi-cli.md

          <span style="background-color:#007166"><font color="#D3D7CF"> tip </font></span>  Running in development mode, for production use:
                 <b>fastapi run</b>
    
                 Logs:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 7.8K bytes
    - Click Count (0)
  8. docs/uk/docs/advanced/path-operation-advanced-configuration.md

    Зробіть це після додавання всіх *операцій шляху*.
    
    {* ../../docs_src/path_operation_advanced_configuration/tutorial002_py310.py hl[2, 12:21, 24] *}
    
    /// tip | Порада
    
    Якщо ви вручну викликаєте `app.openapi()`, оновіть усі `operationId` до цього.
    
    ///
    
    /// warning | Попередження
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 10.3K bytes
    - Click Count (0)
  9. docs/tr/docs/advanced/index.md

    Ana [Tutorial - User Guide](../tutorial/index.md) sayfası, **FastAPI**'nin tüm temel özelliklerini tanımanız için yeterli olmalıdır.
    
    Sonraki bölümlerde diğer seçenekleri, konfigürasyonları ve ek özellikleri göreceksiniz.
    
    /// tip | İpucu
    
    Sonraki bölümler **mutlaka "gelişmiş" olmak zorunda değildir**.
    
    Ve kullanım amacınıza bağlı olarak, çözüm bunlardan birinde olabilir.
    
    ///
    
    ## Önce Tutorial'ı Okuyun { #read-the-tutorial-first }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 802 bytes
    - Click Count (0)
  10. docs/pt/docs/tutorial/dependencies/dependencies-with-yield.md

    Para fazer isso, utilize `yield` em vez de `return`, e escreva os passos extras (código) depois.
    
    /// tip | Dica
    
    Garanta utilizar `yield` apenas uma vez por dependência.
    
    ///
    
    /// note | Detalhes Técnicos
    
    Qualquer função que possa ser utilizada com:
    
    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)
Back to Top