Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 6 of 6 for withProxy (0.08 seconds)

  1. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http/RealInterceptorChain.kt

      }
    
      override fun withCache(cache: Cache?): Interceptor.Chain {
        check(exchange == null) { "cache can't be adjusted in a network interceptor" }
    
        return copy(cache = cache)
      }
    
      override fun withProxy(proxy: Proxy?): Interceptor.Chain {
        check(exchange == null) { "proxy can't be adjusted in a network interceptor" }
    
        return copy(proxy = proxy)
      }
    
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Mar 10 21:47:20 GMT 2026
    - 12.8K bytes
    - Click Count (0)
  2. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Interceptor.kt

        /**
         * Returns the [Proxy] for the OkHttpClient, or an override from the Call.Chain.
         */
        val proxy: Proxy?
    
        /**
         * Returns a new chain with the specified [Proxy].
         */
        fun withProxy(proxy: Proxy?): Chain
    
        /**
         * Returns the [ProxySelector] for the OkHttpClient, or an override from the Call.Chain.
         */
        val proxySelector: ProxySelector
    
        /**
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Mar 10 21:47:20 GMT 2026
    - 8.9K bytes
    - Click Count (0)
  3. okhttp/src/jvmTest/kotlin/okhttp3/InterceptorOverridesTest.kt

        }
    
        object ProxyOverride : Override<Proxy?> {
          override fun Interceptor.Chain.value(): java.net.Proxy? = proxy
    
          override fun Interceptor.Chain.withOverride(value: java.net.Proxy?): Interceptor.Chain = withProxy(value)
    
          override fun OkHttpClient.Builder.withOverride(value: java.net.Proxy?): OkHttpClient.Builder = proxy(value)
    
          override val nonDefaultValue: java.net.Proxy? = java.net.Proxy.NO_PROXY
    
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Wed Mar 11 02:37:00 GMT 2026
    - 28.8K bytes
    - Click Count (0)
  4. okhttp/src/jvmTest/kotlin/okhttp3/KotlinSourceModernTest.kt

            TODO()
          }
    
          override fun withCache(cache: Cache?): Interceptor.Chain {
            TODO()
          }
    
          override fun withProxy(proxy: Proxy?): Interceptor.Chain {
            TODO()
          }
    
          override fun withProxySelector(proxySelector: ProxySelector): Interceptor.Chain {
            TODO()
          }
    
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Mar 10 21:47:20 GMT 2026
    - 49.7K bytes
    - Click Count (0)
  5. okhttp/api/jvm/okhttp.api

    	public abstract fun withDns (Lokhttp3/Dns;)Lokhttp3/Interceptor$Chain;
    	public abstract fun withHostnameVerifier (Ljavax/net/ssl/HostnameVerifier;)Lokhttp3/Interceptor$Chain;
    	public abstract fun withProxy (Ljava/net/Proxy;)Lokhttp3/Interceptor$Chain;
    	public abstract fun withProxyAuthenticator (Lokhttp3/Authenticator;)Lokhttp3/Interceptor$Chain;
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Mar 10 21:47:20 GMT 2026
    - 72.3K bytes
    - Click Count (0)
  6. okhttp/api/android/okhttp.api

    	public abstract fun withDns (Lokhttp3/Dns;)Lokhttp3/Interceptor$Chain;
    	public abstract fun withHostnameVerifier (Ljavax/net/ssl/HostnameVerifier;)Lokhttp3/Interceptor$Chain;
    	public abstract fun withProxy (Ljava/net/Proxy;)Lokhttp3/Interceptor$Chain;
    	public abstract fun withProxyAuthenticator (Lokhttp3/Authenticator;)Lokhttp3/Interceptor$Chain;
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Mar 10 21:47:20 GMT 2026
    - 72.3K bytes
    - Click Count (0)
Back to Top