Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for medio (0.2 sec)

  1. docs/es/llm-prompt.md

    * default: por defecto (do not translate to "predeterminado")
    * default values: valores por defecto (do not translate to "valores predeterminados")
    * media type: media type (do not translate to "tipo de medio")
    * instantiate: crear un instance (do not translate to "instanciar")
    * OAuth2 Scopes: Scopes de OAuth2 (do not translate to "Alcances de OAuth2")
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sat Jul 26 18:57:50 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  2. src/main/resources/fess_label_it.properties

    labels.searchlog_log_type_search_user_hour=Numero di utenti/ora
    labels.searchlog_log_type_search_user_day=Numero di utenti/giorno
    labels.searchlog_log_type_search_reqtimeavg_hour=Tempo medio richiesta/ora
    labels.searchlog_log_type_search_reqtimeavg_day=Tempo medio richiesta/giorno
    labels.searchlog_log_type_click_count=Numero di clic
    labels.searchlog_log_type_favorite_count=Numero di preferiti
    labels.searchlog_log_message=Messaggio
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 43.4K bytes
    - Viewed (0)
  3. src/main/resources/fess_label_es.properties

    labels.searchlog_log_type_search_user_hour=Número de usuarios/hora
    labels.searchlog_log_type_search_user_day=Número de usuarios/día
    labels.searchlog_log_type_search_reqtimeavg_hour=Tiempo medio de solicitud/hora
    labels.searchlog_log_type_search_reqtimeavg_day=Tiempo medio de solicitud/día
    labels.searchlog_log_type_click_count=Número de clics
    labels.searchlog_log_type_favorite_count=Número de favoritos
    labels.searchlog_log_message=Mensaje
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 45.4K bytes
    - Viewed (0)
  4. src/main/resources/fess_label_pt_BR.properties

    labels.searchlog_log_type_search_user_hour=Número de usuários/hora
    labels.searchlog_log_type_search_user_day=Número de usuários/dia
    labels.searchlog_log_type_search_reqtimeavg_hour=Tempo médio de solicitação/hora
    labels.searchlog_log_type_search_reqtimeavg_day=Tempo médio de solicitação/dia
    labels.searchlog_log_type_click_count=Número de cliques
    labels.searchlog_log_type_favorite_count=Número de favoritos
    labels.searchlog_log_message=Mensagem
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 45.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/util/SearchEngineUtil.java

                }
                return new ByteArrayOutputStream();
            }
        }
    
        /**
         * Creates an OutputStream from a ToXContent object with the specified media type.
         *
         * @param xContent the content object to convert
         * @param mediaType the media type for the output
         * @return an OutputStream containing the converted content
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  6. docs/en/docs/advanced/additional-responses.md

            }
        }
    }
    ```
    
    ## Additional media types for the main response { #additional-media-types-for-the-main-response }
    
    You can use this same `responses` parameter to add different media types for the same main response.
    
    For example, you can add an additional media type of `image/png`, declaring that your *path operation* can return a JSON object (with media type `application/json`) or a PNG image:
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  7. docs/en/docs/advanced/custom-response.md

    And if that `Response` has a JSON media type (`application/json`), like is the case with the `JSONResponse` and `UJSONResponse`, the data you return will be automatically converted (and filtered) with any Pydantic `response_model` that you declared in the *path operation decorator*.
    
    /// note
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 12.2K bytes
    - Viewed (0)
  8. docs/en/mkdocs.yml

    theme:
      name: material
      custom_dir: ../en/overrides
      palette:
      - media: (prefers-color-scheme)
        toggle:
          icon: material/lightbulb-auto
          name: Switch to light mode
      - media: '(prefers-color-scheme: light)'
        scheme: default
        primary: teal
        accent: amber
        toggle:
          icon: material/lightbulb
          name: Switch to dark mode
      - media: '(prefers-color-scheme: dark)'
        scheme: slate
        primary: teal
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/request-files.md

    ### `UploadFile` { #uploadfile }
    
    `UploadFile` has the following attributes:
    
    * `filename`: A `str` with the original file name that was uploaded (e.g. `myimage.jpg`).
    * `content_type`: A `str` with the content type (MIME type / media type) (e.g. `image/jpeg`).
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/request-forms.md

    **FastAPI** will make sure to read that data from the right place instead of JSON.
    
    /// note | Technical Details
    
    Data from forms is normally encoded using the "media type" `application/x-www-form-urlencoded`.
    
    But when the form includes files, it is encoded as `multipart/form-data`. You'll read about handling files in the next chapter.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 2.7K bytes
    - Viewed (0)
Back to top