Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 202 for confirm (0.05 sec)

  1. okhttp/src/jvmTest/kotlin/okhttp3/URLConnectionTest.kt

        // Previously we had a bug where we would download the entire response body as long as no
        // individual read took longer than 100ms.
        assertThat(elapsedMillis).isLessThan(500L)
    
        // Do another request to confirm that the discarded connection was not pooled.
        assertContent("A", getResponse(newRequest("/")))
        assertThat(server.takeRequest().exchangeIndex).isEqualTo(0)
        // Connection is not pooled.
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Jun 21 20:36:35 UTC 2025
    - 133.2K bytes
    - Viewed (0)
  2. src/main/webapp/js/admin/plugins/form-validator/jquery.form-validator.min.js

    peof b.errorMessageCustom&&(a.formUtils.warn("Use of deprecated function errorMessageCustom, use config.submitErrorMessageCallback instead"),b.submitErrorMessageCallback=function(a,c){b.errorMessageCustom(a,b.language.errorTitle,c,b)})}function d(b){if(b.errorMessagePosition&&"object"==typeof b.errorMessagePosition){a.formUtils.warn("Deprecated use of config parameter errorMessagePosition, use config.submitErrorMessageCallback instead");var c=b.errorMessagePosition;b.errorMessagePosition="top",b...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 32.8K bytes
    - Viewed (0)
  3. okhttp/src/commonJvmAndroid/kotlin/okhttp3/OkHttpClient.kt

            }
    
            // Assign as an unmodifiable list. This is effectively immutable.
            this.protocols = protocolsCopy.unmodifiable()
          }
    
        /**
         * Sets the verifier used to confirm that response certificates apply to requested hostnames for
         * HTTPS connections.
         *
         * If unset, a default hostname verifier will be used.
         */
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon May 05 16:01:00 UTC 2025
    - 51.7K bytes
    - Viewed (0)
  4. docs/changelogs/changelog_3x.md

        calls and for idle connections in the connection pool. (Pings do not impact
        when pooled connections are evicted).
    
        If you have a configured ping interval, you should confirm that it is long
        enough for a roundtrip from client to server. If your ping interval is too
        short, slow connections may be misinterpreted as failed connections. A ping
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java

    import org.codelibs.fess.opensearch.config.exbhv.WebConfigBhv;
    import org.codelibs.fess.opensearch.config.exentity.CrawlingConfig;
    import org.codelibs.fess.opensearch.config.exentity.CrawlingConfig.ConfigType;
    import org.codelibs.fess.opensearch.config.exentity.DataConfig;
    import org.codelibs.fess.opensearch.config.exentity.FailureUrl;
    import org.codelibs.fess.opensearch.config.exentity.FileConfig;
    import org.codelibs.fess.opensearch.config.exentity.WebConfig;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 34.9K bytes
    - Viewed (0)
  6. cmd/erasure-server-pool.go

    		defPool = pinfo
    		if !isErrObjectNotFound(pinfo.Err) && !isErrVersionNotFound(pinfo.Err) {
    			return pinfo, noReadQuorumPools, pinfo.Err
    		}
    
    		// No object exists or its a delete marker,
    		// check objInfo to confirm.
    		if pinfo.ObjInfo.DeleteMarker && pinfo.ObjInfo.Name != "" {
    			return pinfo, noReadQuorumPools, nil
    		}
    	}
    	if opts.ReplicationRequest && opts.DeleteMarker && defPool.Index >= 0 {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 89.1K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.4.md

    * Add get/delete cluster, delete context to kubectl config ([#29821](https://github.com/kubernetes/kubernetes/pull/29821), [@alexbrand](https://github.com/alexbrand))
    * rkt: Force `rkt fetch` to fetch from remote to conform the image pull policy. ([#31378](https://github.com/kubernetes/kubernetes/pull/31378), [@yifan-gu](https://github.com/yifan-gu))
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/smb2/lock/Smb2LockResponseTest.java

                // Given - create multiple configurations
                Configuration config1 = mock(Configuration.class);
                Configuration config2 = mock(Configuration.class);
    
                Smb2LockResponse response1 = new Smb2LockResponse(config1);
                Smb2LockResponse response2 = new Smb2LockResponse(config2);
    
                byte[] buffer = new byte[10];
                SMBUtil.writeInt2(4, buffer, 0);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 17.1K bytes
    - Viewed (0)
  9. cmd/bucket-replication_test.go

    		expectedSync: false,
    	},
    	{ // 3. existing object replication config enabled, versioning suspended
    		name:         "existing object replication config enabled, versioning suspended",
    		info:         ObjectInfo{Size: 100, VersionID: nullVersionID},
    		rcfg:         replicationConfig{Config: &configs[0]},
    		expectedSync: false,
    	},
    	{ // 4. existing object replication enabled, versioning enabled; no reset in progress
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Wed Apr 09 14:28:39 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  10. src/test/java/jcifs/context/BaseContextTest.java

            Configuration config1 = context.getConfig();
            Configuration config2 = context.getConfig();
            DfsResolver dfs1 = context.getDfs();
            DfsResolver dfs2 = context.getDfs();
            BufferCache cache1 = context.getBufferCache();
            BufferCache cache2 = context.getBufferCache();
    
            // Then - should be same instances
            assertSame(config1, config2, "Configuration should be consistent");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 15.1K bytes
    - Viewed (0)
Back to top