Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1531 - 1540 of 1,590 for EXAMPLE (0.23 seconds)

  1. docs/ru/docs/alternatives.md

    > Requests — один из самых загружаемых Python-пакетов всех времён
    
    Пользоваться им очень просто. Например, чтобы сделать запрос `GET`, вы бы написали:
    
    ```Python
    response = requests.get("http://example.com/some/url")
    ```
    
    Соответствующая в FastAPI API-операция пути могла бы выглядеть так:
    
    ```Python hl_lines="1"
    @app.get("/some/url")
    def read_url():
        return {"message": "Hello World"}
    ```
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 37.1K bytes
    - Click Count (0)
  2. docs/ru/docs/tutorial/bigger-applications.md

    /// info | Примечание
    
    Если вы раньше использовали Flask, то это аналог шаблонов Flask (Flask's Blueprints).
    
    ///
    
    ## Пример структуры приложения { #an-example-file-structure }
    
    Давайте предположим, что наше приложение имеет следующую структуру:
    
    ```
    .
    ├── app
    │   ├── __init__.py
    │   ├── main.py
    │   ├── dependencies.py
    │   └── routers
    │   │   ├── __init__.py
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 29.7K bytes
    - Click Count (0)
  3. docs/tr/docs/virtual-environments.md

    Bu klasörlerin bir kısmı, kurduğunuz tüm package'leri barındırmaktan sorumludur.
    
    Şunu çalıştırdığınızda:
    
    <div class="termy">
    
    ```console
    // Don't run this now, it's just an example 🤓
    $ pip install "fastapi[standard]"
    ---> 100%
    ```
    
    </div>
    
    Bu, FastAPI kodunu içeren sıkıştırılmış bir dosyayı genellikle [PyPI](https://pypi.org/project/fastapi/)'dan indirir.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 23.5K bytes
    - Click Count (0)
  4. docs/ja/docs/tutorial/security/simple-oauth2.md

    ### 自分のユーザーデータを取得 { #get-your-own-user-data }
    
    `GET` の path `/users/me` を使います。
    
    次のようなユーザーデータが取得できます:
    
    ```JSON
    {
      "username": "johndoe",
      "email": "johndoe@example.com",
      "full_name": "John Doe",
      "disabled": false,
      "hashed_password": "fakehashedsecret"
    }
    ```
    
    <img src="/img/tutorial/security/image06.png">
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 12.1K bytes
    - Click Count (0)
  5. okhttp/src/jvmTest/kotlin/okhttp3/InterceptorOverridesTest.kt

          override val nonDefaultValue: java.net.Proxy? = java.net.Proxy.NO_PROXY
    
          override val badValue: java.net.Proxy? =
            java.net.Proxy(Proxy.Type.HTTP, InetSocketAddress.createUnresolved("proxy.example.com", 1003))
    
          override fun isDefaultValue(value: java.net.Proxy?): Boolean = value == null
        }
    
        object ProxySelectorOverride : Override<ProxySelector> {
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Wed Mar 11 02:37:00 GMT 2026
    - 28.8K bytes
    - Click Count (0)
  6. CHANGELOG/CHANGELOG-1.35.md

    - Improved the `FreeDiskSpaceFailed` warning event to provide more actionable details when image garbage collection fails to free enough disk space. Example: `Insufficient free disk space on the node's image filesystem (95.0% of 10.0 GiB used). Failed to free sufficient space by deleting unused images. Consider resizing the disk or deleting unused files.`. ([#132578](https://github.com/kubernetes/kub...
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Thu Mar 19 03:20:49 GMT 2026
    - 265.9K bytes
    - Click Count (0)
  7. CHANGELOG/CHANGELOG-1.28.md

    - Fixed cronjob controller handling of complex schedules, like `30 6-16/4 * * 1-5`, for example. ([#118724](https://github.com/kubernetes/kubernetes/pull/118724), [@soltysh](https://github.com/soltysh))
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Fri Sep 05 03:47:18 GMT 2025
    - 456.9K bytes
    - Click Count (1)
  8. docs/es/docs/help-fastapi.md

    En muchos casos solo copiarán un fragmento del código, pero eso no es suficiente para **reproducir el problema**.
    
    * Puedes pedirles que proporcionen un [ejemplo mínimo, reproducible](https://stackoverflow.com/help/minimal-reproducible-example), que puedas **copiar-pegar** y ejecutar localmente para ver el mismo error o comportamiento que están viendo, o para entender mejor su caso de uso.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 13.4K bytes
    - Click Count (0)
  9. tests/test_application.py

                "openapi": "3.1.0",
                "info": {"title": "FastAPI", "version": "0.1.0"},
                "externalDocs": {
                    "description": "External API documentation.",
                    "url": "https://docs.example.com/api-general",
                },
                "paths": {
                    "/api_route": {
                        "get": {
                            "responses": {
                                "200": {
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Feb 08 10:18:38 GMT 2026
    - 56.9K bytes
    - Click Count (0)
  10. docs/ko/docs/tutorial/security/oauth2-jwt.md

    ///
    
    <img src="/img/tutorial/security/image08.png">
    
    엔드포인트 `/users/me/`를 호출하면 다음과 같은 응답을 받게 됩니다:
    
    ```JSON
    {
      "username": "johndoe",
      "email": "johndoe@example.com",
      "full_name": "John Doe",
      "disabled": false
    }
    ```
    
    <img src="/img/tutorial/security/image09.png">
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 13K bytes
    - Click Count (0)
Back to Top