Search Options

Display Count
Sort
Preferred Language
Advanced Search

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

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

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

        // Alternate access APIs also work.
        assertThat(request.tag(Any::class)).isSameAs(tag)
        assertThat(request.tag<Any>()).isSameAs(tag)
      }
    
      @Test
      fun kotlinReifiedTag() {
        val uuidTag = "1234"
        val request =
          Request
            .Builder()
            .url("https://square.com")
            .tag<String>(uuidTag) // Use the type parameter.
            .build()
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Fri Oct 24 11:36:14 GMT 2025
    - 10.9K bytes
    - Click Count (0)
Back to Top