Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,145 for noen (0.03 sec)

  1. docs/en/docs/tutorial/path-params-numeric-validations.md

    {* ../../docs_src/path_params_numeric_validations/tutorial001_an_py310.py hl[10] *}
    
    /// note
    
    A path parameter is always required as it has to be part of the path. Even if you declared it with `None` or set a default value, it would not affect anything, it would still be always required.
    
    ///
    
    ## Order the parameters as you need { #order-the-parameters-as-you-need }
    
    /// tip
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  2. docs/features/interceptors.md

    ```
    INFO: Sending request http://www.publicobject.com/helloworld.txt on Connection{www.publicobject.com:80, proxy=DIRECT hostAddress=54.187.32.157 cipherSuite=none protocol=http/1.1}
    User-Agent: OkHttp Example
    Host: www.publicobject.com
    Connection: Keep-Alive
    Accept-Encoding: gzip
    
    INFO: Received response for http://www.publicobject.com/helloworld.txt in 115.6ms
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  3. docs/em/docs/python-types.md

    πŸ‘―β€β™‚οΈ πŸ’Ό πŸ‘‰ β›“ πŸ‘ˆ `item` πŸ’ͺ `int` βš–οΈ `str`.
    
    #### 🎲 `None`
    
    πŸ‘† πŸ’ͺ πŸ“£ πŸ‘ˆ πŸ’² πŸ’ͺ βœ”οΈ πŸ†Ž, πŸ’– `str`, βœ‹οΈ πŸ‘ˆ ⚫️ πŸ’ͺ `None`.
    
    🐍 3️⃣.6️⃣ & πŸ”› (βœ… 🐍 3️⃣.1️⃣0️⃣) πŸ‘† πŸ’ͺ πŸ“£ ⚫️ 🏭 & βš™οΈ `Optional` βšͺ️➑️ `typing` πŸ•Ή.
    
    ```Python hl_lines="1  4"
    {!../../docs_src/python_types/tutorial009.py!}
    ```
    
    βš™οΈ `Optional[str]` ↩️ `str` πŸ”œ ➑️ πŸ‘¨β€πŸŽ¨ β„Ή πŸ‘† πŸ” ❌ πŸŒβ” πŸ‘† πŸ’ͺ πŸ€” πŸ‘ˆ πŸ’² πŸ•§ `str`, πŸ•β” ⚫️ πŸ’ͺ πŸ€™ `None` πŸ’β€β™‚οΈ.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/sso/SsoManagerTest.java

        }
    
        @Override
        public void tearDown() throws Exception {
            currentSsoType = Constants.NONE;
            super.tearDown();
        }
    
        // Test available() method
        public void test_available_withNoneSsoType() {
            currentSsoType = Constants.NONE;
            assertFalse(ssoManager.available());
        }
    
        public void test_available_withValidSsoType() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13.9K bytes
    - Viewed (0)
  5. docs/nl/docs/environment-variables.md

    Het tweede argument van <a href="https://docs.python.org/3.8/library/os.html#os.getenv" class="external-link" target="_blank">`os.getenv()`</a> is de standaardwaarde die wordt geretourneerd.
    
    Als je dit niet meegeeft, is de standaardwaarde `None`. In dit geval gebruiken we standaard `"World"`.
    
    ///
    
    Dan zou je dat Python-programma kunnen aanroepen:
    
    //// tab | Linux, macOS, Windows Bash
    
    <div class="termy">
    
    ```console
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri Sep 20 11:13:32 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  6. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Address.kt

       */
      @get:JvmName("proxy") val proxy: Proxy?,
      protocols: List<Protocol>,
      connectionSpecs: List<ConnectionSpec>,
      /**
       * Returns this address's proxy selector. Only used if the proxy is null. If none of this
       * selector's proxies are reachable, a direct connection will be attempted.
       */
      @get:JvmName("proxySelector") val proxySelector: ProxySelector,
    ) {
      /**
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/http/ne.css

        font-size: 10pt;
        color: #000000;
        text-decoration: none
    }
    a.plain {
        display: inline;
        float: none;
        width: auto;
        height: auto
    }
    a.sort {
        display: block;
        float: left;
        width: 100px;
        height: 15px;
        font-family: Verdana, sans-serif;
        font-size: 8pt;
        font-weight: bold;
        text-decoration: none;
        color: #000000;
        background-color: #d0d0d0;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/base/CharMatcher.java

        }
    
        @Override
        public CharMatcher negate() {
          return none();
        }
      }
    
      /** Implementation of {@link #none()}. */
      private static final class None extends NamedFastMatcher {
    
        static final CharMatcher INSTANCE = new None();
    
        private None() {
          super("CharMatcher.none()");
        }
    
        @Override
        public boolean matches(char c) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 53.9K bytes
    - Viewed (0)
  9. docs/ko/docs/tutorial/query-params.md

    ## 선택적 λ§€κ°œλ³€μˆ˜
    
    같은 λ°©λ²•μœΌλ‘œ 기본값을 `None`으둜 μ„€μ •ν•˜μ—¬ 선택적 λ§€κ°œλ³€μˆ˜λ₯Ό μ„ μ–Έν•  수 μžˆμŠ΅λ‹ˆλ‹€:
    
    {* ../../docs_src/query_params/tutorial002.py hl[9] *}
    
    이 경우 ν•¨μˆ˜ λ§€κ°œλ³€μˆ˜ `q`λŠ” 선택적이며 κΈ°λ³Έκ°’μœΌλ‘œ `None` 값이 λ©λ‹ˆλ‹€.
    
    /// check | 확인
    
    **FastAPI**λŠ” `item_id`κ°€ 경둜 λ§€κ°œλ³€μˆ˜μ΄κ³  `q`λŠ” 경둜 λ§€κ°œλ³€μˆ˜κ°€ μ•„λ‹Œ 쿼리 λ§€κ°œλ³€μˆ˜λΌλŠ” 것을 μ•Œ μ •λ„λ‘œ μΆ©λΆ„νžˆ λ˜‘λ˜‘ν•©λ‹ˆλ‹€.
    
    ///
    
    /// note | μ°Έκ³ 
    
    FastAPIλŠ” `q`κ°€ `= None`μ΄λ―€λ‘œ μ„ νƒμ μ΄λΌλŠ” 것을 μΈμ§€ν•©λ‹ˆλ‹€.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. okhttp/src/commonJvmAndroid/kotlin/okhttp3/HttpUrl.kt

     *
     * If a path's last segment is the empty string then the path ends with "/". This class always
     * builds non-empty paths: if the path is omitted it defaults to "/". The default path's segment
     * list is a single empty string: `[""]`.
     *
     * ### Query
     *
     * The query is optional: it can be null, empty, or non-empty. For many HTTP URLs the query string
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon May 05 16:01:00 UTC 2025
    - 63.5K bytes
    - Viewed (0)
Back to top