Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 545 for imagem (0.05 sec)

  1. docs/works_with_okhttp.md

     * [Flipper](https://fbflipper.com/): A desktop debugging platform for mobile developers.
     * [Fresco](https://github.com/facebook/fresco): An Android library for managing images and the memory they use.
     * [Glide](https://github.com/bumptech/glide): An image loading and caching library for Android focused on smooth scrolling.
     * [GoogleAppEngineOkHttp](https://github.com/apkelly/GoogleAppEngineOkHttp): An OkHttp Call that works on Google App Engine.
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Feb 15 16:18:51 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  2. docs/es/docs/tutorial/path-operation-configuration.md

    Se marcará claramente como deprecado en la documentación interactiva:
    
    <img src="/img/tutorial/path-operation-configuration/image04.png">
    
    Revisa cómo lucen las *path operations* deprecadas y no deprecadas:
    
    <img src="/img/tutorial/path-operation-configuration/image05.png">
    
    ## Resumen
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. docs/ko/docs/how-to/configure-swagger-ui.md

    설정을 변경하지 않으면, 기본적으로 구문 강조 기능이 활성화되어 있습니다:
    
    <img src="/img/tutorial/extending-openapi/image02.png">
    
    그러나 `syntaxHighlight`를 `False`로 설정하여 구문 강조 기능을 비활성화할 수 있습니다:
    
    {* ../../docs_src/configure_swagger_ui/tutorial001.py hl[3] *}
    
    ...그럼 Swagger UI에서 더 이상 구문 강조 기능이 표시되지 않습니다:
    
    <img src="/img/tutorial/extending-openapi/image03.png">
    
    ## 테마 변경
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 09 12:25:19 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.26.md

    [registry.k8s.io/kube-apiserver:v1.26.14](ht...
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu Mar 14 16:24:51 UTC 2024
    - 425.7K bytes
    - Viewed (0)
  5. docs/em/docs/advanced/websockets.md

    👆 🔜 👀 🙅 📃 💖:
    
    <img src="/img/tutorial/websockets/image01.png">
    
    👆 💪 🆎 📧 🔢 📦, &amp; 📨 👫:
    
    <img src="/img/tutorial/websockets/image02.png">
    
    &amp; 👆 **FastAPI** 🈸 ⏮️ *️⃣ 🔜 📨 🔙:
    
    <img src="/img/tutorial/websockets/image03.png">
    
    👆 💪 📨 (&amp; 📨) 📚 📧:
    
    <img src="/img/tutorial/websockets/image04.png">
    
    &amp; 🌐 👫 🔜 ⚙️ 🎏 *️⃣ 🔗.
    
    ## ⚙️ `Depends` &amp; 🎏
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. docs/pt/docs/tutorial/path-operation-configuration.md

    Ela será claramente marcada como descontinuada nas documentações interativas:
    
    <img src="/img/tutorial/path-operation-configuration/image04.png">
    
    Verifique como *operações de rota* descontinuadas e não descontinuadas se parecem:
    
    <img src="/img/tutorial/path-operation-configuration/image05.png">
    
    ## Resumindo
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. samples/guide/src/main/java/okhttp3/recipes/kt/UploadProgress.kt

                }
              }
            }
          }
    
        val file = File("docs/images/logo-square.png")
        val requestBody: RequestBody = file.asRequestBody(MEDIA_TYPE_PNG)
    
        val request =
          Request
            .Builder()
            .header("Authorization", "Client-ID $IMGUR_CLIENT_ID")
            .url("https://api.imgur.com/3/image")
            .post(ProgressRequestBody(requestBody, progressListener))
            .build()
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 30 17:01:12 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.22.md

    [registry.k8s.io/kube-apiserver:v1.22.17](ht...
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Tue Dec 13 12:43:45 UTC 2022
    - 454.1K bytes
    - Viewed (0)
  9. samples/guide/src/main/java/okhttp3/recipes/kt/PostMultipart.kt

      fun run() {
        // Use the imgur image upload API as documented at https://api.imgur.com/endpoints/image
        val requestBody =
          MultipartBody
            .Builder()
            .setType(MultipartBody.FORM)
            .addFormDataPart("title", "Square Logo")
            .addFormDataPart(
              "image",
              "logo-square.png",
              File("docs/images/logo-square.png").asRequestBody(MEDIA_TYPE_PNG),
            ).build()
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  10. docs/es/docs/how-to/separate-openapi-schemas.md

    Puedes confirmar eso en la documentación, el campo `description` no tiene un **asterisco rojo**, no está marcado como requerido:
    
    <div class="screenshot">
    <img src="/img/tutorial/separate-openapi-schemas/image01.png">
    </div>
    
    ### Modelo para Salida
    
    Pero si usas el mismo modelo como salida, como aquí:
    
    {* ../../docs_src/separate_openapi_schemas/tutorial001_py310.py hl[19] *}
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top