Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 61 - 70 of 540 for verb (0.51 seconds)

  1. docs/tr/docs/tutorial/body-nested-models.md

    Python’da benzersiz öğelerden oluşan kümeler için özel bir veri tipi vardır: `set`.
    
    O zaman `tags`’i string’lerden oluşan bir set olarak tanımlayabiliriz:
    
    {* ../../docs_src/body_nested_models/tutorial003_py310.py hl[12] *}
    
    Böylece duplicate veri içeren bir request alsanız bile, bu veri benzersiz öğelerden oluşan bir set’e dönüştürülür.
    
    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)
  2. docs/tr/docs/tutorial/encoder.md

    Bazı durumlarda, bir veri tipini (örneğin bir Pydantic model) JSON ile uyumlu bir şeye (örneğin `dict`, `list` vb.) dönüştürmeniz gerekebilir.
    
    Örneğin, bunu bir veritabanında saklamanız gerekiyorsa.
    
    Bunun için **FastAPI**, `jsonable_encoder()` fonksiyonunu sağlar.
    
    ## `jsonable_encoder` Kullanımı { #using-the-jsonable-encoder }
    
    Yalnızca JSON ile uyumlu veri kabul eden bir veritabanınız olduğunu düşünelim: `fake_db`.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 1.8K bytes
    - Click Count (0)
  3. docs/en/docs/tutorial/dependencies/index.md

    # Dependencies { #dependencies }
    
    **FastAPI** has a very powerful but intuitive **<dfn title="also known as components, resources, providers, services, injectables">Dependency Injection</dfn>** system.
    
    It is designed to be very simple to use, and to make it very easy for any developer to integrate other components with **FastAPI**.
    
    ## What is "Dependency Injection" { #what-is-dependency-injection }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 9.5K bytes
    - Click Count (0)
  4. src/main/resources/fess_message_it.properties

    constraints.ParametersScriptAssert.message = L'espressione script "{script}" non è vera.
    constraints.Range.message = {item} deve essere compreso tra {min} e {max}.
    constraints.SafeHtml.message = {item} contiene contenuto HTML pericoloso.
    constraints.ScriptAssert.message = L'espressione script "{script}" non è vera.
    constraints.URL.message = {item} non è un URL valido.
    constraints.Required.message = {item} è richiesto.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 13.3K bytes
    - Click Count (0)
  5. docs/tr/docs/features.md

        * Pydantic veri yapıları, sizin tanımladığınız sınıfların örnekleridir; bu nedenle doğrulanmış verilerinizle otomatik tamamlama, linting ve mypy sorunsuz çalışır, sezgileriniz de yol gösterir.
    * **Karmaşık yapıları** doğrulayın:
        * Hiyerarşik Pydantic modelleri, Python `typing`’in `List` ve `Dict`’i vb. kullanımı.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 10.1K bytes
    - Click Count (0)
  6. docs/tr/docs/tutorial/path-params.md

    ## Pydantic { #pydantic }
    
    Tüm veri doğrulamaları, arka planda [Pydantic](https://docs.pydantic.dev/) tarafından gerçekleştirilir; böylece onun tüm avantajlarından faydalanırsınız. Ve emin ellerde olduğunuzu bilirsiniz.
    
    Aynı tip tanımlarını `str`, `float`, `bool` ve daha birçok karmaşık veri tipiyle kullanabilirsiniz.
    
    Bunların birkaçı, eğitimin sonraki bölümlerinde ele alınacaktır.
    
    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)
  7. src/test/java/jcifs/netbios/NameServiceClientImplTest.java

        @Timeout(value = 1, unit = TimeUnit.SECONDS) // Very short timeout
        void testBroadcastTimeout() {
            // Configure for broadcast-only resolution with very short timeout
            when(mockConfig.getResolveOrder()).thenReturn(Arrays.asList(ResolverType.RESOLVER_BCAST));
            when(mockConfig.getNetbiosSoTimeout()).thenReturn(50); // Very short
            when(mockConfig.getNetbiosRetryCount()).thenReturn(1);
    
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 11K bytes
    - Click Count (0)
  8. tests/test_tutorial/test_body_nested_models/test_tutorial005.py

        response = client.put(
            "/items/5",
            json={"description": "A very nice Item"},
        )
        assert response.status_code == 422, response.text
        assert response.json() == {
            "detail": [
                {
                    "loc": ["body", "name"],
                    "input": {"description": "A very nice Item"},
                    "msg": "Field required",
                    "type": "missing",
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Feb 12 13:19:43 GMT 2026
    - 10.3K bytes
    - Click Count (0)
  9. docs/tr/docs/tutorial/server-sent-events.md

    /// tip | İpucu
    
    İkili (binary) veri akışı yapmak istiyorsanız, gelişmiş kılavuza bakın: [Veri Akışı](../advanced/stream-data.md).
    
    ///
    
    ## FastAPI ile SSE Akışı { #stream-sse-with-fastapi }
    
    FastAPI ile SSE akışı yapmak için, *path operation function* içinde `yield` kullanın ve `response_class=EventSourceResponse` olarak ayarlayın.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:51:35 GMT 2026
    - 5.1K bytes
    - Click Count (0)
  10. tests/test_tutorial/test_body_nested_models/test_tutorial001_tutorial002_tutorial003.py

                "name": "Foo",
                "description": "A very nice Item",
                "price": 35.4,
                "tax": 3.2,
                "tags": ["foo", "bar", "foo"],
            },
        )
        assert response.status_code == 200, response.text
        assert response.json() == {
            "item_id": 123,
            "item": {
                "name": "Foo",
                "description": "A very nice Item",
                "price": 35.4,
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Feb 12 13:19:43 GMT 2026
    - 8.5K bytes
    - Click Count (0)
Back to Top