Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 71 - 80 of 540 for verb (0.42 seconds)

  1. docs/tr/docs/tutorial/body.md

    Önce, `pydantic` içinden `BaseModel`'i import etmeniz gerekir:
    
    {* ../../docs_src/body/tutorial001_py310.py hl[2] *}
    
    ## Veri modelinizi oluşturun { #create-your-data-model }
    
    Sonra veri modelinizi, `BaseModel`'den kalıtım alan bir class olarak tanımlarsınız.
    
    Tüm attribute'lar için standart Python type'larını kullanın:
    
    {* ../../docs_src/body/tutorial001_py310.py hl[5:9] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 6.9K bytes
    - Click Count (0)
  2. docs/fr/docs/how-to/migrate-from-pydantic-v1-to-pydantic-v2.md

    Depuis FastAPI 0.119.0, il existe également une prise en charge partielle de Pydantic v1 depuis l'intérieur de Pydantic v2, pour faciliter la migration vers v2.
    
    Vous pouvez donc mettre à niveau Pydantic vers la dernière version 2 et modifier les imports pour utiliser le sous-module `pydantic.v1`, et dans de nombreux cas cela fonctionnera tel quel.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 6.2K bytes
    - Click Count (0)
  3. docs/tr/docs/how-to/general.md

    ## Veri Filtreleme - Güvenlik { #filter-data-security }
    
    Döndürmeniz gerekenden daha fazla veri döndürmediğinizden emin olmak için, [Tutorial - Response Model - Return Type](../tutorial/response-model.md) dokümantasyonunu okuyun.
    
    ## Response Performansını Optimize Etme - Response Model - Return Type { #optimize-response-performance-response-model-return-type }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 3.2K bytes
    - Click Count (0)
  4. src/main/resources/fess_indices/fess/lv/stopwords.txt

    nevis
    turpretim
    jeb
    iekam
    iekām
    iekāms
    kolīdz
    līdzko
    tiklīdz
    jebšu
    tālab
    tāpēc
    nekā
    itin
    jā
    jau
    jel
    nē
    nezin
    tad
    tikai
    vis
    tak
    iekams
    vien
    # modal verbs
    būt  
    biju 
    biji
    bija
    bijām
    bijāt
    esmu
    esi
    esam
    esat 
    būšu     
    būsi
    būs
    būsim
    būsiet
    tikt
    tiku
    tiki
    tika
    tikām
    tikāt
    tieku
    tiec
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 19 06:31:02 GMT 2018
    - 1.2K bytes
    - Click Count (0)
  5. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

      So she was considering in her own mind (as well as she could,
    for the hot day made her feel very sleepy and stupid), whether
    the pleasure of making a daisy-chain would be worth the trouble
    of getting up and picking the daisies, when suddenly a White
    Rabbit with pink eyes ran close by her.
    
      There was nothing so VERY remarkable in that; nor did Alice
    think it so VERY much out of the way to hear the Rabbit say to
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Oct 29 21:35:03 GMT 2012
    - 145.2K bytes
    - Click Count (0)
  6. docs/tr/docs/advanced/custom-response.md

    bir `JSONResponse` içine koyar.
    
    `JSONResponse` örneğinde olduğu gibi JSON media type’ına (`application/json`) sahip bir `response_class` tanımlarsanız, döndürdüğünüz veri; *path operation decorator* içinde tanımladığınız herhangi bir Pydantic `response_model` ile otomatik olarak dönüştürülür (ve filtrelenir). Ancak veri Pydantic ile JSON bytes’a serialize edilmez; bunun yerine `jsonable_encoder` ile dönüştürülür ve ardından Python’un standart JSON kütüphanesini kullanarak bytes’a serialize...
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 11.9K bytes
    - Click Count (0)
  7. docs/fr/docs/advanced/middleware.md

    - `www_redirect` - Si défini à `True`, les requêtes vers les versions sans www des hôtes autorisés seront redirigées vers leurs équivalents avec www. Valeur par défaut : `True`.
    
    Si une requête entrante n'est pas valide, une réponse `400` sera envoyée.
    
    ## `GZipMiddleware` { #gzipmiddleware }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 4.7K bytes
    - Click Count (0)
  8. docs/tr/docs/tutorial/stream-json-lines.md

    /// tip | İpucu
    
    İkili (binary) veri akışı yapmak istiyorsanız, örneğin video veya ses, gelişmiş kılavuza bakın: [Veri Akışı](../advanced/stream-data.md).
    
    ///
    
    ## FastAPI ile JSON Lines Akışı { #stream-json-lines-with-fastapi }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:51:35 GMT 2026
    - 4.6K bytes
    - Click Count (0)
  9. docs/pt/docs/advanced/wsgi.md

    E o resto será manipulado pelo **FastAPI**.
    
    Se você rodar a aplicação e ir até [http://localhost:8000/v1/](http://localhost:8000/v1/), você verá o retorno do Flask:
    
    ```txt
    Hello, World from Flask!
    ```
    
    E se você for até [http://localhost:8000/v2](http://localhost:8000/v2), você verá o retorno do FastAPI:
    
    ```JSON
    {
        "message": "Hello World"
    }
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 1.5K bytes
    - Click Count (0)
  10. docs/pt/docs/tutorial/body-fields.md

    /// note | Detalhes Técnicos
    
    Na realidade, `Query`, `Path` e outros que você verá em seguida, criam objetos de subclasses de uma classe `Param` comum, que é ela mesma uma subclasse da classe `FieldInfo` do Pydantic.
    
    E `Field` do Pydantic retorna uma instância de `FieldInfo` também.
    
    `Body` também retorna objetos de uma subclasse de `FieldInfo` diretamente. E tem outras que você verá mais tarde que são subclasses da classe `Body`.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Nov 12 16:23:57 GMT 2025
    - 2.6K bytes
    - Click Count (0)
Back to Top