Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for WEB (0.03 sec)

  1. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

      @get:JvmName("writeTimeoutMillis")
      val writeTimeoutMillis: Int = builder.writeTimeout
    
      /** Web socket and HTTP/2 ping interval (in milliseconds). By default pings are not sent. */
      @get:JvmName("pingIntervalMillis")
      val pingIntervalMillis: Int = builder.pingInterval
    
      /** Web socket close timeout (in milliseconds). */
      @get:JvmName("webSocketCloseTimeout")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  2. docs/changelogs/changelog_3x.md

        to do domain fronting.
     *  New: charset support for `Credentials.basic()`.
    
    
    ## Version 3.5.0
    
    _2016-11-30_
    
     *  **Web Sockets are now a stable feature of OkHttp.** Since being introduced as a beta feature in
        OkHttp 2.3 our web socket client has matured. Connect to a server's web socket with
        `OkHttpClient.newWebSocket()`, send messages with `send()`, and receive messages with the
        `WebSocketListener`.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  3. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/vnd.airzip.filesecure.azs",
    				"application/vnd.amazon.ebook",
    				"application/vnd.americandynamics.acc",
    				"application/vnd.amiga.ami",
    				"application/vnd.anser-web-certificate-issue-initiation",
    				"application/vnd.anser-web-funds-transfer-initiation",
    				"application/vnd.antix.game-component",
    				"application/vnd.apple.installer+xml",
    				"application/vnd.apple.iwork",
    				"application/vnd.apple.keynote",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

     * names is a distinct URL and they are not interchangeable. For example, even if
     * `http://square.github.io/dagger` and `http://google.github.io/dagger` are served by the same IP
     * address, the two URLs identify different resources.
     *
     * ### Port
     *
     * The port used to connect to the web server. By default this is 80 for HTTP and 443 for HTTPS.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  5. cmd/sts-handlers_test.go

    	defer cancel()
    
    	bucket := getRandomBucketName()
    	err := s.client.MakeBucket(ctx, bucket, minio.MakeBucketOptions{})
    	if err != nil {
    		c.Fatalf("bucket create error: %v", err)
    	}
    
    	// Generate web identity STS token by interacting with OpenID IDP.
    	token, err := MockOpenIDTestUserInteraction(ctx, testAppParams, "******@****.***", "dillon")
    	if err != nil {
    		c.Fatalf("mock user err: %v", err)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

    import org.lastaflute.job.subsidiary.JobConcurrentExec;
    import org.lastaflute.web.validation.RequiredValidator;
    import org.lastaflute.web.validation.theme.typed.DoubleTypeValidator;
    import org.lastaflute.web.validation.theme.typed.FloatTypeValidator;
    import org.lastaflute.web.validation.theme.typed.IntegerTypeValidator;
    import org.lastaflute.web.validation.theme.typed.LongTypeValidator;
    import org.opensearch.search.sort.SortBuilder;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 85K bytes
    - Viewed (0)
  7. pkg/kubelet/server/server_test.go

    	// method:path -> has coverage
    	expectedCases := map[string]bool{}
    
    	// Test all the non-web-service handlers
    	for _, path := range fw.serverUnderTest.restfulCont.RegisteredHandlePaths() {
    		expectedCases["GET:"+path] = false
    		expectedCases["POST:"+path] = false
    	}
    
    	// Test all the generated web-service paths
    	for _, ws := range fw.serverUnderTest.restfulCont.RegisteredWebServices() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

    import org.codelibs.fess.util.DocumentUtil;
    import org.codelibs.fess.util.FacetResponse;
    import org.codelibs.fess.util.FacetResponse.Field;
    import org.dbflute.optional.OptionalThing;
    import org.lastaflute.web.util.LaRequestUtil;
    import org.lastaflute.web.util.LaResponseUtil;
    import org.opensearch.script.Script;
    
    public class SearchApiManager extends BaseApiManager {
    
        private static final Logger logger = LogManager.getLogger(SearchApiManager.class);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 02:17:23 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  9. src/cmd/go/go_test.go

    			}
    			var interceptors []web.Interceptor
    			for _, host := range vcstest.Hosts {
    				interceptors = append(interceptors,
    					web.Interceptor{Scheme: "http", FromHost: host, ToHost: vcsTestHost},
    					web.Interceptor{Scheme: "https", FromHost: host, ToHost: vcsTestTLSHost, Client: vcsTestClient})
    			}
    			web.EnableTestHooks(interceptors)
    		}
    
    		cmdgo.Main()
    		os.Exit(0)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  10. src/crypto/tls/conn.go

    	}
    
    	// Read header, payload.
    	if err := c.readFromUntil(c.conn, recordHeaderLen); err != nil {
    		// RFC 8446, Section 6.1 suggests that EOF without an alertCloseNotify
    		// is an error, but popular web sites seem to do this, so we accept it
    		// if and only if at the record boundary.
    		if err == io.ErrUnexpectedEOF && c.rawInput.Len() == 0 {
    			err = io.EOF
    		}
    		if e, ok := err.(net.Error); !ok || !e.Temporary() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top