Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 331 - 340 of 1,005 for trip (0.02 seconds)

  1. docs/tr/docs/environment-variables.md

    # Ortam Değişkenleri { #environment-variables }
    
    /// tip | İpucu
    
    "Ortam değişkenleri"nin ne olduğunu ve nasıl kullanılacağını zaten biliyorsanız, bu bölümü atlayabilirsiniz.
    
    ///
    
    Ortam değişkeni (genelde "**env var**" olarak da anılır), Python kodunun **dışında**, **işletim sistemi** seviyesinde bulunan ve Python kodunuz (veya diğer programlar) tarafından okunabilen bir değişkendir.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 8.2K bytes
    - Click Count (0)
  2. docs/zh/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: Fri Mar 20 17:06:37 GMT 2026
    - 5.8K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/helper/AccessTokenHelper.java

         */
        public String getAccessTokenFromRequest(final HttpServletRequest request) {
            final String token = request.getHeader("Authorization");
            if (token != null) {
                final String[] values = token.trim().split(" ");
                if (values.length == 2 && BEARER.equals(values[0])) {
                    return values[1];
                }
                if (values.length == 1 && !BEARER.equals(values[0])) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 2.6K bytes
    - Click Count (0)
  4. internal/config/dns/types.go

    	// a srv.Target domain name.  Normally we convert the full Key where
    	// the record lives to a DNS name and use this as the srv.Target. When
    	// TargetStrip > 0 we strip the left most TargetStrip labels from the
    	// DNS name.
    	TargetStrip int `json:"targetstrip,omitempty"`
    
    	// Group is used to group (or *not* to group) different services
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Tue Jun 01 21:59:40 GMT 2021
    - 2K bytes
    - Click Count (0)
  5. docs/de/docs/tutorial/security/index.md

    Heutzutage ist es nicht sehr populär und wird kaum verwendet.
    
    OAuth2 spezifiziert nicht, wie die Kommunikation verschlüsselt werden soll, sondern erwartet, dass Ihre Anwendung mit HTTPS bereitgestellt wird.
    
    /// tip | Tipp
    
    Im Abschnitt über **Deployment** erfahren Sie, wie Sie HTTPS mithilfe von Traefik und Let's Encrypt kostenlos einrichten.
    
    ///
    
    ## OpenID Connect { #openid-connect }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Feb 14 07:57:30 GMT 2026
    - 5.2K bytes
    - Click Count (0)
  6. docs/en/docs/tutorial/security/index.md

    It is not very popular or used nowadays.
    
    OAuth2 doesn't specify how to encrypt the communication, it expects you to have your application served with HTTPS.
    
    /// tip
    
    In the section about **deployment** you will see how to set up HTTPS for free, using Traefik and Let's Encrypt.
    
    ///
    
    ## OpenID Connect { #openid-connect }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Aug 31 10:49:48 GMT 2025
    - 4.4K bytes
    - Click Count (0)
  7. docs/uk/docs/tutorial/server-sent-events.md

    data: {"name": "Plumbus", "price": 32.99}
    
    ```
    
    SSE часто використовують для стрімінгу чатів ШІ, живих сповіщень, логів і спостережуваності, а також інших випадків, коли сервер надсилає оновлення клієнту.
    
    /// tip | Порада
    
    Якщо ви хочете транслювати бінарні дані, наприклад відео чи аудіо, перегляньте просунутий посібник: [Потік даних](../advanced/stream-data.md).
    
    ///
    
    ## Стрімінг SSE у FastAPI { #stream-sse-with-fastapi }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:25:54 GMT 2026
    - 7.1K bytes
    - Click Count (0)
  8. docs/zh-hant/docs/deployment/versions.md

    ## 關於版本 { #about-versions }
    
    依照語意化版本的慣例,任何低於 `1.0.0` 的版本都可能加入破壞性變更。
    
    FastAPI 也遵循慣例:任何「PATCH」版本變更僅用於修正錯誤與非破壞性變更。
    
    /// tip
    
    「PATCH」是最後一個數字,例如在 `0.2.3` 中,PATCH 版本是 `3`。
    
    ///
    
    因此,你可以將版本鎖定為如下形式:
    
    ```txt
    fastapi>=0.45.0,<0.46.0
    ```
    
    破壞性變更與新功能會在「MINOR」版本加入。
    
    /// tip
    
    「MINOR」是中間的數字,例如在 `0.2.3` 中,MINOR 版本是 `2`。
    
    ///
    
    ## 升級 FastAPI 版本 { #upgrading-the-fastapi-versions }
    
    你應該為你的應用撰寫測試。
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 3.1K bytes
    - Click Count (0)
  9. docs/fr/docs/tutorial/dependencies/dependencies-with-yield.md

    Pour cela, utilisez `yield` au lieu de `return`, et écrivez les étapes supplémentaires (code) après.
    
    /// tip | Astuce
    
    Vous devez vous assurer d'utiliser `yield` une seule fois par dépendance.
    
    ///
    
    /// note | Détails techniques
    
    Toute fonction valide à utiliser avec :
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 13.9K bytes
    - Click Count (0)
  10. docs/fr/docs/deployment/versions.md

    /// tip | Astuce
    
    Le « PATCH » est le dernier chiffre, par exemple, dans `0.2.3`, la version PATCH est `3`.
    
    ///
    
    Donc, vous devriez être en mesure d'épingler une version comme suit :
    
    ```txt
    fastapi>=0.45.0,<0.46.0
    ```
    
    Les changements non rétrocompatibles et les nouvelles fonctionnalités sont ajoutés dans les versions « MINOR ».
    
    /// tip | Astuce
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 4.2K bytes
    - Click Count (0)
Back to Top