- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 15 for proxyb (0.18 sec)
-
okhttp/src/commonJvmAndroid/kotlin/okhttp3/OkHttpClient.kt
} /** * Sets the HTTP proxy that will be used by connections created by this client. This takes * precedence over [proxySelector], which is only honored when this proxy is null (which it is * by default). To disable proxy use completely, call `proxy(Proxy.NO_PROXY)`. */ fun proxy(proxy: Proxy?) = apply { if (proxy != this.proxy) { this.routeDatabase = null }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon May 05 16:01:00 UTC 2025 - 51.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java
private final CountDownLatch returned = new CountDownLatch(1); private Object proxy; @SuppressWarnings("unchecked") // proxy for a generic class <V> Callable<V> waitFor(Callable<V> callable) { return waitFor(callable, Callable.class); } @SuppressWarnings("unchecked") // proxy for a generic class <V> ClosingCallable<V> waitFor(ClosingCallable<V> closingCallable) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Jul 11 18:52:30 UTC 2025 - 75.4K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/EventListenerTest.kt
} @Test fun successfulSocksProxyConnect() { server.enqueue(MockResponse()) socksProxy = SocksProxy() socksProxy!!.play() val proxy = socksProxy!!.proxy() client = client .newBuilder() .proxy(proxy) .build() val call = client.newCall( Request .Builder()
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Jun 20 11:46:46 UTC 2025 - 60.4K bytes - Viewed (0) -
src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js
.on('click.daterangepicker', '.prev', $.proxy(this.clickPrev, this)) .on('click.daterangepicker', '.next', $.proxy(this.clickNext, this)) .on('mousedown.daterangepicker', 'td.available', $.proxy(this.clickDate, this)) .on('mouseenter.daterangepicker', 'td.available', $.proxy(this.hoverDate, this)) .on('change.daterangepicker', 'select.yearselect', $.proxy(this.monthOrYearChanged, this))
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Oct 26 01:49:09 UTC 2024 - 64.8K bytes - Viewed (0) -
okhttp/api/jvm/okhttp.api
public final fun -deprecated_proxy ()Ljava/net/Proxy; public final fun -deprecated_socketAddress ()Ljava/net/InetSocketAddress; public fun <init> (Lokhttp3/Address;Ljava/net/Proxy;Ljava/net/InetSocketAddress;)V 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
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 16 09:39:51 UTC 2025 - 69.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java
default Proxy getHttpProxy() { Proxy proxy = (Proxy) propMap.get(HTML_PROXY); if (proxy == null) { if (StringUtil.isNotBlank(getHttpProxyHost()) && getHttpProxyPortAsInteger() != null) { final SocketAddress addr = new InetSocketAddress(getHttpProxyHost(), getHttpProxyPortAsInteger()); proxy = new Proxy(Type.HTTP, addr);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 86.5K bytes - Viewed (0) -
okhttp/api/android/okhttp.api
public final fun -deprecated_proxy ()Ljava/net/Proxy; public final fun -deprecated_socketAddress ()Ljava/net/InetSocketAddress; public fun <init> (Lokhttp3/Address;Ljava/net/Proxy;Ljava/net/InetSocketAddress;)V 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
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 16 09:39:51 UTC 2025 - 69.4K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/HttpOverHttp2Test.kt
} /** Respond to a proxy authorization challenge. */ @ParameterizedTest @ArgumentsSource(ProtocolParamProvider::class) fun proxyAuthenticateOnConnect(protocol: Protocol) { setUp(protocol) server.enqueue( MockResponse .Builder() .code(407) .headers(headersOf("Proxy-Authenticate", "Basic realm=\"localhost\"")) .inTunnel()
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Jun 20 11:46:46 UTC 2025 - 73.4K bytes - Viewed (0) -
docs/changelogs/changelog_3x.md
is now asynchronous and they may be enqueued before the web socket is connected. * **OkHttp no longer attempts a direct connection if the system's HTTP proxy fails.** This behavior was surprising because OkHttp was disregarding the user's specified configuration. If you need to customize proxy fallback behavior, implement your own `java.net.ProxySelector`. * Fix: Support TLSv1.3 on devices that support it.
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Feb 06 14:55:54 UTC 2022 - 50.8K bytes - Viewed (0) -
src/main/resources/fess_config.properties
# Virtual Host: Host:fess.codelibs.org=fess virtual.host.headers= # Hostname for the HTTP proxy server. http.proxy.host= # Port number for the HTTP proxy server (e.g., 8080). http.proxy.port=8080 # Username for HTTP proxy authentication. http.proxy.username= # Password for HTTP proxy authentication. http.proxy.password= # Maximum size (bytes) for HTTP file uploads. http.fileupload.max.size=262144000
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 14:45:37 UTC 2025 - 54.7K bytes - Viewed (0)