Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 21 - 30 of 33 for nesnesi (0.06 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. docs/pt/docs/tutorial/stream-json-lines.md

        Note over App: Keeps producing...
        Note over Client: Keeps consuming...
    ```
    
    Pode até ser um Stream infinito, em que você continua enviando dados.
    
    ## JSON Lines { #json-lines }
    
    Nesses casos, é comum enviar "**JSON Lines**", um formato em que você envia um objeto JSON por linha.
    
    Uma response teria um tipo de conteúdo `application/jsonl` (em vez de `application/json`) e o corpo seria algo como:
    
    ```json
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:13 GMT 2026
    - 4.6K bytes
    - Click Count (0)
  2. docs/tr/docs/tutorial/dependencies/classes-as-dependencies.md

    Buradaki kritik nokta, bir dependency'nin "callable" olması gerektiğidir.
    
    Python'da "**callable**", Python'ın bir function gibi "çağırabildiği" her şeydir.
    
    Yani elinizde `something` adlı bir nesne varsa (function _olmak zorunda değil_) ve onu şöyle "çağırabiliyorsanız" (çalıştırabiliyorsanız):
    
    ```Python
    something()
    ```
    
    veya
    
    ```Python
    something(some_argument, some_keyword_argument="foo")
    ```
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Feb 13 12:41:38 GMT 2026
    - 7.3K bytes
    - Click Count (0)
  3. docs/tr/docs/tutorial/security/oauth2-jwt.md

    Bir önceki bölümde bıraktığımız yerden başlayıp üzerine ekleyerek ilerleyeceğiz.
    
    ## JWT Hakkında { #about-jwt }
    
    JWT, "JSON Web Tokens" anlamına gelir.
    
    Bir JSON nesnesini, boşluk içermeyen uzun ve yoğun bir string'e kodlamak için kullanılan bir standarttır. Şuna benzer:
    
    ```
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 12.1K bytes
    - Click Count (0)
  4. docs/pt/docs/deployment/https.md

    Mas você pode configurar o servidor de aplicação para confiar nos cabeçalhos encaminhados enviados pelo proxy. Se você estiver usando o FastAPI CLI, pode usar a opção de CLI `--forwarded-allow-ips` para dizer de quais IPs ele deve confiar nesses cabeçalhos encaminhados.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 14.6K bytes
    - Click Count (0)
  5. docs/tr/docs/python-types.md

    Ve her attribute'un bir tipi vardır.
    
    Ardından o sınıfın bir instance'ını bazı değerlerle oluşturursunuz; bu değerleri doğrular, uygun tipe dönüştürür (gerekliyse) ve size tüm veriyi içeren bir nesne verir.
    
    Ve bu ortaya çıkan nesne ile tüm editör desteğini alırsınız.
    
    Resmî Pydantic dokümanlarından bir örnek:
    
    {* ../../docs_src/python_types/tutorial011_py310.py *}
    
    /// info | Bilgi
    
    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)
  6. docs/tr/docs/tutorial/first-steps.md

    Ayrıca Pydantic modelleri de döndürebilirsiniz (bununla ilgili daha fazlasını ileride göreceksiniz).
    
    Otomatik olarak JSON'a dönüştürülecek (ORM'ler vb. dahil) başka birçok nesne ve model vardır. En sevdiğiniz nesne/model'leri kullanmayı deneyin; büyük ihtimalle zaten destekleniyordur.
    
    ### Adım 6: Deploy edin { #step-6-deploy-it }
    
    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)
  7. docs/pt/docs/deployment/docker.md

    Nesses casos, você provavelmente desejará criar uma **imagem Docker do zero** como [explicado acima](#dockerfile), instalando suas dependências e executando **um único processo Uvicorn** em vez de usar múltiplos workers do Uvicorn.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 30.9K bytes
    - Click Count (0)
  8. docs/tr/docs/tutorial/dependencies/dependencies-with-yield.md

    ```Python
    with open("./somefile.txt") as f:
        contents = f.read()
        print(contents)
    ```
    
    Temelde `open("./somefile.txt")`, "Context Manager" olarak adlandırılan bir nesne oluşturur.
    
    `with` bloğu bittiğinde, exception olsa bile dosyanın kapatılmasını garanti eder.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 13.4K bytes
    - Click Count (0)
  9. docs/pt/docs/tutorial/handling-errors.md

    Pode ser que você precise comunicar ao cliente que:
    
    * O cliente não tem direitos para realizar aquela operação.
    * O cliente não tem acesso aquele recurso.
    * O item que o cliente está tentando acessar não existe.
    * etc.
    
    Nesses casos, você normalmente retornaria um **HTTP status code** próximo ao status code na faixa do status code **400** (do 400 ao 499).
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 10.1K bytes
    - Click Count (0)
  10. docs/tr/docs/deployment/manually.md

    ```
    
    </div>
    
    /// note | Not
    
    `uvicorn main:app` komutu şunları ifade eder:
    
    * `main`: `main.py` dosyası (Python "module").
    * `app`: `main.py` içinde `app = FastAPI()` satırıyla oluşturulan nesne.
    
    Şununla eşdeğerdir:
    
    ```Python
    from main import app
    ```
    
    ///
    
    Her alternatif ASGI server programı için benzer bir komut bulunur; daha fazlası için ilgili dokümantasyonlarına bakabilirsiniz.
    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)
Back to Top