Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 81 - 90 of 122 for edilen (0.05 seconds)

  1. docs/tr/docs/advanced/stream-data.md

    Örneğin, `await file.read()` ya da `async for chunk in file` gibi şeyler yoktur.
    
    Ve birçok durumda, diskte ya da ağda okundukları için, okumak engelleyici (event loop'u bloke edebilen) bir işlem olabilir.
    
    /// info | Bilgi
    
    Yukarıdaki örnek aslında bir istisna; çünkü `io.BytesIO` nesnesi zaten bellekte, dolayısıyla onu okumak hiçbir şeyi bloke etmez.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:51:35 GMT 2026
    - 5.8K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/failureurl/EditForm.java

         * Indicates whether this is a create, read, update, or delete operation.
         */
        @ValidateTypeFailure
        public Integer crudMode;
    
        /**
         * The unique identifier of the failure URL record being edited.
         * This is a required field for identifying which failure record to update.
         */
        @Required
        @Size(max = 1000)
        public String id;
    
        /**
         * The URL that failed during crawling.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 4.2K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/crawlinginfo/EditForm.java

         * Indicates whether this is a create, read, update, or delete operation.
         */
        @ValidateTypeFailure
        public int crudMode;
    
        /**
         * The unique identifier of the crawling information entry being edited.
         * This is a required field for identifying which crawling info to update.
         */
        @Required
        @Size(max = 1000)
        public String id;
    
        /**
         * The session identifier of the crawling session.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 2.7K bytes
    - Click Count (0)
  4. docs/tr/docs/how-to/custom-request-and-route.md

    Bundan sonra tüm işleme mantığı aynıdır.
    
    Ancak `GzipRequest.body` içindeki değişikliklerimiz sayesinde, request body gerektiğinde **FastAPI** tarafından yüklendiğinde otomatik olarak decompress edilir.
    
    ## Bir exception handler içinde request body'ye erişme { #accessing-the-request-body-in-an-exception-handler }
    
    /// tip | İpucu
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 4.9K bytes
    - Click Count (0)
  5. docs/de/docs/how-to/separate-openapi-schemas.md

    ### Modell für die Ausgabe { #model-for-output }
    
    Wenn Sie jedoch dasselbe Modell als Ausgabe verwenden, wie hier:
    
    {* ../../docs_src/separate_openapi_schemas/tutorial001_py310.py hl[19] *}
    
    ... dann, weil `description` einen Defaultwert hat, wird es, wenn Sie für dieses Feld **nichts zurückgeben**, immer noch diesen **Defaultwert** haben.
    
    ### Modell für Ausgabe-Responsedaten { #model-for-output-response-data }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Dec 24 10:28:19 GMT 2025
    - 5.2K bytes
    - Click Count (0)
  6. docs/de/docs/help-fastapi.md

    ## Einen Pull Request erstellen { #create-a-pull-request }
    
    Sie können [zum Quellcode mit Pull Requests beitragen](contributing.md), zum Beispiel:
    
    * Um einen Tippfehler zu beheben, den Sie in der Dokumentation gefunden haben.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 14.8K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/joblog/EditForm.java

         * Indicates whether this is a create, read, update, or delete operation.
         */
        @ValidateTypeFailure
        public int crudMode;
    
        /**
         * The unique identifier of the job log entry being edited.
         * This is a required field for identifying which job log to update.
         */
        @Required
        @ValidateTypeFailure
        public String id;
    
        /**
         * The name of the job that was executed.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 3.3K bytes
    - Click Count (0)
  8. docs/tr/docs/advanced/strict-content-type.md

    {* ../../docs_src/strict_content_type/tutorial001_py310.py hl[4] *}
    
    Bu ayarla, Content-Type header’ı olmayan request’lerin body’si JSON olarak parse edilir. Bu, FastAPI’nin eski sürümlerindeki davranışla aynıdır.
    
    /// info | Bilgi
    
    Bu davranış ve yapılandırma FastAPI 0.132.0’da eklendi.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:51:35 GMT 2026
    - 3.6K bytes
    - Click Count (0)
  9. docs/de/docs/advanced/openapi-callbacks.md

    * Der *Pfad* kann einen [OpenAPI-3-Ausdruck](https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#key-expression) enthalten (mehr dazu weiter unten), wo er Variablen mit Parametern und Teilen des ursprünglichen Requests verwenden kann, der an *Ihre API* gesendet wurde.
    
    ### Der Callback-Pfadausdruck { #the-callback-path-expression }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 8.9K bytes
    - Click Count (0)
  10. docs/tr/docs/tutorial/metadata.md

    Şu şekilde ayarlayabilirsiniz:
    
    {* ../../docs_src/metadata/tutorial001_py310.py hl[3:16, 19:32] *}
    
    /// tip | İpucu
    
    `description` alanına Markdown yazabilirsiniz; çıktı tarafında render edilir.
    
    ///
    
    Bu yapılandırmayla otomatik API dokümanları şöyle görünür:
    
    <img src="/img/tutorial/metadata/image01.png">
    
    ## Lisans Tanımlayıcısı { #license-identifier }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 6.2K bytes
    - Click Count (0)
Back to Top