Search Options

Results per page
Sort
Preferred Languages
Advance

Results 481 - 490 of 859 for _some (0.27 sec)

  1. okhttp-tls/src/main/kotlin/okhttp3/tls/HandshakeCertificates.kt

         * it also has a regular-looking handshake.
         *
         * **This feature is not supported on Android API levels less than 24.** Prior releases lacked
         * a mechanism to trust some hosts and not others.
         *
         * @param hostname the exact hostname from the URL for insecure connections.
         */
        fun addInsecureHost(hostname: String) =
          apply {
            insecureHosts += hostname
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat May 10 11:15:14 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/primitives/UnsignedInteger.java

    import java.math.BigInteger;
    import org.jspecify.annotations.Nullable;
    
    /**
     * A wrapper class for unsigned {@code int} values, supporting arithmetic operations.
     *
     * <p>In some cases, when speed is more important than code readability, it may be faster simply to
     * treat primitive {@code int} values as unsigned, using the methods from {@link UnsignedInts}.
     *
     * <p>See the Guava User Guide article on <a
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 8.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb2/rdma/RdmaErrorHandler.java

        private boolean isRecoverableError(Exception error) {
            // Timeout errors are often recoverable
            if (error instanceof SocketTimeoutException) {
                return true;
            }
    
            // Some socket errors might be recoverable
            if (error instanceof SocketException) {
                String message = error.getMessage();
                if (message != null) {
                    message = message.toLowerCase();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  4. src/test/java/jcifs/internal/smb1/com/SmbComNegotiateResponseTest.java

        @Test
        public void testIsValidWithUnicode() {
            SmbNegotiationRequest request = mock(SmbNegotiationRequest.class);
            response.getServerData().scapabilities = SmbConstants.CAP_UNICODE;
            // Set some required server data for valid response
            response.getServerData().smaxMpxCount = 1;
            response.getServerData().maxBufferSize = 16384;
    
            assertTrue(response.isValid(mockContext, request));
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  5. okhttp/src/jvmTest/kotlin/okhttp3/internal/http/CancelTest.kt

        this.cancelMode = mode.first
        this.connectionType = mode.second
    
        if (connectionType == H2) {
          platform.assumeHttp2Support()
        }
    
        // Sockets on some platforms can have large buffers that mean writes do not block when
        // required. These socket factories explicitly set the buffer sizes on sockets created.
        server = MockWebServer()
        server.serverSocketFactory =
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbFileHandleImpl.java

                    // Force close the handle
                    this.open = false;
                    this.usageCount.set(0);
    
                    // Clear mutable references to free memory
                    // Note: Some fields may be final and cannot be nulled
    
                    // Clear any other mutable state would go here
                }
            } catch (Exception e) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 9.4K bytes
    - Viewed (1)
  7. docs/em/docs/tutorial/dependencies/index.md

    {* ../../docs_src/dependencies/tutorial001.py hl[8:11] *}
    
    πŸ‘ˆ ⚫️.
    
    **2️⃣ ⏸**.
    
    &amp; ⚫️ βœ”οΈ 🎏 πŸ’  &amp; πŸ“Š πŸ‘ˆ 🌐 πŸ‘† *➑ πŸ› οΈ πŸ”’* βœ”οΈ.
    
    πŸ‘† πŸ’ͺ πŸ’­ ⚫️ *➑ πŸ› οΈ πŸ”’* 🍡 "πŸ‘¨β€πŸŽ¨" (🍡 `@app.get("/some-path")`).
    
    &amp; ⚫️ πŸ’ͺ πŸ“¨ πŸ•³ πŸ‘† πŸ’š.
    
    πŸ‘‰ πŸ’Ό, πŸ‘‰ πŸ”— βŒ›:
    
    * πŸ“¦ πŸ”’ πŸ”’ `q` πŸ‘ˆ `str`.
    * πŸ“¦ πŸ”’ πŸ”’ `skip` πŸ‘ˆ `int`, &amp; πŸ”’ `0`.
    * πŸ“¦ πŸ”’ πŸ”’ `limit` πŸ‘ˆ `int`, &amp; πŸ”’ `100`.
    
    &amp; ‴️ ⚫️ πŸ“¨ `dict` βš— πŸ“š πŸ’².
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/escape/CharEscaper.java

       * @throws NullPointerException if {@code string} is null
       */
      protected final String escapeSlow(String s, int index) {
        int slen = s.length();
    
        // Get a destination buffer and setup some loop variables.
        char[] dest = Platform.charBufferFromThreadLocal();
        int destSize = dest.length;
        int destIndex = 0;
        int lastEscape = 0;
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Feb 13 15:45:16 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  9. docs/ko/docs/tutorial/background-tasks.md

    {* ../../docs_src/background_tasks/tutorial001.py hl[14] *}
    
    `.add_task()` ν•¨μˆ˜λŠ” λ‹€μŒκ³Ό 같은 인자λ₯Ό λ°›μŠ΅λ‹ˆλ‹€ :
    
    - λ°±κ·ΈλΌμš΄λ“œμ—μ„œ μ‹€ν–‰λ˜λŠ” μž‘μ—… ν•¨μˆ˜ (`write_notification`).
    - μž‘μ—… ν•¨μˆ˜μ— μˆœμ„œλŒ€λ‘œ μ „λ‹¬λ˜μ–΄μ•Ό ν•˜λŠ” 일련의 인자 (`email`).
    - μž‘μ—… ν•¨μˆ˜μ— μ „λ‹¬λ˜μ–΄μ•Όν•˜λŠ” λͺ¨λ“  ν‚€μ›Œλ“œ 인자 (`message="some notification"`).
    
    ## μ˜μ‘΄μ„± μ£Όμž…
    
    `BackgroundTasks`λ₯Ό μ˜μ‘΄μ„± μ£Όμž… μ‹œμŠ€ν…œκ³Ό ν•¨κ»˜ μ‚¬μš©ν•˜λ©΄ _경둜 μž‘λ™ ν•¨μˆ˜_, 쒅속성, ν•˜μœ„ 쒅속성 λ“± μ—¬λŸ¬ μˆ˜μ€€μ—μ„œ BackgroundTasks μœ ν˜•μ˜ λ§€κ°œλ³€μˆ˜λ₯Ό μ„ μ–Έν•  수 μžˆμŠ΅λ‹ˆλ‹€.
    
    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. docs/en/docs/tutorial/dependencies/classes-as-dependencies.md

    <img src="/img/tutorial/dependencies/image02.png">
    
    ## Shortcut { #shortcut }
    
    But you see that we are having some code repetition here, writing `CommonQueryParams` twice:
    
    //// tab | Python 3.8+
    
    ```Python
    commons: Annotated[CommonQueryParams, Depends(CommonQueryParams)]
    ```
    
    ////
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 6.7K bytes
    - Viewed (0)
Back to top