Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 296 for definiciones (0.23 sec)

  1. docs/es/docs/tutorial/first-steps.md

    En ese caso haría referencia a los atributos del JSON, los tipos de datos que tiene, etc.
    
    #### OpenAPI y JSON Schema
    
    OpenAPI define un schema de API para tu API. Ese schema incluye definiciones (o "schemas") de los datos enviados y recibidos por tu API usando **JSON Schema**, el estándar para los schemas de datos en JSON.
    
    #### Revisa el `openapi.json`
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 9.9K bytes
    - Viewed (0)
  2. docs/es/docs/async.md

    ### Subdependencias
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 24.9K bytes
    - Viewed (0)
  3. fastapi/openapi/utils.py

                security_definitions, operation_security = get_openapi_security_definitions(
                    flat_dependant=flat_dependant
                )
                if operation_security:
                    operation.setdefault("security", []).extend(operation_security)
                if security_definitions:
                    security_schemes.update(security_definitions)
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:40:57 GMT 2024
    - 21.8K bytes
    - Viewed (0)
  4. fastapi/_compat.py

                )
                definitions.update(m_definitions)
                model_name = model_name_map[model]
                if "description" in m_schema:
                    m_schema["description"] = m_schema["description"].split("\f")[0]
                definitions[model_name] = m_schema
            return definitions
    
        def is_pv1_scalar_field(field: ModelField) -> bool:
            from fastapi import params
    
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:40:57 GMT 2024
    - 22.6K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/ops/README.md

    autogenerated from the registered Op and API definitions.
    
    To regenerate them, run the script in this directory, `update_cpp_ops.sh`, with
    no arguments. This script will overwrite the existing ops in-place at
    ***tensorflow/c/experimental/ops/\*_ops.{cc,h}***.
    
    Run this `update_cpp_ops.sh` script when Op definitions change in the registry.
    
    Plain Text
    - Registered: Tue Feb 27 12:39:08 GMT 2024
    - Last Modified: Wed Jul 28 17:21:01 GMT 2021
    - 993 bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/Packaging.java

    import org.apache.maven.api.annotations.Nonnull;
    import org.apache.maven.api.model.PluginContainer;
    
    /**
     * Interface representing a Maven project packaging.
     * <p>
     * TODO: define how to plug in new packaging definitions using the SPI.
     *   the packaging are currently defined by Maven 3 {@code Provider<LifecycleMapping>}
     *
     * @since 4.0.0
     */
    @Experimental
    @Immutable
    public interface Packaging extends ExtensibleEnum {
        /**
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  7. maven-core/src/test/resources-project-builder/merged-filter-order/sub/pom.xml

      <artifactId>test</artifactId>
      <version>1.0</version>
      <packaging>jar</packaging>
    
      <name>Maven Integration Test :: MNG-4008</name>
      <description>
        Verify that filter definitions are properly merged.
      </description>
    
      <build>
        <filters>
          <filter>src/main/filters/child-a.properties</filter>
          <filter>src/main/filters/child-c.properties</filter>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.7K bytes
    - Viewed (0)
  8. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ForwardingImmutableCollection.java

    package com.google.common.collect;
    
    import java.util.Collection;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * A GWT-only class only used by GWT emulations. It is used to consolidate the definitions of method
     * delegation to save code size.
     *
     * @author Hayward Chan
     */
    // TODO: Make this class GWT serializable.
    @ElementTypesAreNonnullByDefault
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Jan 23 18:43:40 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/LifecycleProvider.java

     * annotation.  If a {@code META-INF/maven/lifecycle.xml} file is packaged
     * in the plugin, Maven will provide a default implementation that will parse
     * the file and return the contained lifecycle definitions.
     *
     * @since 4.0.0
     */
    @Experimental
    @Consumer
    public interface LifecycleProvider {
    
        List<Lifecycle> getLifecycles();
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 28 23:54:53 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  10. maven-core/src/test/resources-project-builder/merged-filter-order/pom.xml

      <artifactId>parent</artifactId>
      <version>1.0</version>
      <packaging>pom</packaging>
    
      <name>Maven Integration Test :: MNG-4008</name>
      <description>
        Verify that filter definitions are properly merged.
      </description>
    
      <build>
        <filters>
          <!-- NOTE: The first filter is deliberately defined by the child as well, so should not be added twice -->
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.7K bytes
    - Viewed (0)
Back to top