Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. staging/src/k8s.io/api/apps/v1/types.go

    	// of the StatefulSet. Each pod will be named with the format
    	// <statefulsetname>-<podindex>. For example, a pod in a StatefulSet named
    	// "web" with index number "3" would be named "web-3".
    	// The only allowed template.spec.restartPolicy value is "Always".
    	Template v1.PodTemplateSpec `json:"template" protobuf:"bytes,3,opt,name=template"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Sets.java

       * @param otherElements the rest of the elements the set should contain
       * @return an immutable set containing those elements, minus duplicates
       */
      // http://code.google.com/p/google-web-toolkit/issues/detail?id=3028
      @GwtCompatible(serializable = true)
      public static <E extends Enum<E>> ImmutableSet<E> immutableEnumSet(
          E anElement, E... otherElements) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
Back to top