Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for append (0.13 sec)

  1. okhttp/src/main/kotlin/okhttp3/Cookie.kt

        return buildString {
          append(name)
          append('=')
          append(value)
    
          if (persistent) {
            if (expiresAt == Long.MIN_VALUE) {
              append("; max-age=0")
            } else {
              append("; expires=").append(Date(expiresAt).toHttpDateString())
            }
          }
    
          if (!hostOnly) {
            append("; domain=")
            if (forObsoleteRfc2965) {
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Apr 06 04:12:05 GMT 2024
    - 23.1K bytes
    - Viewed (0)
Back to top