- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for stringVal (0.04 sec)
-
okhttp/src/jvmTest/kotlin/okhttp3/RequestCommonTest.kt
} @Test fun multipleTags() { val stringTag = "dilophosaurus" val longTag = 20170815L as Long? val objectTag = Any() val request = Request .Builder() .url("https://square.com") .tag(Any::class, objectTag) .tag(String::class, stringTag) .tag(Long::class, longTag) .build()
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Fri Oct 24 11:36:14 UTC 2025 - 10.9K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/CookieTest.kt
"a=b; Path=/c; Domain=example.com; Max-Age=5; Secure; ; SameSite=Lax", ) for (stringA in cookieStrings) { val cookieA = parseCookie(0, url, stringA!!) for (stringB in cookieStrings) { val cookieB = parseCookie(0, url, stringB!!) if (stringA == stringB) { assertThat(cookieB.hashCode()).isEqualTo(cookieA.hashCode()) assertThat(cookieB).isEqualTo(cookieA)Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Sat Nov 01 12:18:11 UTC 2025 - 24.4K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/RequestTest.kt
fun multipleTags() { val uuidTag = UUID.randomUUID() val stringTag = "dilophosaurus" val longTag = 20170815L as Long? val objectTag = Any() val request = Request .Builder() .url("https://square.com") .tag(Any::class.java, objectTag) .tag(UUID::class.java, uuidTag) .tag(String::class.java, stringTag) .tag(Long::class.javaObjectType, longTag)
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Fri Oct 24 11:36:14 UTC 2025 - 24.4K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/KotlinSourceModernTest.kt
val header: String? = request.header("") val headersForName: List<String> = request.headers("") val body: RequestBody? = request.body var stringTag: String? = request.tag(String::class) stringTag = request.tag<String>() var tag: Any? = request.tag() tag = request.tag(Any::class.java) val builder: Request.Builder = request.newBuilder()
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Wed Nov 05 18:28:35 UTC 2025 - 47K bytes - Viewed (0) -
cmd/api-response.go
Key string Value string }{ Key: k, Value: v, }) } type xmlKeyEntry struct { XMLName xxml.Name Value string `xml:",chardata"` } // MarshalXML - StringMap marshals into XML. func (s *Metadata) MarshalXML(e *xxml.Encoder, start xxml.StartElement) error { if s == nil { return nil } if len(s.Items) == 0 { return nil }Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Fri Oct 24 04:05:19 UTC 2025 - 35K bytes - Viewed (0)