Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 100 for Nice (0.13 sec)

  1. android/guava/src/com/google/common/math/LinearTransformation.java

       */
      public abstract double transform(double x);
    
      /**
       * Returns the inverse linear transformation. The inverse of a horizontal transformation is a
       * vertical transformation, and vice versa. The inverse of the {@link #forNaN} transformation is
       * itself. In all other cases, the inverse is a transformation such that applying both the
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  2. docs/es/docs/advanced/async-tests.md

    ## Ejecútalo
    
    Puedes ejecutar tus tests como de costumbre vía:
    
    <div class="termy">
    
    ```console
    $ pytest
    
    ---> 100%
    ```
    
    </div>
    
    ## En Detalle
    
    El marcador `@pytest.mark.anyio` le dice a pytest que esta función de test debe ser llamada asíncronamente:
    
    {* ../../docs_src/async_tests/test_main.py hl[7] *}
    
    /// tip | Consejo
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. docs/es/docs/tutorial/first-steps.md

    Vamos a llamarlas "**operaciones**" también.
    
    #### Define un *path operation decorator*
    
    {* ../../docs_src/first_steps/tutorial001.py hl[6] *}
    
    El `@app.get("/")` le dice a **FastAPI** que la función justo debajo se encarga de manejar requests que vayan a:
    
    * el path `/`
    * usando una <abbr title="un método HTTP GET"><code>get</code> operation</abbr>
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 17:46:44 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. docs/es/docs/history-design-future.md

    Como parte de eso, necesitaba investigar, probar y usar muchas alternativas.
    
    La historia de **FastAPI** es en gran parte la historia de sus predecesores.
    
    Como se dice en la sección [Alternativas](alternatives.md){.internal-link target=_blank}:
    
    <blockquote markdown="1">
    
    **FastAPI** no existiría si no fuera por el trabajo previo de otros.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. docs/es/docs/async.md

    Luego es tu turno, haces tu pedido de 2 hamburguesas muy sofisticadas para tu crush y para ti. 🍔🍔
    
    <img src="/img/async/concurrent-burgers/concurrent-burgers-02.png" class="illustration">
    
    El cajero dice algo al cocinero en la cocina para que sepan que tienen que preparar tus hamburguesas (aunque actualmente están preparando las de los clientes anteriores).
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:56:21 UTC 2025
    - 24.7K bytes
    - Viewed (0)
  6. docs/es/docs/tutorial/security/simple-oauth2.md

    OAuth2 especifica que cuando se utiliza el "password flow" (que estamos usando), el cliente/usuario debe enviar campos `username` y `password` como form data.
    
    Y la especificación dice que los campos deben llamarse así. Por lo que `user-name` o `email` no funcionarían.
    
    Pero no te preocupes, puedes mostrarlo como quieras a tus usuarios finales en el frontend.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/testing/ClassSanityTester.java

       *       instances.
       *   <li>For the constructor or static factory method used to construct instances, it's checked
       *       that when equal parameters are passed, the result instance should also be equal; and vice
       *       versa.
       *   <li>If a non-private constructor or non-private static factory method exists:
       *       <ul>
       *         <li>Test will fail if default value for a parameter cannot be determined.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 32.5K bytes
    - Viewed (0)
  8. okhttp/src/jvmTest/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    ibm
    
    // icbc : Industrial and Commercial Bank of China Limited
    // https://www.iana.org/domains/root/db/icbc.html
    icbc
    
    // ice : IntercontinentalExchange, Inc.
    // https://www.iana.org/domains/root/db/ice.html
    ice
    
    // icu : ShortDot SA
    // https://www.iana.org/domains/root/db/icu.html
    icu
    
    // ieee : IEEE Global LLC
    // https://www.iana.org/domains/root/db/ieee.html
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 309.7K bytes
    - Viewed (0)
  9. docs/es/docs/tutorial/security/oauth2-jwt.md

    Crea un verdadero token de acceso JWT y devuélvelo.
    
    {* ../../docs_src/security/tutorial004_an_py310.py hl[118:133] *}
    
    ### Detalles técnicos sobre el "sujeto" `sub` de JWT
    
    La especificación de JWT dice que hay una clave `sub`, con el sujeto del token.
    
    Es opcional usarlo, pero ahí es donde pondrías la identificación del usuario, por lo que lo estamos usando aquí.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/RangeSet.java

      /**
       * Returns a view of the complement of this {@code RangeSet}.
       *
       * <p>The returned view supports the {@link #add} operation if this {@code RangeSet} supports
       * {@link #remove}, and vice versa.
       */
      RangeSet<C> complement();
    
      /**
       * Returns a view of the intersection of this {@code RangeSet} with the specified range.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 9.8K bytes
    - Viewed (0)
Back to top