Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 20 of 84 for mlir (0.05 seconds)

  1. tensorflow/c/eager/immediate_execution_context.h

      virtual absl::Status RegisterCustomDevice(
          const string& name, std::unique_ptr<CustomDevice> device) = 0;
    
      // Return FunctionLibraryDefinition. Transformations need to use it to use it
      // to invoke MLIR compiler passes.
      virtual FunctionLibraryDefinition* FuncLibDef() = 0;
    
      // Resets the global rendezvous used for functions.
      virtual void ResetGlobalRendezvousForFunction() = 0;
    
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Sat Oct 12 05:11:17 GMT 2024
    - 12.3K bytes
    - Click Count (0)
  2. tensorflow/c/BUILD

            # copybara:uncomment_begin(google-only)
            # "//tensorflow/cc/experimental/tf2:__pkg__",
            # "//tensorflow/cc/experimental/tf2:__subpackages__",
            # copybara:uncomment_end
            "//tensorflow/compiler/mlir/tensorflow/c:__subpackages__",
            "//tensorflow/core/transforms:__subpackages__",
        ],
        deps = [
            ":c_api_macros_hdrs",
            "@xla//xla/tsl/c:tsl_status",
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Tue Feb 17 18:49:14 GMT 2026
    - 30.3K bytes
    - Click Count (0)
  3. RELEASE.md

    *   Fixes a null dereference on MLIR on empty function attributes ([CVE-2022-36011](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-36011))
    *   Fixes an assertion failure on MLIR empty edge names ([CVE-2022-36012](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-36012))
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Mon Mar 30 18:31:38 GMT 2026
    - 746.5K bytes
    - Click Count (3)
  4. docs/tr/docs/advanced/middleware.md

    app = SomeASGIApp()
    
    new_app = UnicornMiddleware(app, some_config="rainbow")
    ```
    
    Ancak FastAPI (aslında Starlette) bunu yapmanın daha basit bir yolunu sunar; böylece dahili middleware'ler server hatalarını doğru şekilde ele alır ve özel exception handler'lar düzgün çalışır.
    
    Bunun için `app.add_middleware()` kullanırsınız (CORS örneğindeki gibi).
    
    ```Python
    from fastapi import FastAPI
    from unicorn import UnicornMiddleware
    
    app = FastAPI()
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 4.6K bytes
    - Click Count (0)
  5. docs/de/docs/help-fastapi.md

    Sie können sich mit [mir (Sebastián Ramírez / `tiangolo`)](https://tiangolo.com), dem Autor, vernetzen.
    
    Sie können:
    
    * [Mir auf **GitHub** folgen](https://github.com/tiangolo).
        * Andere Open-Source-Projekte sehen, die ich erstellt habe und die Ihnen helfen könnten.
        * Mir folgen, um zu sehen, wenn ich ein neues Open-Source-Projekt erstelle.
    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)
  6. docs/tr/docs/tutorial/cookie-param-models.md

    {* ../../docs_src/cookie_param_models/tutorial002_an_py310.py hl[10] *}
    
    Bir client **fazladan cookie** göndermeye çalışırsa, bir **error** response alır.
    
    Onayınızı almak için bunca çaba harcayan zavallı cookie banner'ları... <dfn title="Bu da başka bir şaka. Dikkate almayın. Cookie'niz için biraz kahve alın. ☕">API'nin bunu reddetmesi için</dfn>. 🍪
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Feb 13 12:41:38 GMT 2026
    - 3.3K bytes
    - Click Count (0)
  7. docs/tr/docs/tutorial/query-param-models.md

    Bir client, **query parameter**’larda **ek (extra)** veri göndermeye çalışırsa, **error** response alır.
    
    Örneğin client, değeri `plumbus` olan bir `tool` query parameter’ı göndermeye çalışırsa:
    
    ```http
    https://example.com/items/?limit=10&tool=plumbus
    ```
    
    `tool` query parameter’ına izin verilmediğini söyleyen bir **error** response alır:
    
    ```json
    {
        "detail": [
            {
                "type": "extra_forbidden",
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Feb 05 15:43:38 GMT 2026
    - 2.4K bytes
    - Click Count (0)
  8. docs/tr/docs/tutorial/handling-errors.md

    Client `http://example.com/items/foo` (bir `item_id` `"foo"`) isterse, HTTP status code olarak 200 ve şu JSON response’u alır:
    
    ```JSON
    {
      "item": "The Foo Wrestlers"
    }
    ```
    
    Ancak client `http://example.com/items/bar` (mevcut olmayan bir `item_id` `"bar"`) isterse, HTTP status code olarak 404 ("not found" hatası) ve şu JSON response’u alır:
    
    ```JSON
    {
      "detail": "Item not found"
    }
    ```
    
    /// tip | İpucu
    
    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/tutorial/middleware.md

    * Uygulamanıza gelen her **request**'i alır.
    * Ardından o **request** üzerinde bir işlem yapabilir veya gerekli herhangi bir kodu çalıştırabilir.
    * Sonra **request**'i uygulamanın geri kalanı tarafından işlenmesi için iletir (bir *path operation* tarafından).
    * Ardından uygulama tarafından üretilen **response**'u alır (bir *path operation* tarafından).
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 4.3K bytes
    - Click Count (0)
  10. docs/tr/docs/tutorial/header-param-models.md

    {* ../../docs_src/header_param_models/tutorial002_an_py310.py hl[10] *}
    
    Bir client bazı **ek header'lar** göndermeye çalışırsa, **hata** response'u alır.
    
    Örneğin client, değeri `plumbus` olan bir `tool` header'ı göndermeye çalışırsa, `tool` header parametresine izin verilmediğini söyleyen bir **hata** response'u alır:
    
    ```json
    {
        "detail": [
            {
                "type": "extra_forbidden",
                "loc": ["header", "tool"],
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Feb 05 15:43:38 GMT 2026
    - 2.9K bytes
    - Click Count (0)
Back to Top