Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 91 - 100 of 145 for Su (0.01 seconds)

  1. docs/tr/docs/async.md

    ///
    
    ---
    
    Eğer bir veritabanı, bir API, dosya sistemi vb. ile iletişim kuran ve `await` desteği olmayan bir üçüncü taraf kütüphane kullanıyorsanız (bu şu anda çoğu veritabanı kütüphanesi için geçerlidir), o zaman *path operasyon fonksiyonlarınızı* normal olarak `def` ile tanımlayın:
    
    ```Python hl_lines="2"
    @app.get('/')
    def results():
        results = some_library()
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 23.7K bytes
    - Click Count (0)
  2. docs/tr/docs/tutorial/body-updates.md

    `PUT`, mevcut verinin yerine geçmesi gereken veriyi almak için kullanılır.
    
    ### Değiştirerek güncelleme uyarısı { #warning-about-replacing }
    
    Bu, `bar` öğesini `PUT` ile, body içinde şu verilerle güncellemek isterseniz:
    
    ```Python
    {
        "name": "Barz",
        "price": 3,
        "description": None,
    }
    ```
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 4.5K bytes
    - Click Count (0)
  3. docs/es/docs/advanced/strict-content-type.md

    {* ../../docs_src/strict_content_type/tutorial001_py310.py hl[4] *}
    
    Con esta configuración, las requests sin un header `Content-Type` tendrán su body parseado como JSON, que es el mismo comportamiento de versiones anteriores de FastAPI.
    
    /// info | Información
    
    Este comportamiento y configuración se añadieron en FastAPI 0.132.0.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:12:26 GMT 2026
    - 3.4K bytes
    - Click Count (0)
  4. docs/tr/docs/tutorial/security/get-current-user.md

    ## Kod boyutu { #code-size }
    
    Bu örnek biraz uzun görünebilir. Güvenlik, data model'ler, utility fonksiyonlar ve *path operation*'ları aynı dosyada bir araya getirdiğimizi unutmayın.
    
    Ama kritik nokta şu:
    
    Güvenlik ve dependency injection tarafını bir kez yazarsınız.
    
    İstediğiniz kadar karmaşık hâle getirebilirsiniz. Yine de hepsi tek bir yerde ve sadece bir kez yazılmış olur. Üstelik tüm esneklikle.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Feb 13 12:41:38 GMT 2026
    - 4.4K bytes
    - Click Count (0)
  5. docs/tr/docs/alternatives.md

    **FastAPI**’yı inşa edene kadar, Flask + Flask-apispec + Marshmallow + Webargs kombinasyonu benim favori arka uç stack’imdi.
    
    Bunu kullanmak, birkaç Flask full‑stack üreticisinin ortaya çıkmasına yol açtı. Şu ana kadar benim (ve birkaç harici ekibin) kullandığı ana stack’ler:
    
    * [https://github.com/tiangolo/full-stack](https://github.com/tiangolo/full-stack)
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 24K bytes
    - Click Count (0)
  6. docs/tr/docs/how-to/separate-openapi-schemas.md

    Bunun muhtemelen en yaygın nedeni, halihazırda autogenerated client kodlarınız/SDK'larınızın olması ve henüz bunların hepsini güncellemek istememenizdir. Büyük ihtimalle bir noktada güncellemek isteyeceksiniz, ama belki şu an değil.
    
    Bu durumda **FastAPI**'de bu özelliği `separate_input_output_schemas=False` parametresiyle kapatabilirsiniz.
    
    /// info | Bilgi
    
    `separate_input_output_schemas` desteği FastAPI `0.102.0` sürümünde eklendi. 🤓
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Feb 05 15:43:38 GMT 2026
    - 4.8K bytes
    - Click Count (0)
  7. docs/tr/docs/tutorial/background-tasks.md

    *Path operation function*’ınızın içinde, görev fonksiyonunuzu `.add_task()` metodu ile *background tasks* objesine ekleyin:
    
    {* ../../docs_src/background_tasks/tutorial001_py310.py hl[14] *}
    
    `.add_task()` şu argümanları alır:
    
    * Arka planda çalıştırılacak bir görev fonksiyonu (`write_notification`).
    * Görev fonksiyonuna sırayla geçirilecek argümanlar (`email`).
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 5K bytes
    - Click Count (0)
  8. docs/es/docs/tutorial/query-params-str-validations.md

    Tener `str | None` permitirá que tu editor te dé un mejor soporte y detecte errores.
    
    ///
    
    ## Validaciones adicionales { #additional-validation }
    
    Vamos a hacer que, aunque `q` sea opcional, siempre que se proporcione, su longitud no exceda los 50 caracteres.
    
    ### Importar `Query` y `Annotated` { #import-query-and-annotated }
    
    Para lograr eso, primero importa:
    
    * `Query` desde `fastapi`
    * `Annotated` desde `typing`
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 17.4K bytes
    - Click Count (0)
  9. docs/es/docs/alternatives.md

    ## Introducción { #intro }
    
    **FastAPI** no existiría si no fuera por el trabajo previo de otros.
    
    Se han creado muchas herramientas antes que han ayudado a inspirar su creación.
    
    He estado evitando la creación de un nuevo framework durante varios años. Primero intenté resolver todas las funcionalidades cubiertas por **FastAPI** usando muchos frameworks diferentes, plug-ins y herramientas.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 24.5K bytes
    - Click Count (0)
  10. cmd/iam-store.go

    	// Found newly requested service account, to be an existing account -
    	// reject such operation (updates to the service account are handled in
    	// a different API).
    	if su, found := cache.iamUsersMap[accessKey]; found {
    		scred := su.Credentials
    		if scred.ParentUser != parentUser {
    			return updatedAt, fmt.Errorf("%w: the service account access key is taken by another user", errIAMServiceAccountNotAllowed)
    		}
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 87.1K bytes
    - Click Count (0)
Back to Top