Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for tango (0.16 sec)

  1. src/main/resources/fess_indices/fess/es/stopwords.txt

    donde
    quien
    desde
    todo
    nos
    durante
    todos
    uno
    les
    ni
    contra
    otros
    ese
    eso
    ante
    ellos
    e
    esto
    mí
    antes
    algunos
    qué
    unos
    yo
    otro
    otras
    otra
    él
    tanto
    esa
    estos
    mucho
    quienes
    nada
    muchos
    cual
    poco
    ella
    estar
    estas
    algunas
    algo
    nosotros
    mi
    mis
    tú
    te
    ti
    tu
    tus
    ellas
    nosotras
    vosotros
    vosotras
    Plain Text
    - Registered: Mon Apr 15 08:04:17 GMT 2024
    - Last Modified: Mon Nov 27 12:59:36 GMT 2023
    - 2.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/pac/ASN1Util.java

                {
                    if ((tagNo >>> 24) != 0)
                    {
                        throw new IOException("Tag number more than 31 bits");
                    }
    
                    tagNo <<= 7;
    
                    b = s.read();
                    if (b < 0)
                    {
                        throw new EOFException("EOF found inside tag value.");
                    }
    
                    tagNo |= (b & 0x7f);
                }
    Java
    - Registered: Sun Apr 14 00:10:09 GMT 2024
    - Last Modified: Mon Oct 02 12:02:06 GMT 2023
    - 6.5K bytes
    - Viewed (0)
  3. docs/es/docs/benchmarks.md

    * **Starlette**:
        * Tendrá el siguiente mejor desempeño, después de Uvicorn. De hecho, Starlette usa Uvicorn para correr. Por lo tanto, probablemente sólo pueda volverse "más lento" que Uvicorn al tener que ejecutar más código.
    Plain Text
    - Registered: Sun Apr 14 07:19:09 GMT 2024
    - Last Modified: Wed Feb 07 11:39:50 GMT 2024
    - 3.9K bytes
    - Viewed (0)
  4. src/main/resources/fess_indices/fess/eu/stopwords.txt

    beroriek
    beste
    bezala
    da
    dago
    dira
    ditu
    du
    dute
    edo
    egin
    ere
    eta
    eurak
    ez
    gainera
    gu
    gutxi
    guzti
    haiei
    haiek
    haietan
    hainbeste
    hala
    han
    handik
    hango
    hara
    hari
    hark
    hartan
    hau
    hauei
    hauek
    hauetan
    hemen
    hemendik
    hemengo
    hi
    hona
    honek
    honela
    honetan
    honi
    hor
    hori
    horiei
    horiek
    horietan
    horko
    horra
    Plain Text
    - Registered: Mon Apr 15 08:04:17 GMT 2024
    - Last Modified: Thu Jul 19 06:31:02 GMT 2018
    - 709 bytes
    - Viewed (0)
  5. docs/es/docs/async.md

    ---
    
    Si simplemente no lo sabes, usa `def` normal.
    
    ---
    
    **Nota**: puedes mezclar `def` y `async def` en tus *path operation functions* tanto como lo necesites y definir cada una utilizando la mejor opción para ti. FastAPI hará lo correcto con ellos.
    
    Plain Text
    - Registered: Sun Apr 14 07:19:09 GMT 2024
    - Last Modified: Thu Apr 04 14:20:53 GMT 2024
    - 24.9K bytes
    - Viewed (0)
  6. AUTHORS

    # See the latter for an explanation.
    
    # Names should be added to this file as:
    # Name or Organization <email address>
    # The email address is not required for organizations.
    
    Google Inc.
    Yuan Tang <******@****.***>
    Plain Text
    - Registered: Tue Apr 16 12:39:09 GMT 2024
    - Last Modified: Thu Mar 03 15:11:48 GMT 2022
    - 357 bytes
    - Viewed (0)
  7. docs/es/docs/advanced/path-operation-advanced-configuration.md

        Incluso si están en diferentes módulos (archivos Python).
    
    ## Excluir de OpenAPI
    
    Para excluir una *operación de path* del esquema OpenAPI generado (y por tanto del la documentación generada automáticamente), usa el parámetro `include_in_schema` y asigna el valor como `False`;
    
    ```Python hl_lines="6"
    {!../../../docs_src/path_operation_advanced_configuration/tutorial003.py!}
    ```
    
    Plain Text
    - Registered: Sun Apr 14 07:19:09 GMT 2024
    - Last Modified: Sun Jul 04 12:49:31 GMT 2021
    - 2.1K bytes
    - Viewed (0)
  8. docs/es/docs/features.md

    ## Características de Starlette
    
    **FastAPI** está basado y es completamente compatible con <a href="https://www.starlette.io/" class="external-link" target="_blank"><strong>Starlette</strong></a>. Tanto así, que cualquier código de Starlette que tengas también funcionará.
    
    `FastAPI` es realmente una sub-clase de `Starlette`. Así que, si ya conoces o usas Starlette, muchas de las características funcionarán de la misma manera.
    
    Plain Text
    - Registered: Sun Apr 14 07:19:09 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 10.9K bytes
    - Viewed (0)
  9. docs/es/docs/tutorial/query-params.md

    !!! check "Revisa"
        También puedes notar que **FastAPI** es lo suficientemente inteligente para darse cuenta de que el parámetro de path `item_id` es un parámetro de path y que `q` no lo es, y por lo tanto es un parámetro de query.
    
    !!! note "Nota"
        FastAPI sabrá que `q` es opcional por el `= None`.
    
    Plain Text
    - Registered: Sun Apr 14 07:19:09 GMT 2024
    - Last Modified: Sat May 14 11:59:59 GMT 2022
    - 5.1K bytes
    - Viewed (0)
  10. docs/pt/docs/async.md

    ---
    
    Se você simplesmente não sabe, use apenas `def`.
    
    ---
    
    **Note**: Você pode misturar `def` e `async def` nas suas *funções de operação de rota* tanto quanto necessário e definir cada função usando a melhor opção para você. FastAPI irá fazer a coisa certa com elas.
    
    De qualquer forma, em ambos os casos acima, FastAPI irá trabalhar assincronamente e ser extremamente rápido.
    
    Plain Text
    - Registered: Sun Apr 14 07:19:09 GMT 2024
    - Last Modified: Sun Mar 31 23:52:53 GMT 2024
    - 22.2K bytes
    - Viewed (0)
Back to top