Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 52 for Murray (0.14 sec)

  1. docs/en/docs/async.md

    ---
    
    Again, these are very technical details that would probably be useful if you came searching for them.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 23K bytes
    - Viewed (0)
  2. docs/uk/docs/index.md

        return {"item_id": item_id, "q": q}
    ```
    
    **Примітка**:
    
    Стикнувшись з проблемами, не зайвим буде ознайомитися з розділом _"In a hurry?"_ про <a href="https://fastapi.tiangolo.com/async/#in-a-hurry" target="_blank">`async` та `await` у документації</a>.
    
    </details>
    
    ### Запустіть
    
    Запустіть server з:
    
    <div class="termy">
    
    ```console
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Mon Apr 29 05:18:04 GMT 2024
    - 24.2K bytes
    - Viewed (0)
  3. docs/es/docs/features.md

    Pero, todo **simplemente funciona** por defecto.
    
    ### Validación
    
    * Validación para la mayoría (¿o todos?) los **tipos de datos** de Python incluyendo:
        * Objetos JSON (`dict`).
        * JSON array (`list`) definiendo tipos de ítem.
        * Campos de texto (`str`) definiendo longitudes mínimas y máximas.
        * Números (`int`, `float`) con valores mínimos y máximos, etc.
    
    * Validación para tipos más exóticos como:
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 10.9K bytes
    - Viewed (0)
  4. README.md

    @app.get("/items/{item_id}")
    async def read_item(item_id: int, q: Union[str, None] = None):
        return {"item_id": item_id, "q": q}
    ```
    
    **Note**:
    
    If you don't know, check the _"In a hurry?"_ section about <a href="https://fastapi.tiangolo.com/async/#in-a-hurry" target="_blank">`async` and `await` in the docs</a>.
    
    </details>
    
    ### Run it
    
    Run the server with:
    
    <div class="termy">
    
    ```console
    $ fastapi dev main.py
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu May 02 22:37:31 GMT 2024
    - 22.6K bytes
    - Viewed (0)
  5. tensorflow/c/BUILD

            "//tensorflow/cc:grad_ops",
            "//tensorflow/cc/saved_model:signature_constants",
            "//tensorflow/cc/saved_model:tag_constants",
            "//tensorflow/compiler/jit",
            "//tensorflow/core:array_ops_op_lib",
            "//tensorflow/core:bitwise_ops_op_lib",
            "//tensorflow/core:control_flow_ops_op_lib",
            "//tensorflow/core:core_cpu_internal",
            "//tensorflow/core:direct_session",
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Mar 27 18:00:18 GMT 2024
    - 30.3K bytes
    - Viewed (0)
  6. CONTRIBUTING.md

        ```bash
        bazel run //tensorflow/tools/docs:tf_doctest
        ```
    
        or
    
        ```bash
        bazel run //tensorflow/tools/docs:tf_doctest -- --module=ops.array_ops
        ```
    
        The `--module` is relative to `tensorflow.python`.
    
    #### Debug builds
    
    When [building Tensorflow](https://www.tensorflow.org/install/source), passing
    Plain Text
    - Registered: Tue May 07 12:40:20 GMT 2024
    - Last Modified: Thu Mar 21 11:45:51 GMT 2024
    - 15.6K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/extensions/v1beta1/generated.proto

    }
    
    // DEPRECATED 1.9 - This group version of NetworkPolicySpec is deprecated by networking/v1/NetworkPolicySpec.
    message NetworkPolicySpec {
      // Selects the pods to which this NetworkPolicy object applies.  The array of ingress rules
      // is applied to any pods selected by this field. Multiple network policies can select the
      // same set of pods.  In this case, the ingress rules for each are combined additively.
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 45.6K bytes
    - Viewed (0)
  8. docs/tr/docs/index.md

    async def read_item(item_id: int, q: Union[str, None] = None):
        return {"item_id": item_id, "q": q}
    ```
    
    **Not**:
    
    Eğer bu konu hakkında bilginiz yoksa <a href="https://fastapi.tiangolo.com/tr/async/#in-a-hurry" target="_blank">`async` ve `await`</a> dokümantasyonundaki _"Aceleniz mi var?"_ kısmını kontrol edebilirsiniz.
    
    </details>
    
    ### Kodu Çalıştıralım
    
    Sunucuyu aşağıdaki komutla çalıştıralım:
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Mon Apr 29 05:18:04 GMT 2024
    - 21.9K bytes
    - Viewed (0)
  9. docs/em/docs/index.md

    async def read_item(item_id: int, q: Union[str, None] = None):
        return {"item_id": item_id, "q": q}
    ```
    
    **🗒**:
    
    🚥 👆 🚫 💭, ✅ _"🏃 ❓" _ 📄 🔃 <a href="https://fastapi.tiangolo.com/async/#in-a-hurry" target="_blank">`async` &amp; `await` 🩺</a>.
    
    </details>
    
    ### 🏃 ⚫️
    
    🏃 💽 ⏮️:
    
    <div class="termy">
    
    ```console
    $ uvicorn main:app --reload
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 23:58:47 GMT 2024
    - 17.1K bytes
    - Viewed (0)
  10. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/base/Kt1DescUtils.kt

        if (analysisContext.builtIns.areSameArrayTypeIgnoringProjections(containingArrayType, constantType)) {
            // If an element in the array has the same type as the containing array, it's a spread component that needs
            // to be expanded here. (It should have the array element type instead.)
            (constantValue as ArrayValue).value.expandArrayAnnotationValue(containingArrayType, analysisContext)
        } else {
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 07:15:56 GMT 2024
    - 33.2K bytes
    - Viewed (0)
Back to top