Search Options

Results per page
Sort
Preferred Languages
Advance

Results 421 - 430 of 1,573 for md (0.05 sec)

  1. docs/throttle/README.md

    Harshavardhana <******@****.***> 1723797829 -0700
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Aug 16 08:43:49 UTC 2024
    - 1.5K bytes
    - Viewed (1)
  2. .github/ISSUE_TEMPLATE/bug_report.md

    Shinsuke Sugaya <******@****.***> 1581373106 +0900
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Mon Feb 10 22:18:26 UTC 2020
    - 748 bytes
    - Viewed (0)
  3. docs/fr/docs/index.md

    # FastAPI
    
    <style>
    .md-content .md-typeset h1 { display: none; }
    </style>
    
    <p align="center">
      <a href="https://fastapi.tiangolo.com"><img src="https://fastapi.tiangolo.com/img/logo-margin/logo-teal.png" alt="FastAPI"></a>
    </p>
    <p align="center">
        Framework FastAPI, haute performance, facile à apprendre, rapide à coder, prêt pour la production
    </p>
    <p align="center">
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 20 19:20:23 UTC 2024
    - 22K bytes
    - Viewed (0)
  4. docs/bucket/versioning/README.md

    unintended overwrites, deletions, protect objects with retention policies.
    
    To control data retention and storage usage, use object versioning with [object lifecycle management](https://github.com/minio/minio/blob/master/docs/bucket/lifecycle/README.md).  If you have an object expiration lifecycle policy in your non-versioned bucket and you want to maintain the same permanent delete behavior when on versioning-enabled bucket, you must add a noncurrent expiration policy. The noncurrent expiration lifecycle...
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu May 04 21:43:52 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  5. cni/README.md

    - CAP_SYS_ADMIN
    - CAP_NET_ADMIN
    - CAP_NET_RAW
    
    ## Ambient mode details
    
    See [architecture doc](../architecture/ambient/ztunnel-cni-lifecycle.md).
    
    ## Reference
    
    ### Design details
    
    Broadly, `istio-cni` accomplishes ambient redirection by instructing ztunnel to set up sockets within the application pod network namespace, where:
    
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Jul 17 23:10:17 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. docs/ru/docs/help-fastapi.md

    И также есть несколько способов получить помощь.
    
    ## Подписаться на новостную рассылку
    
    Вы можете подписаться на редкую [новостную рассылку **FastAPI и его друзья**](newsletter.md){.internal-link target=_blank} и быть в курсе о:
    
    * Новостях о FastAPI и его друзьях 🚀
    * Руководствах 📝
    * Возможностях ✨
    * Исправлениях 🚨
    * Подсказках и хитростях ✅
    
    ## Подписаться на FastAPI в Twitter
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  7. docs/pt/docs/advanced/custom-response.md

    Por padrão, o **FastAPI** irá retornar respostas utilizando `JSONResponse`.
    
    Mas você pode sobrescrever esse comportamento utilizando `Response` diretamente, como visto em [Retornando uma Resposta Diretamente](response-directly.md){.internal-link target=_blank}.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Oct 29 11:47:10 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  8. docs/pt/docs/advanced/response-headers.md

    ## Retornar uma `Response` diretamente
    
    Você também pode adicionar cabeçalhos quando retornar uma `Response` diretamente.
    
    Crie uma resposta conforme descrito em [Retornar uma resposta diretamente](response-directly.md){.internal-link target=_blank} e passe os cabeçalhos como um parâmetro adicional:
    
    ```Python hl_lines="10-12"
    {!../../docs_src/response_headers/tutorial001.py!}
    ```
    
    /// note | "Detalhes técnicos"
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Wed Oct 16 07:44:45 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. docs/em/docs/advanced/additional-responses.md

    👀 ⚫️❔ ⚫️❔ 👆 💪 🔌 📨, 👆 💪 ✅ 👉 📄 🗄 🔧:
    
    * <a href="https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.2.md#responsesObject" class="external-link" target="_blank">🗄 📨 🎚</a>, ⚫️ 🔌 `Response Object`.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. docs/ko/docs/deployment/docker.md

    일반적으로는 어플리케이션의 특정 파일을 위한 **패키지 요구 조건**이 있을 것입니다.
    
    그 요구 조건을 **설치**하는 방법은 여러분이 사용하는 도구에 따라 다를 것입니다.
    
    가장 일반적인 방법은 패키지 이름과 버전이 줄 별로 기록된 `requirements.txt` 파일을 만드는 것입니다.
    
    버전의 범위를 설정하기 위해서는 [FastAPI 버전들에 대하여](versions.md){.internal-link target=_blank}에 쓰여진 것과 같은 아이디어를 사용합니다.
    
    예를 들어, `requirements.txt` 파일은 다음과 같을 수 있습니다:
    
    ```
    fastapi>=0.68.0,<0.69.0
    pydantic>=1.8.0,<2.0.0
    uvicorn>=0.15.0,<0.16.0
    ```
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Mon Aug 12 21:47:53 UTC 2024
    - 42.7K bytes
    - Viewed (0)
Back to top