Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 245 for Previous (0.04 sec)

  1. okhttp/src/jvmTest/kotlin/okhttp3/DuplexTest.kt

        val call = client.newCall(request)
        assertFailsWith<IOException> {
          call.execute()
        }.also { expected ->
          assertThat(expected.message).isEqualTo("timeout")
        }
      }
    
      /** Same as the previous test, but the server stalls sending the response body.  */
      @Test
      fun bodyReadTimeoutDoesNotStartUntilLastRequestBodyByteFire() {
        enableProtocol(Protocol.HTTP_2)
        server.enqueue(
          MockResponse
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Jun 18 12:28:21 UTC 2025
    - 24.8K bytes
    - Viewed (0)
  2. src/test/java/jcifs/smb/SmbResourceLocatorImplTest.java

            assertNotEquals(l1, l5);
    
            // Force address resolution failure -> fallback to server name compare
            // Use a fresh context to avoid affecting previous tests
            CIFSContext ctx2 = mock(CIFSContext.class);
            Configuration config2 = mock(Configuration.class);
            Credentials creds2 = mock(Credentials.class);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 17.6K bytes
    - Viewed (0)
  3. api/maven-api-xml/src/main/java/org/apache/maven/api/xml/XmlNode.java

                    if (name != null) {
                        ListIterator<XmlNode> it = children.listIterator(children.size());
                        while (it.hasPrevious()) {
                            XmlNode child = it.previous();
                            if (name.equals(child.name())) {
                                return child;
                            }
                        }
                    }
                    return null;
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Sat Jul 19 11:09:56 UTC 2025
    - 18.2K bytes
    - Viewed (0)
  4. docs/en/docs/advanced/settings.md

    This could be especially useful during testing, as it's very easy to override a dependency with your own custom settings.
    
    ### The config file { #the-config-file }
    
    Coming from the previous example, your `config.py` file could look like:
    
    {* ../../docs_src/settings/app02/config.py hl[10] *}
    
    Notice that now we don't create a default instance `settings = Settings()`.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 12.2K bytes
    - Viewed (0)
  5. docs/en/docs/contributing.md

    You could also simply create that file with those contents manually.
    
    ///
    
    That command also created a dummy file `docs/la/index.md` for the main page, you can start by translating that one.
    
    You can continue with the previous instructions for an "Existing Language" for that process.
    
    You can make the first pull request with those two files, `docs/la/mkdocs.yml` and `docs/la/index.md`. 🎉
    
    #### Preview the result
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sat Jul 26 11:35:42 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.4.md

      - [Action Required Before Upgrading](#action-required-before-upgrading)
    - [optionally, remove the old secret](#optionally-remove-the-old-secret)
      - [Previous Releases Included in v1.4.0](#previous-releases-included-in-v140)
    - [v1.4.0-beta.11](#v140-beta11)
      - [Downloads](#downloads-6)
      - [Changelog since v1.4.0-beta.10](#changelog-since-v140-beta10)
    - [v1.4.0-beta.10](#v140-beta10)
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/ArrayTable.java

       *
       * @param rowIndex position of the row key in {@link #rowKeyList()}
       * @param columnIndex position of the row key in {@link #columnKeyList()}
       * @param value value to store in the table
       * @return the previous value with the specified row and column
       * @throws IndexOutOfBoundsException if either index is negative, {@code rowIndex} is greater than
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Aug 13 19:39:21 UTC 2025
    - 26.8K bytes
    - Viewed (0)
  8. CHANGELOG.md

    We don't break binary compatibility with non-alpha APIs.
    
    
    ## Version 5.0.0-alpha.16
    
    _2025-05-29_
    
     *  Fix: The previous release would crash when running on Robolectric. We didn't anticipate
        running our Android artifact on the JVM platform!
    
    
    ## Version 5.0.0-alpha.15
    
    _2025-05-28_
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Jul 07 19:32:33 UTC 2025
    - 31.6K bytes
    - Viewed (1)
  9. okhttp/src/jvmTest/kotlin/okhttp3/internal/connection/FastFallbackExchangeFinderTest.kt

       * confirms the fast fallback implements these invariants:
       *
       *  * if there's no TCP connect in flight, start one.
       *  * don't start a new TCP connect within 250 ms of the previous TCP connect.
       */
      @Test
      fun minimumDelayEnforcedBetweenConnects() {
        val plan0 = routePlanner.addPlan()
        plan0.tcpConnectDelayNanos = 510.ms
        plan0.tcpConnectThrowable = IOException("boom!")
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  10. docs/smb3-features/02-persistent-handles-design.md

    public class DurableHandleReconnect extends Smb2CreateContext {
        public static final String NAME = "DHnC";  // Durable Handle Reconnect
        
        private byte[] fileId;  // 16-byte file ID from previous open
        
        public DurableHandleReconnect(byte[] fileId) {
            super(NAME);
            if (fileId.length != 16) {
                throw new IllegalArgumentException("File ID must be 16 bytes");
            }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 31.6K bytes
    - Viewed (0)
Back to top