Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 70 for emetadata (0.06 sec)

  1. docs/pt/docs/tutorial/metadata.md

    # Metadados e Urls de Documentos { #metadata-and-docs-urls }
    
    Você pode personalizar várias configurações de metadados na sua aplicação **FastAPI**.
    
    ## Metadados para API { #metadata-for-api }
    
    Você pode definir os seguintes campos que são usados na especificação OpenAPI e nas interfaces automáticas de documentação da API:
    
    | Parâmetro | Tipo | Descrição |
    |------------|------|-------------|
    | `title` | `str` | O título da API. |
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 6.3K bytes
    - Viewed (0)
  2. docs/en/docs/tutorial/metadata.md

    # Metadata and Docs URLs { #metadata-and-docs-urls }
    
    You can customize several metadata configurations in your **FastAPI** application.
    
    ## Metadata for API { #metadata-for-api }
    
    You can set the following fields that are used in the OpenAPI specification and the automatic API docs UIs:
    
    | Parameter | Type | Description |
    |------------|------|-------------|
    | `title` | `str` | The title of the API. |
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  3. docs/es/docs/tutorial/metadata.md

    # Metadata y URLs de Docs { #metadata-and-docs-urls }
    
    Puedes personalizar varias configuraciones de metadata en tu aplicación **FastAPI**.
    
    ## Metadata para la API { #metadata-for-api }
    
    Puedes establecer los siguientes campos que se usan en la especificación OpenAPI y en las interfaces automáticas de documentación de la API:
    
    | Parámetro | Tipo | Descripción |
    |------------|------|-------------|
    | `title` | `str` | El título de la API. |
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  4. docs/de/docs/tutorial/metadata.md

    # Metadaten und Dokumentations-URLs { #metadata-and-docs-urls }
    
    Sie können mehrere Metadaten-Konfigurationen in Ihrer **FastAPI**-Anwendung anpassen.
    
    ## Metadaten für die API { #metadata-for-api }
    
    Sie können die folgenden Felder festlegen, die in der OpenAPI-Spezifikation und in den Benutzeroberflächen der automatischen API-Dokumentation verwendet werden:
    
    | Parameter | Typ | Beschreibung |
    |------------|------|-------------|
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  5. docs/ru/docs/tutorial/metadata.md

    # URL-адреса метаданных и документации { #metadata-and-docs-urls }
    
    Вы можете настроить несколько конфигураций метаданных в вашем **FastAPI** приложении.
    
    ## Метаданные для API { #metadata-for-api }
    
    Вы можете задать следующие поля, которые используются в спецификации OpenAPI и в UI автоматической документации API:
    
    | Параметр | Тип | Описание |
    |------------|------|-------------|
    | `title` | `str` | Заголовок API. |
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  6. compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultVersionRangeResolver.java

                RequestTrace trace,
                Metadata metadata,
                ArtifactRepository repository,
                VersionRangeResult result) {
            Versioning versioning = null;
            try {
                if (metadata != null) {
                    try (SyncContext syncContext = syncContextFactory.newInstance(session, true)) {
                        syncContext.acquire(null, Collections.singleton(metadata));
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Dec 16 13:41:14 UTC 2025
    - 11.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/storage/GcsStorageClient.java

                if (blob == null) {
                    return Collections.emptyMap();
                }
                // GCS uses metadata instead of tags
                final Map<String, String> metadata = blob.getMetadata();
                return metadata != null ? new HashMap<>(metadata) : Collections.emptyMap();
            } catch (final Exception e) {
                throw new StorageException("Failed to get tags from " + objectName, e);
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  8. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/gcs/GcsClient.java

                    }
                }
    
                if (includeContent) {
                    // Add blob metadata as response metadata (only when content is included)
                    final Map<String, String> blobMetadata = blob.getMetadata();
                    if (blobMetadata != null) {
                        blobMetadata.forEach(responseData::addMetaData);
                    }
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Dec 11 08:38:29 UTC 2025
    - 17.5K bytes
    - Viewed (0)
  9. compat/maven-compat/src/test/java/org/apache/maven/repository/legacy/DefaultUpdateCheckManagerTest.java

            RepositoryMetadata metadata = new ArtifactRepositoryMetadata(a);
    
            File file = new File(
                    localRepository.getBasedir(), localRepository.pathOfLocalRepositoryMetadata(metadata, localRepository));
            file.delete();
    
            File touchFile = updateCheckManager.getTouchfile(metadata, file);
            touchFile.delete();
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Dec 16 13:41:14 UTC 2025
    - 9K bytes
    - Viewed (0)
  10. pdm_build.py

    import os
    from typing import Any
    
    from pdm.backend.hooks import Context
    
    TIANGOLO_BUILD_PACKAGE = os.getenv("TIANGOLO_BUILD_PACKAGE", "fastapi")
    
    
    def pdm_build_initialize(context: Context) -> None:
        metadata = context.config.metadata
        # Get custom config for the current package, from the env var
        config: dict[str, Any] = context.config.data["tool"]["tiangolo"][
            "_internal-slim-build"
        ]["packages"].get(TIANGOLO_BUILD_PACKAGE)
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 21:25:59 UTC 2025
    - 691 bytes
    - Viewed (0)
Back to top