Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 111 - 118 of 118 for mockWebServer (0.12 seconds)

  1. build-logic/src/main/kotlin/okhttp.dokka-multimodule-conventions.gradle.kts

        add("dokka", project(":okhttp-sse"))
        add("dokka", project(":okhttp-tls"))
        add("dokka", project(":okhttp-urlconnection"))
        add("dokka", project(":okhttp-zstd"))
        add("dokka", project(":mockwebserver"))
        add("dokka", project(":mockwebserver3"))
        add("dokka", project(":mockwebserver3-junit4"))
        add("dokka", project(":mockwebserver3-junit5"))
      }
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Feb 03 22:17:59 GMT 2026
    - 822 bytes
    - Click Count (0)
  2. samples/slack/build.gradle.kts

    plugins {
      kotlin("jvm")
      id("okhttp.jvm-conventions")
      id("okhttp.quality-conventions")
      id("okhttp.testing-conventions")
    }
    
    dependencies {
      implementation(projects.okhttp)
      implementation(projects.mockwebserver)
      implementation(libs.square.moshi)
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Feb 03 22:17:59 GMT 2026
    - 258 bytes
    - Click Count (0)
  3. samples/unixdomainsockets/build.gradle.kts

    plugins {
      kotlin("jvm")
      id("okhttp.jvm-conventions")
      id("okhttp.quality-conventions")
      id("okhttp.testing-conventions")
    }
    
    dependencies {
      implementation(projects.okhttp)
      implementation(projects.mockwebserver)
      implementation(libs.jnr.unixsocket)
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Feb 03 22:17:59 GMT 2026
    - 260 bytes
    - Click Count (0)
  4. okhttp-dnsoverhttps/build.gradle.kts

    )
    
    project.applyJavaModules("okhttp3.dnsoverhttps")
    
    dependencies {
      "friendsApi"(projects.okhttp)
    
      testImplementation(projects.okhttpTestingSupport)
      testImplementation(projects.mockwebserver)
      testImplementation(projects.mockwebserver3Junit5)
      testImplementation(libs.square.okio.fakefilesystem)
      testImplementation(libs.conscrypt.openjdk)
      testImplementation(libs.junit)
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Feb 03 22:17:59 GMT 2026
    - 761 bytes
    - Click Count (1)
  5. samples/guide/build.gradle.kts

      id("okhttp.quality-conventions")
      id("okhttp.testing-conventions")
      id("com.google.devtools.ksp")
    }
    
    dependencies {
      "friendsImplementation"(projects.okhttp)
      implementation(projects.mockwebserver)
      implementation(projects.okhttpTestingSupport)
      implementation(projects.okhttpTls)
      implementation(libs.animalsniffer.annotations)
      implementation(libs.square.moshi)
      implementation(libs.square.okio.fakefilesystem)
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Feb 03 22:17:59 GMT 2026
    - 569 bytes
    - Click Count (0)
  6. pom.xml

    			<artifactId>httpclient5</artifactId>
    			<version>${httpclient5.version}</version>
    		</dependency>
    		<dependency>
    			<groupId>com.squareup.okhttp3</groupId>
    			<artifactId>mockwebserver</artifactId>
    			<version>${okhttp.version}</version>
    			<scope>test</scope>
    		</dependency>
    		<dependency>
    			<groupId>org.codelibs</groupId>
    			<artifactId>java-saml</artifactId>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 07:04:54 GMT 2026
    - 49.9K bytes
    - Click Count (0)
  7. mockwebserver/src/main/kotlin/mockwebserver3/MockResponse.kt

          }
    
        /**
         * When [protocols][MockWebServer.protocols] include [HTTP_2][okhttp3.Protocol], this attaches a
         * pushed stream to this response.
         */
        public fun addPush(promise: PushPromise): Builder =
          apply {
            this.pushPromises_ += promise
          }
    
        /**
         * When [protocols][MockWebServer.protocols] include [HTTP_2][okhttp3.Protocol], this pushes
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Fri Jun 20 11:46:46 GMT 2025
    - 17.8K bytes
    - Click Count (0)
  8. okhttp/build.gradle.kts

            implementation(libs.square.moshi)
            implementation(libs.square.okio.fakefilesystem)
            implementation(projects.loggingInterceptor)
            implementation(projects.mockwebserver)
            implementation(projects.mockwebserver3)
            implementation(projects.mockwebserver3Junit4)
            implementation(projects.mockwebserver3Junit5)
            implementation(projects.okhttpBrotli)
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Wed Feb 04 22:16:39 GMT 2026
    - 11.4K bytes
    - Click Count (0)
Back to Top