Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 41 - 50 of 69 for anpa (0.07 seconds)

  1. docs/tr/docs/tutorial/first-steps.md

    {* ../../docs_src/first_steps/tutorial001_py310.py hl[3] *}
    
    Burada `app` değişkeni `FastAPI` class'ının bir "instance"ı olacaktır.
    
    Bu, tüm API'nızı oluşturmak için ana etkileşim noktası olacaktır.
    
    ### Adım 3: bir *path operation* oluşturun { #step-3-create-a-path-operation }
    
    #### Path { #path }
    
    Buradaki "Path", URL'in ilk `/` işaretinden başlayarak son kısmını ifade eder.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 14.4K bytes
    - Click Count (0)
  2. docs/tr/docs/tutorial/request-files.md

    {* ../../docs_src/request_files/tutorial001_03_an_py310.py hl[9,15] *}
    
    ## Birden Fazla Dosya Upload { #multiple-file-uploads }
    
    Aynı anda birden fazla dosya upload etmek mümkündür.
    
    Bu dosyalar, "form data" ile gönderilen aynı "form field" ile ilişkilendirilir.
    
    Bunu kullanmak için `bytes` veya `UploadFile` listesini tanımlayın:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 7.5K bytes
    - Click Count (0)
  3. docs/tr/docs/advanced/path-operation-advanced-configuration.md

    ## Ek Responses { #additional-responses }
    
    Muhtemelen bir *path operation* için `response_model` ve `status_code` tanımlamayı görmüşsünüzdür.
    
    Bu, bir *path operation*’ın ana response’u ile ilgili metadata’yı tanımlar.
    
    Ek response’ları; modelleri, status code’ları vb. ile birlikte ayrıca da tanımlayabilirsiniz.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 7.5K bytes
    - Click Count (0)
  4. docs/tr/docs/advanced/advanced-dependencies.md

    Bu tasarımın ana sebeplerinden biri, background task'lerin içinde dependency'lerin "yield ettiği" aynı objeleri kullanmaya izin vermekti; çünkü çıkış kodu, background task'ler bittikten sonra çalıştırılıyordu.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 10K bytes
    - Click Count (0)
  5. docs/tr/docs/deployment/manually.md

    Uzak bir sunucu makinesinde **FastAPI** uygulamasını (veya herhangi bir ASGI uygulamasını) çalıştırmak için gereken ana şey, **Uvicorn** gibi bir ASGI server programıdır. `fastapi` komutuyla varsayılan olarak gelen de budur.
    
    Buna alternatif birkaç seçenek daha vardır, örneğin:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 7.1K bytes
    - Click Count (0)
  6. docs/tr/docs/advanced/events.md

    ///
    
    ## Alt Uygulamalar { #sub-applications }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 8.3K bytes
    - Click Count (0)
  7. src/main/java/jcifs/smb/NtlmPasswordAuthentication.java

                    return Arrays.equals(this.ansiHash, ntlm.ansiHash) && Arrays.equals(this.unicodeHash, ntlm.unicodeHash);
                    /*
                     * This still isn't quite right. If one npa object does not have external
                     * hashes and the other does then they will not be considered equal even
                     * though they may be.
                     */
                }
                return true;
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 9.3K bytes
    - Click Count (0)
  8. docs/tr/docs/tutorial/path-params.md

    * Veri doğrulama
    * API annotation ve otomatik dokümantasyon
    
    Ve bunları sadece bir kez tanımlamanız yeterlidir.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 9.7K bytes
    - Click Count (0)
  9. docs/tr/docs/index.md

    ## Görüşler { #opinions }
    
    "_[...] Bugünlerde **FastAPI**'ı çok fazla kullanıyorum. [...] Aslında bunu ekibimin **Microsoft'taki ML servislerinin** tamamında kullanmayı planlıyorum. Bunlardan bazıları ana **Windows** ürününe ve bazı **Office** ürünlerine entegre ediliyor._"
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 23.2K bytes
    - Click Count (0)
  10. docs/tr/docs/advanced/custom-response.md

    **FastAPI**, geliştirici için kolaylık olsun diye `starlette.responses` içindekileri `fastapi.responses` olarak da sağlar. Ancak mevcut response'ların çoğu doğrudan Starlette’ten gelir.
    
    ///
    
    ### `Response` { #response }
    
    Ana `Response` class’ıdır; diğer tüm response'lar bundan türetilir.
    
    Bunu doğrudan döndürebilirsiniz.
    
    Şu parametreleri kabul eder:
    
    * `content` - Bir `str` veya `bytes`.
    * `status_code` - Bir `int` HTTP status code.
    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)
Back to Top