Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 26 of 26 for socketAddress (0.04 sec)

  1. mockwebserver/src/test/java/mockwebserver3/MockWebServerTest.kt

        assertFailsWith<IllegalStateException> {
          other.socketAddress
        }
        assertFailsWith<IllegalStateException> {
          other.hostName
        }
        assertFailsWith<IllegalStateException> {
          other.port
        }
        assertFailsWith<IllegalStateException> {
          other.proxyAddress
        }
        other.use {
          other.start()
          assertThat(other.socketAddress).isNotNull()
          assertThat(other.hostName).isNotNull()
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Aug 03 22:38:00 UTC 2025
    - 28K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

    import java.net.Authenticator;
    import java.net.InetSocketAddress;
    import java.net.PasswordAuthentication;
    import java.net.Proxy;
    import java.net.Proxy.Type;
    import java.net.SocketAddress;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.Collections;
    import java.util.Date;
    import java.util.Enumeration;
    import java.util.HashMap;
    import java.util.HashSet;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 86.5K bytes
    - Viewed (0)
  3. okhttp/src/jvmTest/kotlin/okhttp3/URLConnectionTest.kt

              object : ProxySelector() {
                override fun select(uri: URI): List<Proxy> = listOf(server.proxyAddress)
    
                override fun connectFailed(
                  uri: URI,
                  socketAddress: SocketAddress,
                  e: IOException,
                ) {
                }
              },
            ).build()
        val url = "http://android.com/foo".toHttpUrl()
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Jun 21 20:36:35 UTC 2025
    - 133.2K bytes
    - Viewed (0)
  4. okhttp/src/jvmTest/kotlin/okhttp3/KotlinSourceModernTest.kt

      }
    
      @Test
      fun route() {
        val route: Route = factory.newRoute()
        val address: Address = route.address
        val proxy: Proxy = route.proxy
        val inetSocketAddress: InetSocketAddress = route.socketAddress
        val requiresTunnel: Boolean = route.requiresTunnel()
      }
    
      @Test
      fun socketPolicy() {
        val socketPolicy: SocketPolicy = SocketPolicy.KEEP_OPEN
      }
    
      @Test
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Jun 21 20:36:35 UTC 2025
    - 46.5K bytes
    - Viewed (0)
  5. okhttp/api/jvm/okhttp.api

    	public final fun address ()Lokhttp3/Address;
    	public fun equals (Ljava/lang/Object;)Z
    	public fun hashCode ()I
    	public final fun proxy ()Ljava/net/Proxy;
    	public final fun requiresTunnel ()Z
    	public final fun socketAddress ()Ljava/net/InetSocketAddress;
    	public fun toString ()Ljava/lang/String;
    }
    
    public final class okhttp3/TlsVersion : java/lang/Enum {
    	public static final field Companion Lokhttp3/TlsVersion$Companion;
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 16 09:39:51 UTC 2025
    - 69.4K bytes
    - Viewed (0)
  6. okhttp/api/android/okhttp.api

    	public final fun address ()Lokhttp3/Address;
    	public fun equals (Ljava/lang/Object;)Z
    	public fun hashCode ()I
    	public final fun proxy ()Ljava/net/Proxy;
    	public final fun requiresTunnel ()Z
    	public final fun socketAddress ()Ljava/net/InetSocketAddress;
    	public fun toString ()Ljava/lang/String;
    }
    
    public final class okhttp3/TlsVersion : java/lang/Enum {
    	public static final field Companion Lokhttp3/TlsVersion$Companion;
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 16 09:39:51 UTC 2025
    - 69.4K bytes
    - Viewed (0)
Back to top