Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Here (0.22 sec)

  1. docs/changelogs/changelog_3x.md

        They may also be fired in cases where no event was published previously. In this release we did
        an internal rewrite of our event code to fix problems where events were lost or unbalanced.
    
     *  Fix: Don't leak a connection when a call is canceled immediately preceding the `onFailure()`
        callback.
    
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sun Feb 06 14:55:54 GMT 2022
    - 50.8K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

        setUp(parameters.first, parameters.second)
        // Add an uncommitted entry. This will get detected on initialization, and the cache will
        // attempt to delete the file. Do not explicitly close the cache here so the entry is left as
        // incomplete.
        val creator = cache.edit("k1")!!
        creator.newSink(0).buffer().use {
          it.writeUtf8("Hello")
        }
    
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Apr 15 14:55:09 GMT 2024
    - 75.8K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

        assertThat(ackFrame.type).isEqualTo(Http2.TYPE_SETTINGS)
        assertThat(ackFrame.streamId).isEqualTo(0)
        assertThat(ackFrame.ack).isTrue()
    
        // This stream was created *after* the connection settings were adjusted.
        val stream = connection.newStream(headerEntries("a", "android"), false)
        assertThat(connection.peerSettings.initialWindowSize).isEqualTo(3368)
        // New Stream is has the most recent initial window size.
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Apr 20 17:03:43 GMT 2024
    - 75.4K bytes
    - Viewed (0)
Back to top