Search Options

Results per page
Sort
Preferred Languages
Advance

Results 311 - 320 of 448 for instala (8.59 sec)

  1. docs/de/docs/index.md

    * <a href="https://pydantic-docs.helpmanual.io/" class="external-link" target="_blank">Pydantic</a> fรผr die Datenanteile.
    
    ## Installation
    
    <div class="termy">
    
    ```console
    $ pip install fastapi
    
    ---> 100%
    ```
    
    </div>
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 21.1K bytes
    - Viewed (0)
  2. docs/em/docs/tutorial/security/first-steps.md

    {* ../../docs_src/security/tutorial001.py *}
    
    ## ๐Ÿƒ โšซ๏ธ
    
    /// info
    
    ๐Ÿฅ‡ โŽ <a href="https://github.com/Kludex/python-multipart" class="external-link" target="_blank">`python-multipart`</a>.
    
    ๐Ÿคถ โ“‚. `pip install python-multipart`.
    
    ๐Ÿ‘‰ โ†ฉ๏ธ **Oauth2๏ธโƒฃ** โš™๏ธ "๐Ÿ“จ ๐Ÿ“Š" ๐Ÿ“จ `username` &amp; `password`.
    
    ///
    
    ๐Ÿƒ ๐Ÿ–ผ โฎ๏ธ:
    
    <div class="termy">
    
    ```console
    $ uvicorn main:app --reload
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. docs/em/docs/tutorial/response-model.md

    /// info
    
    โš™๏ธ `EmailStr`, ๐Ÿฅ‡ โŽ <a href="https://github.com/JoshData/python-email-validator" class="external-link" target="_blank">`email-validator`</a>.
    
    ๐Ÿคถ โ“‚. `pip install email-validator`
    โš–๏ธ `pip install pydantic[email]`.
    
    ///
    
    &amp; ๐Ÿ‘ฅ โš™๏ธ ๐Ÿ‘‰ ๐Ÿท ๐Ÿ“ฃ ๐Ÿ‘† ๐Ÿ”ข &amp; ๐ŸŽ ๐Ÿท ๐Ÿ“ฃ ๐Ÿ‘† ๐Ÿ”ข:
    
    {* ../../docs_src/response_model/tutorial002.py hl[18] *}
    
    ๐Ÿ”œ, ๐Ÿ•โ” ๐Ÿ–ฅ ๐Ÿ— ๐Ÿ‘ฉโ€๐Ÿ’ป โฎ๏ธ ๐Ÿ”, ๐Ÿ› ๏ธ ๐Ÿ”œ ๐Ÿ“จ ๐ŸŽ ๐Ÿ” ๐Ÿ“จ.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. docs/em/docs/deployment/server-workers.md

    &amp; โคด๏ธ ๐Ÿ-๐Ÿ”— **Uvicorn ๐Ÿ‘จโ€๐Ÿญ** ๐ŸŽ“ ๐Ÿ”œ ๐Ÿˆš ๐Ÿญ ๐Ÿ“Š ๐Ÿ“จ ๐Ÿ ๐Ÿ”ซ ๐Ÿฉ FastAPI โš™๏ธ โšซ๏ธ.
    
    ## โŽ ๐Ÿ &amp; Uvicorn
    
    <div class="termy">
    
    ```console
    $ pip install "uvicorn[standard]" gunicorn
    
    ---> 100%
    ```
    
    </div>
    
    ๐Ÿ‘ˆ ๐Ÿ”œ โŽ ๐Ÿ‘ฏโ€โ™‚๏ธ Uvicorn โฎ๏ธ `standard` โž• ๐Ÿ“ฆ (๐Ÿคš โ†• ๐ŸŽญ) &amp; ๐Ÿ.
    
    ## ๐Ÿƒ ๐Ÿ โฎ๏ธ Uvicorn ๐Ÿ‘จโ€๐Ÿญ
    
    โคด๏ธ ๐Ÿ‘† ๐Ÿ’ช ๐Ÿƒ ๐Ÿ โฎ๏ธ:
    
    <div class="termy">
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. docs/fr/docs/deployment/docker.md

    Dans ce cas, votre `Dockerfile` pourrait ressembler ร  ceciย :
    
    ```Dockerfile
    FROM python:3.7
    
    RUN pip install fastapi uvicorn
    
    EXPOSE 80
    
    COPY ./app /app
    
    CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "80"]
    ```
    
    ## Crรฉer le code **FastAPI**.
    
    * Crรฉer un rรฉpertoire `app` et y entrer.
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sat Nov 09 16:39:20 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  6. ci/official/containers/ml_build/builder.devtoolset/build_devtoolset.sh

          --with-default-libstdcxx-abi=${LIBSTDCXX_ABI} \
          --with-gcc-major-version-only \
          --with-linker-hash-style="gnu" \
          --with-tune="generic" \
          && \
        make -j 42 && \
        make install
    
    
    # Create the devtoolset libstdc++ linkerscript that links dynamically against
    # the system libstdc++ 4.4 and provides all other symbols statically.
    case "${VERSION}" in
    devtoolset-7)
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Tue Sep 24 20:45:58 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/it/admin/PluginTests.java

                    available.stream().filter(map -> !map.get("name").toString().startsWith("fess-")).toList().get(0);
            final Artifact target = getArtifactFromMap(targetMap);
    
            // Install
            {
                checkPostMethod(targetMap, getInstallEndpointSuffix()).then().body("response.status", equalTo(0));
    
                boolean done = false;
                for (int i = 0; i < 60; i++) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 6.5K bytes
    - Viewed (0)
  8. docs/zh-hant/docs/index.md

    ## ๅฎ‰่ฃ
    
    <div class="termy">
    
    ```console
    $ pip install fastapi
    
    ---> 100%
    ```
    
    </div>
    
    ไฝ ๅŒๆ™‚ไนŸๆœƒ้œ€่ฆ ASGI ไผบๆœๅ™จ็”จๆ–ผ็”Ÿ็”ข็’ฐๅขƒ๏ผŒๅƒๆ˜ฏ <a href="https://www.uvicorn.org" class="external-link" target="_blank">Uvicorn</a> ๆˆ– <a href="https://github.com/pgjones/hypercorn" class="external-link" target="_blank">Hypercorn</a>ใ€‚
    
    <div class="termy">
    
    ```console
    $ pip install "uvicorn[standard]"
    
    ---> 100%
    ```
    
    </div>
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 18.8K bytes
    - Viewed (0)
  9. docs/fr/docs/index.md

    * <a href="https://docs.pydantic.dev/" class="external-link" target="_blank">Pydantic</a> pour les parties donnรฉes.
    
    ## Installation
    
    <div class="termy">
    
    ```console
    $ pip install fastapi
    
    ---> 100%
    ```
    
    </div>
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 22K bytes
    - Viewed (0)
  10. docs/metrics/prometheus/list.md

    ## Cluster Replication Metrics
    
    Metrics marked as ``Site Replication Only`` only populate on deployments with [Site Replication](https://docs.min.io/community/minio-object-store/operations/install-deploy-manage/multi-site-replication.html) configurations.
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 12 18:20:36 UTC 2025
    - 43.4K bytes
    - Viewed (0)
Back to top