Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for overline (0.23 sec)

  1. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

            return object : RequestBody() {
              override fun contentLength(): Long = body.utf8Size()
    
              override fun contentType(): MediaType? = null
    
              override fun writeTo(sink: BufferedSink) {
                sink.writeUtf8(body)
              }
            }
          }
        },
    
        END_OF_STREAM {
          override fun setBody(
            response: MockResponse.Builder,
            content: Buffer?,
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Jan 20 10:30:28 GMT 2024
    - 131.7K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/CallTest.kt

              object : RequestBody() {
                var attempt = 0
    
                override fun contentType(): MediaType? {
                  return null
                }
    
                override fun writeTo(sink: BufferedSink) {
                  sink.writeUtf8("attempt " + attempt++)
                }
    
                override fun isOneShot(): Boolean {
                  return true
                }
              },
          )
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Apr 10 19:46:48 GMT 2024
    - 142.5K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/CacheTest.kt

          object : ForwardingFileSystem(fileSystem) {
            override fun onPathParameter(
              path: Path,
              functionName: String,
              parameterName: String,
            ): Path {
              events.add("$functionName:$path")
              return path
            }
    
            override fun onPathResult(
              path: Path,
              functionName: String,
            ): Path {
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Apr 10 19:46:48 GMT 2024
    - 108.6K bytes
    - Viewed (0)
Back to top