Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for merge (0.17 sec)

  1. okhttp/src/test/java/okhttp3/internal/http2/SettingsTest.kt

      }
    
      @Test
      fun merge() {
        val a = Settings()
        a[Settings.HEADER_TABLE_SIZE] = 10000
        a[Settings.MAX_HEADER_LIST_SIZE] = 20000
        a[Settings.INITIAL_WINDOW_SIZE] = 30000
        val b = Settings()
        b[Settings.MAX_HEADER_LIST_SIZE] = 40000
        b[Settings.INITIAL_WINDOW_SIZE] = 50000
        b[Settings.MAX_CONCURRENT_STREAMS] = 60000
        a.merge(b)
        assertThat(a.headerTableSize).isEqualTo(10000)
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 2.7K bytes
    - Viewed (0)
  2. CONTRIBUTING.md

    readable as possible.
    
    Contribute code changes through GitHub by forking the repository and sending a pull request. We
    squash all pull requests on merge.
    
    
    Gradle Setup
    ------------
    
    ```
    $ cat local.properties
    sdk.dir=PATH_TO_ANDROID_HOME/sdk
    org.gradle.caching=true
    ```
    
    Running Android Tests
    ---------------------
    
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Tue Feb 14 08:26:50 GMT 2023
    - 2K bytes
    - Viewed (0)
  3. docs/contribute/contributing.md

    readable as possible.
    
    Contribute code changes through GitHub by forking the repository and sending a pull request. We
    squash all pull requests on merge.
    
    
    Gradle Setup
    ------------
    
    ```
    $ cat local.properties
    sdk.dir=PATH_TO_ANDROID_HOME/sdk
    org.gradle.caching=true
    ```
    
    Running Android Tests
    ---------------------
    
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Tue Feb 14 08:26:50 GMT 2023
    - 2K bytes
    - Viewed (1)
  4. mockwebserver/src/main/kotlin/mockwebserver3/MockResponse.kt

        this.bodyDelayNanos = builder.bodyDelayNanos
        this.headersDelayNanos = builder.headersDelayNanos
        this.pushPromises = builder.pushPromises.toList()
        this.settings =
          Settings().apply {
            merge(builder.settings)
          }
      }
    
      fun newBuilder(): Builder = Builder(this)
    
      override fun toString(): String = status
    
      @ExperimentalOkHttpApi
      class Builder : Cloneable {
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Tue Jan 23 14:31:42 GMT 2024
    - 13.3K bytes
    - Viewed (1)
  5. okhttp/src/main/kotlin/okhttp3/internal/http2/Settings.kt

      }
    
      /**
       * Writes `other` into this. If any setting is populated by this and `other`, the
       * value and flags from `other` will be kept.
       */
      fun merge(other: Settings) {
        for (i in 0 until COUNT) {
          if (!other.isSet(i)) continue
          set(i, other[i])
        }
      }
    
      companion object {
        /**
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 3.8K bytes
    - Viewed (0)
  6. kotlin-js-store/yarn.lock

        rechoir "^0.8.0"
        webpack-merge "^5.7.3"
    
    webpack-merge@^4.1.5:
      version "4.2.2"
      resolved "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-4.2.2.tgz#a27c52ea783d1398afd2087f547d7b9d2f43634d"
      integrity sha512-TUE1UGoTX2Cd42j3krGYqObZbOD+xF7u28WB7tfUordytSjbWTIjK/8V0amkBfTYN4/pB/GIDlJZZ657BGG19g==
      dependencies:
        lodash "^4.17.15"
    
    webpack-merge@^5.7.3:
      version "5.8.0"
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Jul 22 12:28:51 GMT 2023
    - 87.4K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Connection.kt

              newPeerSettings =
                if (clearPrevious) {
                  settings
                } else {
                  Settings().apply {
                    merge(previousPeerSettings)
                    merge(settings)
                  }
                }
    
              val peerInitialWindowSize = newPeerSettings.initialWindowSize.toLong()
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Apr 20 17:03:43 GMT 2024
    - 32.6K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/CallTest.kt

        val cacheHit =
          executeSynchronously(
            "/",
            "Accept-Language",
            "en-US",
            "Accept-Charset",
            "UTF-8",
          )
    
        // Check the merged response. The request is the application's original request.
        cacheHit.assertCode(200)
          .assertBody("A")
          .assertHeaders(
            Headers.Builder()
              .add("ETag", "v1")
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Apr 10 19:46:48 GMT 2024
    - 142.5K bytes
    - Viewed (0)
  9. okhttp-android/src/main/baseline-prof.txt

    HSPLokhttp3/internal/http2/PushObserver;-><clinit>()V
    HSPLokhttp3/internal/http2/Settings;-><init>()V
    HSPLokhttp3/internal/http2/Settings;->getInitialWindowSize()I
    HSPLokhttp3/internal/http2/Settings;->merge(Lokhttp3/internal/http2/Settings;)V
    HSPLokhttp3/internal/http2/Settings;->set(II)Lokhttp3/internal/http2/Settings;
    HSPLokhttp3/internal/platform/Android10Platform;-><clinit>()V
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Mar 21 11:22:00 GMT 2022
    - 127.9K bytes
    - Viewed (0)
  10. docs/features/calls.md

    If a conditional GET was successful, responses from the network and cache are merged as directed by the spec.
    
    ## Follow-up Requests
    
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sun Feb 06 02:19:09 GMT 2022
    - 3.9K bytes
    - Viewed (0)
Back to top