Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 545 for imagem (0.18 sec)

  1. docs/en/docs/img/tutorial/path-operation-advanced-configuration/image01.png

    image01.png...
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Thu Jul 29 20:01:13 UTC 2021
    - 66.5K bytes
    - Viewed (0)
  2. docs/en/docs/img/tutorial/path-operation-configuration/image01.png

    image01.png...
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Thu Mar 26 19:09:53 UTC 2020
    - 40.9K bytes
    - Viewed (0)
  3. docs/en/docs/img/tutorial/path-params/image02.png

    image02.png...
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Thu Mar 26 19:09:53 UTC 2020
    - 65.7K bytes
    - Viewed (0)
  4. docs/en/docs/img/tutorial/request-form-models/image01.png

    image01.png...
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Thu Sep 05 15:16:50 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  5. docs/en/docs/img/tutorial/response-model/image02.png

    image02.png...
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Thu Mar 26 19:09:53 UTC 2020
    - 87K bytes
    - Viewed (0)
  6. docs/en/docs/img/tutorial/separate-openapi-schemas/image02.png

    image02.png...
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri Aug 25 19:10:22 UTC 2023
    - 90.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/thumbnail/ThumbnailAction.java

        }
    
        /**
         * Determines the MIME type of an image file based on its file extension.
         *
         * @param imageFile the image file
         * @return the MIME type string
         */
        protected String getImageMimeType(final File imageFile) {
            final String path = imageFile.getAbsolutePath();
            if (path.endsWith(".png")) {
                return "image/png";
            }
            if (path.endsWith(".gif")) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  8. samples/guide/src/main/java/okhttp3/recipes/PostMultipart.java

            .addFormDataPart("image", "logo-square.png",
                RequestBody.create(
                    new File("docs/images/logo-square.png"),
                    MEDIA_TYPE_PNG))
            .build();
    
        Request request = new Request.Builder()
            .header("Authorization", "Client-ID " + IMGUR_CLIENT_ID)
            .url("https://api.imgur.com/3/image")
            .post(requestBody)
            .build();
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Jun 24 12:59:42 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  9. docs/bn/docs/python-types.md

    একই পর্যায়ে, আপনি অটোকমপ্লিট ট্রিগার করতে `Ctrl+Space` চাপেন এবং আপনি দেখতে পান:
    
    <img src="/img/python-types/image02.png">
    
    এর সাথে, আপনি অপশনগুলি দেখে, স্ক্রল করতে পারেন, যতক্ষণ না আপনি এমন একটি অপশন খুঁজে পান যা কিছু মনে পরিয়ে দেয়:
    
    <img src="/img/python-types/image03.png">
    
    ## আরও প্রেরণা
    
    এই ফাংশনটি দেখুন, এটিতে ইতিমধ্যে টাইপ হিন্ট রয়েছে:
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  10. docs/ko/docs/tutorial/body-nested-models.md

    {* ../../docs_src/body_nested_models/tutorial007.py hl[9,14,20,23,27] *}
    
    /// info | 정보
    
    `Offer`가 선택사항 `Image` 리스트를 차례로 갖는 `Item` 리스트를 어떻게 가지고 있는지 주목하세요
    
    ///
    
    ## 순수 리스트의 본문
    
    예상되는 JSON 본문의 최상위 값이 JSON `array`(파이썬 `list`)면, Pydantic 모델에서와 마찬가지로 함수의 매개변수에서 타입을 선언할 수 있습니다:
    
    ```Python
    images: List[Image]
    ```
    
    이를 아래처럼:
    
    {* ../../docs_src/body_nested_models/tutorial008.py hl[15] *}
    
    ## 어디서나 편집기 지원
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top