Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Clulow (0.16 sec)

  1. mockwebserver-deprecated/src/main/kotlin/okhttp3/mockwebserver/RecordedRequest.kt

            // 2001:0db8:85a3:0000:0000:8a2e:0370:7334
            // 2001:db8:85a3::8a2e:370:7334
            // ::1
            hostname = "[$hostname]"
          }
    
          val localPort = socket.localPort
          // Allow null in failure case to allow for testing bad requests
          this.requestUrl = "$scheme://$hostname:$localPort$path".toHttpUrlOrNull()
        } else {
          this.requestUrl = null
          this.method = null
          this.path = null
        }
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 4.1K bytes
    - Viewed (2)
  2. mockwebserver/src/main/kotlin/mockwebserver3/RecordedRequest.kt

                is Inet6Address -> "[${inetAddress.hostAddress}]:$localPort"
                else -> "${inetAddress.hostAddress}:$localPort"
              }
    
          // Allow null in failure case to allow for testing bad requests
          this.requestUrl = "$scheme://$hostAndPort$path".toHttpUrlOrNull()
        } else {
          this.requestUrl = null
          this.method = null
          this.path = null
        }
      }
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Tue Jan 23 14:31:42 GMT 2024
    - 3.8K bytes
    - Viewed (1)
Back to top