Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 131 - 140 of 179 for ansi (0.03 seconds)

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

    ```
    
    **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:
    
    * **X-Forwarded-For**: Orijinal client'ın IP adresi
    * **X-Forwarded-Proto**: Orijinal protokol (`https`)
    * **X-Forwarded-Host**: Orijinal host (`mysuperapp.com`)
    
    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. android/guava/src/com/google/common/math/PairedStatsAccumulator.java

       * xStats().populationVariance() > 0.0 && yStats().populationVariance() > 0.0}). The result is not
       * guaranteed to be exactly +/-1 even when the data are perfectly (anti-)correlated, due to
       * numerical errors. However, it is guaranteed to be in the inclusive range [-1, +1].
       *
       * <h3>Non-finite values</h3>
       *
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Sep 08 18:35:13 GMT 2025
    - 10.4K bytes
    - Click Count (0)
  3. src/test/java/jcifs/internal/smb2/create/CreateContextRequestTest.java

                // Common SMB2 create context names
                String[] contextNames = { "DHnQ", // Durable handle request
                        "DHnC", // Durable handle reconnect
                        "AlSi", // Allocation size
                        "MxAc", // Max access
                        "TWrp", // Timewarp
                        "QFid", // Query on disk ID
                        "RqLs", // Request lease
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 24.9K bytes
    - Click Count (0)
  4. docs/fr/docs/_llm-test.md

    * <dfn title="Une méthode d’apprentissage automatique qui utilise des réseaux de neurones artificiels avec de nombreuses couches cachées entre les couches d’entrée et de sortie, développant ainsi une structure interne complète">Apprentissage profond</dfn>
    
    ## Titres { #headings }
    
    //// tab | Test
    
    ### Créer une application Web - un tutoriel { #develop-a-webapp-a-tutorial }
    
    Bonjour.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 12.8K bytes
    - Click Count (0)
  5. docs/fr/docs/tutorial/dependencies/index.md

    ///
    
    ## Intégrer à OpenAPI { #integrated-with-openapi }
    
    Toutes les déclarations de requête, validations et exigences de vos dépendances (et sous-dépendances) seront intégrées dans le même schéma OpenAPI.
    
    Ainsi, la documentation interactive contiendra aussi toutes les informations issues de ces dépendances :
    
    <img src="/img/tutorial/dependencies/image01.png">
    
    ## Utilisation simple { #simple-usage }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 11.1K bytes
    - Click Count (0)
  6. docs/tr/docs/advanced/security/oauth2-scopes.md

    Veriyi Pydantic ile doğrulayarak örneğin scope'ların tam olarak `str`'lerden oluşan bir `list` olduğunu ve `username`'in bir `str` olduğunu garanti edebiliriz.
    
    Aksi halde, örneğin bir `dict` veya başka bir şey gelebilir; bu da daha sonra uygulamanın bir yerinde kırılmaya yol açıp güvenlik riski oluşturabilir.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 14.7K bytes
    - Click Count (0)
  7. android/guava/src/com/google/common/math/PairedStats.java

       * xStats().populationVariance() > 0.0 && yStats().populationVariance() > 0.0}). The result is not
       * guaranteed to be exactly +/-1 even when the data are perfectly (anti-)correlated, due to
       * numerical errors. However, it is guaranteed to be in the inclusive range [-1, +1].
       *
       * <h3>Non-finite values</h3>
       *
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Jul 08 18:32:10 GMT 2025
    - 12.6K bytes
    - Click Count (0)
  8. docs/fr/docs/advanced/behind-a-proxy.md

    Jusqu'ici, tout fonctionnerait normalement.
    
    Mais ensuite, lorsque vous ouvrez l'interface de documentation intégrée (le frontend), elle s'attendra à obtenir le schéma OpenAPI à `/openapi.json`, au lieu de `/api/v1/openapi.json`.
    
    Ainsi, le frontend (qui s'exécute dans le navigateur) essaiera d'atteindre `/openapi.json` et ne pourra pas obtenir le schéma OpenAPI.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 17.4K bytes
    - Click Count (0)
  9. docs/tr/docs/deployment/https.md

        * Yukarıda söylediğimiz gibi, belirli bir IP ve portu yalnızca bir process dinleyebilir.
        * Bu, aynı TLS Termination Proxy’nin sertifika yenileme sürecini de yönetmesinin neden çok faydalı olduğunun sebeplerinden biridir.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 14.8K bytes
    - Click Count (0)
  10. android/guava/src/com/google/common/primitives/ImmutableLongArray.java

       * and use that list instead.
       */
      public List<Long> asList() {
        /*
         * Typically we cache this kind of thing, but much repeated use of this view is a performance
         * anti-pattern anyway. If we cache, then everyone pays a price in memory footprint even if
         * they never use this method.
         */
        return new AsList(this);
      }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Dec 12 14:49:24 GMT 2025
    - 22K bytes
    - Click Count (0)
Back to Top