Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 145 for withDns (0.36 seconds)

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

        check(exchange == null) { "Timeouts can't be adjusted in a network interceptor" }
    
        return copy(writeTimeoutMillis = checkDuration("writeTimeout", timeout.toLong(), unit))
      }
    
      override fun withDns(dns: Dns): Interceptor.Chain {
        check(exchange == null) { "dns can't be adjusted in a network interceptor" }
    
        return copy(dns = dns)
      }
    
    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

         */
        val dns: Dns
    
        /**
         * Override the [DNS] for the Call.Chain.
         *
         * @throws IllegalStateException if this is a Network Interceptor, since the override is too late.
         */
        fun withDns(dns: Dns): Chain
    
        /**
         * Returns the [SocketFactory] for the OkHttpClient, or an override from the Call.Chain.
         */
        val socketFactory: SocketFactory
    
        /**
    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 DnsOverride : Override<Dns> {
          override fun Interceptor.Chain.value(): Dns = dns
    
          override fun Interceptor.Chain.withOverride(value: Dns): Interceptor.Chain = withDns(value)
    
          override fun OkHttpClient.Builder.withOverride(value: Dns): OkHttpClient.Builder = dns(value)
    
          override val nonDefaultValue: Dns = Dns { Dns.SYSTEM.lookup(it) }
    
    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

            get() = TODO()
          override val certificatePinner: CertificatePinner
            get() = TODO()
          override val connectionPool: ConnectionPool
            get() = TODO()
    
          override fun withDns(dns: Dns): Interceptor.Chain {
            TODO()
          }
    
          override fun withSocketFactory(socketFactory: SocketFactory): 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 withConnectionPool (Lokhttp3/ConnectionPool;)Lokhttp3/Interceptor$Chain;
    	public abstract fun withCookieJar (Lokhttp3/CookieJar;)Lokhttp3/Interceptor$Chain;
    	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;
    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 withConnectionPool (Lokhttp3/ConnectionPool;)Lokhttp3/Interceptor$Chain;
    	public abstract fun withCookieJar (Lokhttp3/CookieJar;)Lokhttp3/Interceptor$Chain;
    	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;
    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)
  7. android/guava-testlib/src/com/google/common/testing/GcFinalization.java

     * specified the JVM flag {@code -XX:+DisableExplicitGC}. But in practice, it works very well for
     * ordinary tests.
     *
     * <p>Failure of the expected event to occur within an implementation-defined "reasonable" time
     * period or an interrupt while waiting for the expected event will result in a {@link
     * RuntimeException}.
     *
     * <p>Here's an example that tests a {@code finalize} method:
     *
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 12 20:19:19 GMT 2026
    - 12.3K bytes
    - Click Count (0)
  8. LICENSE

              within such NOTICE file, excluding those notices that do not
              pertain to any part of the Derivative Works, in at least one
              of the following places: within a NOTICE text file distributed
              as part of the Derivative Works; within the Source form or
              documentation, if provided along with the Derivative Works; or,
              within a display generated by the Derivative Works, if and
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 12 16:29:02 GMT 2026
    - 9.9K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/helper/IntervalControlHelperTest.java

            IntervalRule rule = new IntervalRule("22:00", "02:00", "*", 1000);
    
            // Within range (same day)
            assertTrue(rule.isTarget(23, 30, 1)); // 23:30 on Sunday
            assertTrue(rule.isTarget(22, 0, 1)); // 22:00 on Sunday (start time)
    
            // Within range (next day)
            assertTrue(rule.isTarget(1, 30, 1)); // 1:30 on Sunday (actually Monday morning)
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 13.6K bytes
    - Click Count (0)
  10. build-logic/documentation/src/main/groovy/gradlebuild/docs/FindMissingDocumentationFiles.java

    import com.google.gson.Gson;
    import com.google.gson.annotations.SerializedName;
    import com.google.gson.reflect.TypeToken;
    
    /**
     * A Java class to verify that all .adoc files and their anchors listed in a JSON file exist
     * within a specified directory.
     */
    @CacheableTask
    public abstract class FindMissingDocumentationFiles extends DefaultTask {
        private static final Set<String> EXCLUDED_FILES = new HashSet<>(Arrays.asList(
            "temp.adoc",
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Aug 21 15:38:58 GMT 2025
    - 8.5K bytes
    - Click Count (0)
Back to Top