Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for WEB (0.02 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    Consider the following example that copies files into a directory structure that a Java Servlet container can use to deliver a website:
    
    image::exploded-war-child-copy-spec-example.png[]
    
    This is not a straightforward copy as the `WEB-INF` directory and its subdirectories don't exist within the project, so they must be created during the copy.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
Back to top