Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 489 for Zstandard (0.05 sec)

  1. docs/es/docs/tutorial/header-params.md

    ///
    
    ## Conversión automática
    
    `Header` tiene un poquito de funcionalidad extra además de lo que proporcionan `Path`, `Query` y `Cookie`.
    
    La mayoría de los headers estándar están separados por un carácter "guion", también conocido como el "símbolo menos" (`-`).
    
    Pero una variable como `user-agent` es inválida en Python.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. docs/uk/docs/tutorial/index.md

    Це те, що ви, ймовірно, зробили б, коли захочете розгорнути свою програму у виробничому середовищі:
    
    ```
    pip install fastapi
    ```
    
    Також встановіть `uvicorn`, щоб він працював як сервер:
    
    ```
    pip install "uvicorn[standard]"
    ```
    
    І те саме для кожної з опціональних залежностей, які ви хочете використовувати.
    
    ///
    
    ## Розширений посібник користувача
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/fscc/FileInformation.java

         * File end-of-file information class constant.
         */
        byte FILE_ENDOFFILE_INFO = 20;
    
        /**
         * File basic information class constant.
         */
        byte FILE_BASIC_INFO = 0x4;
        /**
         * File standard information class constant.
         */
        byte FILE_STANDARD_INFO = 0x5;
    
        /**
         * File internal information class constant.
         */
        byte FILE_INTERNAL_INFO = 0x6;
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  4. docs/de/docs/tutorial/extra-models.md

    Das wird in OpenAPI mit `anyOf` angezeigt.
    
    Um das zu tun, verwenden Sie Pythons Standard-Typhinweis <a href="https://docs.python.org/3/library/typing.html#typing.Union" class="external-link" target="_blank">`typing.Union`</a>:
    
    /// note | Hinweis
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. guava/src/com/google/common/math/PairedStatsAccumulator.java

       * R*R)} of the population standard deviation of {@code y}, where {@code R} is the Pearson's
       * correlation coefficient (as given by {@link #pearsonsCorrelationCoefficient()}).
       *
       * <p>The corresponding root-mean-square error in {@code x} as a function of {@code y} is a
       * fraction {@code sqrt(1/(R*R) - 1)} of the population standard deviation of {@code x}. This fit
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Apr 14 16:36:11 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  6. docs/es/docs/tutorial/body-nested-models.md

    ### Importar `List` de typing
    
    En Python 3.9 y superior, puedes usar el `list` estándar para declarar estas anotaciones de tipo como veremos a continuación. 💡
    
    Pero en versiones de Python anteriores a 3.9 (desde 3.6 en adelante), primero necesitas importar `List` del módulo `typing` estándar de Python:
    
    {* ../../docs_src/body_nested_models/tutorial002.py hl[1] *}
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. api/maven-api-spi/src/main/java/org/apache/maven/api/spi/PackagingProvider.java

    /**
     * Service provider interface for registering custom {@link Packaging} implementations.
     * <p>
     * This interface allows plugins and extensions to define and register additional packaging types
     * beyond the standard ones provided by Maven (like jar, war, ear, etc.). Implementations of this
     * interface will be discovered through the Java ServiceLoader mechanism and their provided
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Apr 03 13:33:59 UTC 2025
    - 2K bytes
    - Viewed (0)
  8. docs/sts/client_grants/__init__.py

    # -*- coding: utf-8 -*-
    import json
    # standard.
    import os
    
    import certifi
    # Dependencies
    import urllib3
    from botocore.credentials import CredentialProvider, RefreshableCredentials
    from botocore.exceptions import CredentialRetrievalError
    from dateutil.parser import parse
    
    from .sts_element import STSElement
    
    
    class ClientGrantsCredentialProvider(CredentialProvider):
        """
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 4.6K bytes
    - Viewed (0)
  9. docs/vi/docs/deployment/versions.md

    Nếu bạn sử dụng một tệp `requirements.txt` bạn có thể chỉ định phiên bản với:
    
    ```txt
    fastapi[standard]==0.112.0
    ```
    
    Như vậy, bạn sẽ sử dụng chính xác phiên bản `0.112.0`.
    
    Hoặc bạn cũng có thể cố định nó với:
    
    ```txt
    fastapi[standard]>=0.112.0,<0.113.0
    ```
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri Feb 28 14:15:38 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  10. api/maven-api-spi/src/main/java/org/apache/maven/api/spi/LifecycleProvider.java

    /**
     * Service provider interface for registering custom {@link Lifecycle} implementations.
     * <p>
     * This interface allows plugins and extensions to define and register additional build lifecycles
     * beyond the standard ones provided by Maven (like clean, default, site). Lifecycles define a sequence
     * of phases that can be executed during a build.
     * <p>
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Apr 03 13:33:59 UTC 2025
    - 2.2K bytes
    - Viewed (0)
Back to top