Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 36 for girerek (0.06 seconds)

  1. docs/tr/docs/advanced/behind-a-proxy.md

        Server->>Proxy: HTTP Response<br/>with correct HTTPS URLs
    
        Proxy->>Client: HTTPS Response
    ```
    
    **Proxy**, orijinal client request'ini araya girerek (intercept) alır ve request'i **application server**'a iletmeden önce özel *forwarded* header'ları (`X-Forwarded-*`) ekler.
    
    Bu header'lar, aksi halde kaybolacak olan orijinal request bilgilerini korur:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 16.5K bytes
    - Click Count (0)
  2. docs/tr/docs/advanced/security/http-basic-auth.md

    Sonra tekrar denerken, bunun `johndoe`’dan ziyade `stanleyjobsox`’a daha yakın bir şey olması gerektiğini bilerek devam edebilirler.
    
    #### "Profesyonel" bir saldırı { #a-professional-attack }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 5.5K bytes
    - Click Count (0)
  3. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    0395          ; mapped                 ; 03B5          # 1.1  GREEK CAPITAL LETTER EPSILON
    0396          ; mapped                 ; 03B6          # 1.1  GREEK CAPITAL LETTER ZETA
    0397          ; mapped                 ; 03B7          # 1.1  GREEK CAPITAL LETTER ETA
    0398          ; mapped                 ; 03B8          # 1.1  GREEK CAPITAL LETTER THETA
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sat Feb 10 11:25:47 GMT 2024
    - 854.1K bytes
    - Click Count (0)
  4. compat/maven-artifact/src/test/java/org/apache/maven/artifact/versioning/ComparableVersionTest.java

            assertTrue(zebra.compareTo(aardvark) > 0);
            assertTrue(aardvark.compareTo(zebra) < 0);
    
            // Greek zebra
            ComparableVersion greek = new ComparableVersion("ζέβρα");
            assertTrue(greek.compareTo(zebra) > 0);
            assertTrue(zebra.compareTo(greek) < 0);
        }
    
        /**
         * Test <a href="https://issues.apache.org/jira/browse/MNG-5568">MNG-5568</a> edge case
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Mar 21 04:56:21 GMT 2025
    - 17.8K bytes
    - Click Count (0)
  5. docs/tr/docs/how-to/configure-swagger-ui.md

    Şu varsayılan yapılandırmaları içerir:
    
    {* ../../fastapi/openapi/docs.py ln[9:24] hl[18:24] *}
    
    `swagger_ui_parameters` argümanında farklı bir değer vererek bunların herhangi birini ezebilirsiniz (override).
    
    Örneğin `deepLinking`'i devre dışı bırakmak için `swagger_ui_parameters`'a şu ayarları geçebilirsiniz:
    
    {* ../../docs_src/configure_swagger_ui/tutorial003_py310.py hl[3] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 3.2K bytes
    - Click Count (0)
  6. docs/fr/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md

    ///
    
    /// info | Info
    
    Dans cet exemple, nous utilisons des en-têtes personnalisés fictifs `X-Key` et `X-Token`.
    
    Mais dans des cas réels, lors de l'implémentation de la sécurité, vous tirerez davantage d'avantages en utilisant les [utilitaires de sécurité (chapitre suivant)](../security/index.md) intégrés.
    
    ///
    
    ## Gérer les erreurs et les valeurs de retour des dépendances { #dependencies-errors-and-return-values }
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 3.5K bytes
    - Click Count (0)
  7. docs/tr/docs/advanced/advanced-python-types.md

    ```python
    def say_hi(name: str | None):
        print(f"Hey {name}!")
    ```
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Feb 13 12:41:38 GMT 2026
    - 2.1K bytes
    - Click Count (0)
  8. docs/tr/docs/tutorial/extra-models.md

    UserInDB(**user_dict)
    ```
    
    şuna eşdeğerdir:
    
    ```Python
    UserInDB(**user_in.model_dump())
    ```
    
    ...çünkü `user_in.model_dump()` bir `dict` döndürür ve biz de bunu `UserInDB`'ye `**` önekiyle vererek Python'ın "unpack" etmesini sağlarız.
    
    Böylece, bir Pydantic modelindeki verilerden başka bir Pydantic model üretmiş oluruz.
    
    #### Bir `dict`'i Unpack Etmek ve Ek Keyword'ler { #unpacking-a-dict-and-extra-keywords }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 7.4K bytes
    - Click Count (0)
  9. docs/tr/docs/advanced/additional-responses.md

    Bu ek response'lar OpenAPI şemasına dahil edilir; dolayısıyla API dokümanlarında da görünürler.
    
    Ancak bu ek response'lar için, status code'unuzu ve içeriğinizi vererek `JSONResponse` gibi bir `Response`'u doğrudan döndürdüğünüzden emin olmanız gerekir.
    
    ## `model` ile Ek Response { #additional-response-with-model }
    
    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)
  10. docs/tr/docs/tutorial/path-operation-configuration.md

    <img src="/img/tutorial/path-operation-configuration/image05.png">
    
    ## Özet { #recap }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 4.3K bytes
    - Click Count (0)
Back to Top