Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for tagsCanBeComputed (0.07 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

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

        assertThat(call.tag(Integer::class.java)).isEqualTo(5)
        assertThat(call.tag(Boolean::class.java)).isNull()
        assertThat(call.tag(Any::class.java)).isNull()
      }
    
      @Test
      fun tagsCanBeComputed() {
        val request =
          Request
            .Builder()
            .url("https://square.com")
            .build()
        val call = client.newCall(request)
    
        // Check the Kotlin-focused APIs.
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Sun Oct 26 14:54:46 GMT 2025
    - 2.8K bytes
    - Click Count (0)
Back to Top