Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for YA (0.17 sec)

  1. docs/es/docs/benchmarks.md

             * **FastAPI**: (usa Starlette) un microframework API con varias características adicionales para construir APIs, con validación de datos, etc.
    * **Uvicorn**:
        * Tendrá el mejor rendimiento, ya que no tiene mucho código extra aparte del propio servidor.
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Wed Feb 07 11:39:50 GMT 2024
    - 3.9K bytes
    - Viewed (0)
  2. docs/az/docs/index.md

    
    @app.get("/items/{item_id}")
    def read_item(item_id: int, q: Union[str, None] = None):
        return {"item_id": item_id, "q": q}
    ```
    
    <details markdown="1">
    <summary>Və ya <code>async def</code>...</summary>
    
    Əgər kodunuzda `async` və ya `await` vardırsa `async def` istifadə edə bilərik:
    
    ```Python hl_lines="9  14"
    from typing import Union
    
    from fastapi import FastAPI
    
    app = FastAPI()
    
    
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 22.8K bytes
    - Viewed (0)
  3. docs/tr/docs/alternatives.md

    # Alternatifler, İlham Kaynakları ve Karşılaştırmalar
    
    **FastAPI**'ya neler ilham verdi? Diğer alternatiflerle karşılaştırıldığında farkları neler? **FastAPI** diğer alternatiflerinden neler öğrendi?
    
    ## Giriş
    
    Başkalarının daha önceki çalışmaları olmasaydı, **FastAPI** var olmazdı.
    
    Geçmişte oluşturulan pek çok araç **FastAPI**'a ilham kaynağı olmuştur.
    
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 28.8K bytes
    - Viewed (0)
  4. docs/tr/docs/async.md

    
    ### Eşzamanlılık (Concurrency) ve Burgerler
    
    
    Yukarıda açıklanan bu **asenkron** kod fikrine bazen **"eşzamanlılık"** da denir. **"Paralellikten"** farklıdır.
    
    **Eşzamanlılık** ve **paralellik**, "aynı anda az ya da çok olan farklı işler" ile ilgilidir.
    
    Ancak *eşzamanlılık* ve *paralellik* arasındaki ayrıntılar oldukça farklıdır.
    
    
    Farkı görmek için burgerlerle ilgili aşağıdaki hikayeyi hayal edin:
    
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 21.9K bytes
    - Viewed (0)
  5. docs/es/docs/async.md

    <img src="https://fastapi.tiangolo.com/img/async/concurrent-burgers/concurrent-burgers-04.png" alt="illustration">
    
    Mientras esperas, vas con esa persona 😍 y eliges una mesa, se sientan y hablan durante un rato largo (ya que las hamburguesas son muy impresionantes y necesitan un rato para prepararse ✨🍔✨).
    
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 24.9K bytes
    - Viewed (0)
  6. src/main/resources/fess_indices/fess/es/stopwords.txt

    de
    la
    que
    el
    en
    y
    a
    los
    del
    se
    las
    por
    un
    para
    con
    no
    una
    su
    al
    lo
    como
    más
    pero
    sus
    le
    ya
    o
    este
    sí
    porque
    esta
    entre
    cuando
    muy
    sin
    sobre
    también
    me
    hasta
    hay
    donde
    quien
    desde
    todo
    nos
    durante
    todos
    uno
    les
    ni
    contra
    otros
    ese
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Mon Nov 27 12:59:36 GMT 2023
    - 2.2K bytes
    - Viewed (0)
  7. docs/es/docs/advanced/security/index.md

        Las siguientes secciones **no necesariamente son "avanzadas"**.
    
        Y es posible que para tu caso de uso, la solución esté en alguna de ellas.
    
    ## Leer primero el Tutorial
    
    En las siguientes secciones asumimos que ya has leído el principal [Tutorial - Guía de Usuario: Seguridad](../../tutorial/security/index.md){.internal-link target=_blank}.
    
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Sun Mar 31 23:52:53 GMT 2024
    - 718 bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/hash/MacHashFunctionTest.java

        checkSha1("b617318655057264e28bc0b6fb378c8ef146be00", key, data);
      }
    
      public void testRfc2202_hmacSha1_case2() {
        byte[] key = "Jefe".getBytes(UTF_8);
        String data = "what do ya want for nothing?";
    
        checkSha1("effcdf6ae5eb2fa2d27416d5f184df9c259a7c79", key, data);
      }
    
      public void testRfc2202_hmacSha1_case3() {
        byte[] key = fillByteArray(20, 0xaa);
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 13.8K bytes
    - Viewed (0)
  9. docs/es/docs/python-types.md

    Pero, así nunca uses **FastAPI** te beneficiarás de aprender un poco sobre los type hints.
    
    !!! note "Nota"
        Si eres un experto en Python y ya lo sabes todo sobre los type hints, salta al siguiente capítulo.
    
    ## Motivación
    
    Comencemos con un ejemplo simple:
    
    ```Python
    {!../../../docs_src/python_types/tutorial001.py!}
    ```
    
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 9.2K bytes
    - Viewed (0)
  10. src/main/resources/fess_indices/fess/tr/stopwords.txt

    sizden
    sizi
    sizin
    şey
    şeyden
    şeyi
    şeyler
    şöyle
    şu
    şuna
    şunda
    şundan
    şunları
    şunu
    tarafından
    trilyon
    tüm
    üç
    üzere
    var
    vardı
    ve
    veya
    ya
    yani
    yapacak
    yapılan
    yapılması
    yapıyor
    yapmak
    yaptı
    yaptığı
    yaptığını
    yaptıkları
    yedi
    yerine
    yetmiş
    yine
    yirmi
    yoksa
    yüz
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Jul 19 06:31:02 GMT 2018
    - 1.5K bytes
    - Viewed (1)
Back to top