Search Options

Results per page
Sort
Preferred Languages
Advance

Results 591 - 600 of 1,188 for notre (0.02 sec)

  1. guava-testlib/src/com/google/common/collect/testing/IteratorTester.java

     *       protected Iterator<String> newTargetIterator() {
     *         return actualElements.iterator();
     *       }
     *     };
     * iteratorTester.test();
     * iteratorTester.testForEachRemaining();
     * }
     *
     * <p><b>Note</b>: It is necessary to use {@code IteratorTester.KnownOrder} as shown above, rather
     * than {@code KnownOrder} directly, because otherwise the code cannot be compiled.
     *
     * @author Kevin Bourrillion
     * @author Chris Povirk
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/HashBasedTable.java

     * quickly, since the row key is provided. However, {@code column(columnKey).size()} takes longer,
     * since an iteration across all row keys occurs.
     *
     * <p>Note that this implementation is not synchronized. If multiple threads access this table
     * concurrently and one of the threads modifies the table, it must be synchronized externally.
     *
     * <p>See the Guava User Guide article on <a href=
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jul 17 15:26:41 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/util/XPathAPI.java

     * Node singleNode = xPathAPI.selectSingleNode(contextNode, "//example[1]");
     * XPathEvaluationResult<?> result = xPathAPI.eval(contextNode, "count(//example)");
     * }
     * </pre>
     *
     * <p>Note: This class is not thread-safe. Each thread should create its own instance of XPathAPI.</p>
     *
     * @see javax.xml.xpath.XPath
     * @see javax.xml.xpath.XPathFactory
     * @see javax.xml.xpath.XPathExpressionException
     */
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  4. 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)
  5. docs/em/docs/tutorial/body.md

    πŸ”’ πŸ”’ πŸ”œ πŸ€” ⏩:
    
    * πŸš₯ πŸ”’ πŸ“£ **➑**, ⚫️ πŸ”œ βš™οΈ ➑ πŸ”’.
    * πŸš₯ πŸ”’ **⭐ πŸ†Ž** (πŸ’– `int`, `float`, `str`, `bool`, ♒️) ⚫️ πŸ”œ πŸ”¬ **πŸ”’** πŸ”’.
    * πŸš₯ πŸ”’ πŸ“£ πŸ†Ž **Pydantic 🏷**, ⚫️ πŸ”œ πŸ”¬ πŸ“¨ **πŸ’ͺ**.
    
    /// note
    
    FastAPI πŸ”œ πŸ’­ πŸ‘ˆ πŸ’² `q` 🚫 βœ” ↩️ πŸ”’ πŸ’² `= None`.
    
     `Union` `Union[str, None]` 🚫 βš™οΈ FastAPI, βœ‹οΈ πŸ”œ βœ” πŸ‘† πŸ‘¨β€πŸŽ¨ 🀝 πŸ‘† πŸ‘ πŸ•β€πŸ¦Ί &amp; πŸ” ❌.
    
    ///
    
    ## 🍡 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)
  6. 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)
  7. 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)
  8. docs/de/docs/tutorial/request-forms.md

    HTML-Formulare (`<form></form>`) senden die Daten in einer β€žspeziellenβ€œ Kodierung zum Server, welche sich von JSON unterscheidet.
    
    **FastAPI** stellt sicher, dass diese Daten korrekt ausgelesen werden, statt JSON zu erwarten.
    
    /// note | Technische Details
    
    Daten aus Formularen werden normalerweise mit dem <abbr title='Media type – Medientyp, Typ des Mediums'>β€žmedia typeβ€œ</abbr> `application/x-www-form-urlencoded` kodiert.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. docs/ko/docs/tutorial/query-param-models.md

    # 쿼리 λ§€κ°œλ³€μˆ˜ λͺ¨λΈ
    
    μ—°κ΄€λœ 쿼리 **λ§€κ°œλ³€μˆ˜** 그룹이 μžˆλ‹€λ©΄ **Pydantic λͺ¨λΈ** 을 μ‚¬μš©ν•΄ μ„ μ–Έν•  수 μžˆμŠ΅λ‹ˆλ‹€.
    
    μ΄λ ‡κ²Œ ν•˜λ©΄ **μ—¬λŸ¬ κ³³**μ—μ„œ **λͺ¨λΈμ„ μž¬μ‚¬μš©**ν•  수 μžˆμ„ 뿐만 μ•„λ‹ˆλΌ, λ§€κ°œλ³€μˆ˜μ— λŒ€ν•œ 검증 및 메타데이터도 ν•œ λ²ˆμ— μ„ μ–Έν•  수 μžˆμŠ΅λ‹ˆλ‹€. 😎
    
    /// note | μ°Έκ³ 
    
    이 κΈ°λŠ₯은 FastAPI 버전 `0.115.0`λΆ€ν„° μ œκ³΅λ©λ‹ˆλ‹€. πŸ€“
    
    ///
    
    ## 쿼리 λ§€κ°œλ³€μˆ˜μ™€ Pydantic λͺ¨λΈ
    
    ν•„μš”ν•œ **쿼리 λ§€κ°œλ³€μˆ˜**λ₯Ό **Pydantic λͺ¨λΈ** μ•ˆμ— μ„ μ–Έν•œ λ‹€μŒ, λͺ¨λΈμ„ `Query`둜 μ„ μ–Έν•©λ‹ˆλ‹€.
    
    {* ../../docs_src/query_param_models/tutorial001_an_py310.py hl[9:13,17] *}
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Wed Nov 20 19:24:08 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/header-param-models.md

    This would allow you to **re-use the model** in **multiple places** and also to declare validations and metadata for all the parameters at once. 😎
    
    /// note
    
    This is supported since FastAPI version `0.115.0`. πŸ€“
    
    ///
    
    ## Header Parameters with a Pydantic Model { #header-parameters-with-a-pydantic-model }
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 2.6K bytes
    - Viewed (0)
Back to top