Search Options

Results per page
Sort
Preferred Languages
Advance

Results 561 - 570 of 1,162 for Note (0.02 sec)

  1. docs/em/docs/tutorial/body.md

    πŸ”’ πŸ”’ πŸ”œ πŸ€” ⏩:
    
    * πŸš₯ πŸ”’ πŸ“£ **➑**, ⚫️ πŸ”œ βš™οΈ ➑ πŸ”’.
    * πŸš₯ πŸ”’ **⭐ πŸ†Ž** (πŸ’– `int`, `float`, `str`, `bool`, ♒️) ⚫️ πŸ”œ πŸ”¬ **πŸ”’** πŸ”’.
    * πŸš₯ πŸ”’ πŸ“£ πŸ†Ž **Pydantic 🏷**, ⚫️ πŸ”œ πŸ”¬ πŸ“¨ **πŸ’ͺ**.
    
    /// note
    
    FastAPI πŸ”œ πŸ’­ πŸ‘ˆ πŸ’² `q` 🚫 βœ” ↩️ πŸ”’ πŸ’² `= None`.
    
     `Union` `Union[str, None]` 🚫 βš™οΈ FastAPI, βœ‹οΈ πŸ”œ βœ” πŸ‘† πŸ‘¨β€πŸŽ¨ 🀝 πŸ‘† πŸ‘ πŸ•β€πŸ¦Ί & πŸ” ❌.
    
    ///
    
    ## 🍡 Pydantic
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. docs/en/docs/tutorial/cors.md

    For more info about <abbr title="Cross-Origin Resource Sharing">CORS</abbr>, check the <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS" class="external-link" target="_blank">Mozilla CORS documentation</a>.
    
    /// note | Technical Details
    
    You could also use `from starlette.middleware.cors import CORSMiddleware`.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  3. docs/sts/tls.md

             7d:ab:b8:e9:75:ec:b4:39:fb:c8:cf:53:16:5b:1f:15:b6:7f:
             5a:d1:35:2d:fc:31:3a:10:e7:0c
    ```
    
    > Observe the `Subject: CN = consoleAdmin` field.
    
    Also, note that the certificate has to contain the `Extended Key Usage: TLS Web Client Authentication`. Otherwise, MinIO would not accept the certificate as client certificate.
    
    Now, the STS certificate-based authentication happens in 4 steps:
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 12 18:20:36 UTC 2025
    - 6K bytes
    - Viewed (1)
  4. tensorflow/api_template.__init__.py

    The primary function of this module is to import all of the public TensorFlow
    interfaces into a single place. The interfaces themselves are located in
    sub-modules, as described below.
    
    Note that the file `__init__.py` in the TensorFlow source code tree is actually
    only a placeholder to enable test cases to run. The TensorFlow build replaces
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Wed Oct 02 22:16:02 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. docs/de/docs/how-to/custom-request-and-route.md

    Hier verwenden wir sie, um aus dem ursprΓΌnglichen Request einen `GzipRequest` zu erstellen.
    
    {* ../../docs_src/custom_request_and_route/tutorial001.py hl[18:26] *}
    
    /// note | Technische Details
    
    Ein `Request` hat ein `request.scope`-Attribut, welches einfach ein Python-`dict` ist, welches die mit dem Request verbundenen Metadaten enthΓ€lt.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  6. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Request.kt

        ) = apply {
          headers[name] = value
        }
    
        /**
         * Adds a header with [name] and [value]. Prefer this method for multiply-valued
         * headers like "Cookie".
         *
         * Note that for some headers including `Content-Length` and `Content-Encoding`,
         * OkHttp may replace [value] with a header derived from the request body.
         */
        open fun addHeader(
          name: String,
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 16 09:39:51 UTC 2025
    - 13.1K bytes
    - Viewed (1)
  7. docs/de/docs/advanced/custom-response.md

    /// note | Hinweis
    
    Wenn Sie eine Response-Klasse ohne Medientyp verwenden, erwartet FastAPI, dass Ihre Response keinen Inhalt hat, und dokumentiert daher das Format der Response nicht in deren generierter OpenAPI-Dokumentation.
    
    ///
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/graph/Graphs.java

        // will have no isolated nodes, we can skip adding nodes explicitly and let putEdge() do it.
    
        if (graph.isDirected()) {
          // Note: works for both directed and undirected graphs, but we only use in the directed case.
          for (N node : graph.nodes()) {
            for (N reachableNode : reachableNodes(graph, node)) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Aug 01 00:26:14 UTC 2025
    - 22.7K bytes
    - Viewed (0)
  9. guava/src/com/google/common/graph/Graphs.java

        // will have no isolated nodes, we can skip adding nodes explicitly and let putEdge() do it.
    
        if (graph.isDirected()) {
          // Note: works for both directed and undirected graphs, but we only use in the directed case.
          for (N node : graph.nodes()) {
            for (N reachableNode : reachableNodes(graph, node)) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Aug 01 00:26:14 UTC 2025
    - 23.3K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/security/oauth2-jwt.md

    And another utility to verify if a received password matches the hash stored.
    
    And another one to authenticate and return a user.
    
    {* ../../docs_src/security/tutorial004_an_py310.py hl[8,49,56:57,60:61,70:76] *}
    
    /// note
    
    If you check the new (fake) database `fake_users_db`, you will see how the hashed password looks like now: `"$2b$12$EixZaYVK1fsbw1ZfbX3OXePaWxn96p36WQoeG6Lruj3vjPGga31lW"`.
    
    ///
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 10.5K bytes
    - Viewed (0)
Back to top