Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for definiciones (0.09 sec)

  1. docs/es/docs/tutorial/body.md

    * Proporcionar los datos recibidos en el parámetro `item`.
        * Como lo declaraste en la función como de tipo `Item`, también tendrás todo el soporte del editor (autocompletado, etc.) para todos los atributos y sus tipos.
    * Generar definiciones de <a href="https://json-schema.org" class="external-link" target="_blank">JSON Schema</a> para tu modelo, que también puedes usar en cualquier otro lugar si tiene sentido para tu proyecto.
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 7.6K bytes
    - Viewed (0)
  2. docs/es/docs/alternatives.md

    * Sistema de Inyección de Dependencias.
    
    No utiliza un paquete de validación de datos, serialización y documentación de terceros como Pydantic, tiene el suyo propio. Por lo tanto, estas definiciones de tipos de datos no serían reutilizables tan fácilmente.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 10:15:01 UTC 2025
    - 25.9K bytes
    - Viewed (0)
  3. docs/es/docs/tutorial/first-steps.md

    #### "Esquema" { #schema }
    
    Un "esquema" es una definición o descripción de algo. No el código que lo implementa, sino solo una descripción abstracta.
    
    #### Esquema de la API { #api-schema }
    
    En este caso, <a href="https://github.com/OAI/OpenAPI-Specification" class="external-link" target="_blank">OpenAPI</a> es una especificación que dicta cómo definir un esquema de tu API.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 13.3K bytes
    - Viewed (0)
  4. docs/es/docs/async.md

    ### Sub-dependencias { #sub-dependencies }
    
    Puedes tener múltiples dependencias y [sub-dependencias](tutorial/dependencies/sub-dependencies.md){.internal-link target=_blank} requiriéndose mutuamente (como parámetros de las definiciones de funciones), algunas de ellas podrían ser creadas con `async def` y algunas con `def` normal. Aun funcionará, y las que fueron creadas con `def` normal serían llamadas en un hilo externo (del threadpool) en lugar de ser "awaited".
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 10:15:01 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  5. fastapi/openapi/utils.py

                            security_schemes
                        )
                    if path_definitions:
                        definitions.update(path_definitions)
        if definitions:
            components["schemas"] = {k: definitions[k] for k in sorted(definitions)}
        if components:
            output["components"] = components
        output["paths"] = paths
        if webhook_paths:
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 12:54:56 UTC 2025
    - 23.2K bytes
    - Viewed (0)
  6. fastapi/_compat/v2.py

                field._type_adapter.core_schema,
            )
            for field in list(fields) + list(unique_flat_model_fields)
        ]
        field_mapping, definitions = schema_generator.generate_definitions(inputs=inputs)
        for item_def in cast(dict[str, dict[str, Any]], definitions).values():
            if "description" in item_def:
                item_description = cast(str, item_def["description"]).split("\f")[0]
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 12:54:56 UTC 2025
    - 19.1K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/package-info.java

     * specific language governing permissions and limitations
     * under the License.
     */
    
    /**
     * Provides annotations for Maven plugin development, including mojo configuration,
     * parameter definitions, and lifecycle bindings. These annotations are used to
     * generate plugin descriptors and configure plugin behavior.
     *
     * @since 4.0.0
     */
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sun Nov 16 22:51:39 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  8. docs/de/docs/tutorial/body.md

    * <a href="https://json-schema.org" class="external-link" target="_blank">JSON Schema</a>-Definitionen für Ihr Modell generieren, die Sie auch überall sonst verwenden können, wenn es für Ihr Projekt Sinn macht.
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 24 10:28:19 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  9. docs/de/llm-prompt.md

    ### Target language
    
    Translate to German (Deutsch).
    
    Language code: de.
    
    
    ### Definitions
    
    "hyphen"
        The character «-»
        Unicode U+002D (HYPHEN-MINUS)
        Alternative names: hyphen, dash, minus sign
    
    "dash"
        The character «–»
        Unicode U+2013 (EN DASH)
        German name: Halbgeviertstrich
    
    
    ### Grammar to use when talking to the reader
    
    Use the formal grammar (use «Sie» instead of «Du»).
    
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Fri Dec 26 09:39:53 UTC 2025
    - 11.9K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/body.md

    * Generate <a href="https://json-schema.org" class="external-link" target="_blank">JSON Schema</a> definitions for your model, you can also use them anywhere else you like if it makes sense for your project.
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 20 15:55:38 UTC 2025
    - 6.8K bytes
    - Viewed (0)
Back to top