Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Nath (0.15 sec)

  1. mockwebserver/src/main/kotlin/mockwebserver3/MockWebServer.kt

      }
    
      /**
       * Returns a URL for connecting to this server.
       *
       * @param path the request path, such as "/".
       */
      fun url(path: String): HttpUrl {
        return HttpUrl.Builder()
          .scheme(if (sslSocketFactory != null) "https" else "http")
          .host(hostName)
          .port(port)
          .build()
          .resolve(path)!!
      }
    
      /**
       * Serve requests with HTTPS rather than otherwise.
       */
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sun Mar 31 17:16:15 GMT 2024
    - 37.4K bytes
    - Viewed (0)
  2. mockwebserver-deprecated/src/main/kotlin/okhttp3/mockwebserver/MockWebServer.kt

      )
      fun setServerSocketFactory(serverSocketFactory: ServerSocketFactory) {
        delegate.serverSocketFactory = serverSocketFactory
      }
    
      fun url(path: String): HttpUrl {
        before() // This implicitly starts the delegate.
        return delegate.url(path)
      }
    
      @JvmName("-deprecated_bodyLimit")
      @Deprecated(
        message = "moved to var",
        replaceWith =
          ReplaceWith(
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Tue Jan 23 14:31:42 GMT 2024
    - 5.9K bytes
    - Viewed (0)
Back to top