Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 211 for semver (0.13 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

              "type": "array",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

         * protocols. The http/1.1 transport will never be dropped.
         *
         * If multiple protocols are specified, [ALPN][alpn] will be used to negotiate a transport.
         * Protocol negotiation is only attempted for HTTPS URLs.
         *
         * [Protocol.HTTP_1_0] is not supported in this set. Requests are initiated with `HTTP/1.1`. If
         * the server responds with `HTTP/1.0`, that will be exposed by [Response.protocol].
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  3. tensorflow/c/c_api.h

    // In-process TensorFlow server functionality, for use in distributed training.
    // A Server instance encapsulates a set of devices and a Session target that
    // can participate in distributed training. A server belongs to a cluster
    // (specified by a ClusterSpec), and corresponds to a particular task in a
    // named job. The server can communicate with any other server in the same
    // cluster.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  4. pkg/kubelet/server/server_test.go

    }
    
    type serverTestFramework struct {
    	serverUnderTest *Server
    	fakeKubelet     *fakeKubelet
    	fakeAuth        *fakeAuth
    	testHTTPServer  *httptest.Server
    }
    
    func newServerTest() *serverTestFramework {
    	return newServerTestWithDebug(true, nil)
    }
    
    func newServerTestWithDebug(enableDebugging bool, streamingServer streaming.Server) *serverTestFramework {
    	kubeCfg := &kubeletconfiginternal.KubeletConfiguration{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  5. pkg/volume/csi/csi_mounter_test.go

    			vol, ok := pubs[csiMounter.volumeID]
    			if !ok {
    				t.Error("csi server may not have received NodePublishVolume call")
    			}
    			if vol.Path != csiMounter.GetPath() {
    				t.Errorf("csi server expected path %s, got %s", csiMounter.GetPath(), vol.Path)
    			}
    			if !reflect.DeepEqual(vol.MountFlags, expectedMountOptions) {
    				t.Errorf("csi server expected mount options %v, got %v", expectedMountOptions, vol.MountFlags)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  6. tensorflow/c/eager/c_api_test.cc

    // This test verifies the following:
    // 1. Start the GRPC server for worker 1 using single host server def A with
    //    only worker 1.
    // 2. Create a context B using A.
    // 3. Create the variable in B.
    // 4. Create another single host server def C with only worker 0.
    // 5. Start the GRPC server for worker 0 using C.
    // 6. Create a context D using the full cluster server def E.
    // 7. Read the variable in D.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 20:50:20 UTC 2023
    - 94.6K bytes
    - Viewed (0)
  7. src/net/http/transport.go

    //	------------------------------    -------------------------
    //	|http|foo.com                     http directly to server, no proxy
    //	|https|foo.com                    https directly to server, no proxy
    //	|https,h1|foo.com                 https directly to server w/o HTTP/2, no proxy
    //	http://proxy.com|https|foo.com    http to proxy, then CONNECT to foo.com
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  8. src/crypto/tls/conn.go

    	serverName string
    	// secureRenegotiation is true if the server echoed the secure
    	// renegotiation extension. (This is meaningless as a server because
    	// renegotiation is not supported in that case.)
    	secureRenegotiation bool
    	// ekm is a closure for exporting keying material.
    	ekm func(label string, context []byte, length int) ([]byte, error)
    	// resumptionSecret is the resumption_master_secret for handling
    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. CHANGELOG/CHANGELOG-1.31.md

    ### Server Binaries
    
    filename | sha512 hash
    -------- | -----------
    [kubernetes-server-linux-amd64.tar.gz](https://dl.k8s.io/v1.31.0-alpha.1/kubernetes-server-linux-amd64.tar.gz) | 55b2c9cacb14c2a7b657079e1b2620c0580e3a01d91b0bd3f1e8b1a70e4bb59c4c361eb8aad425734fd579d6e944aedc7695082cb640a3af902dff623a565714
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  10. src/net/http/client_test.go

    	}
    
    	var first string
    	select {
    	case first = <-saw:
    	default:
    		t.Fatal("server didn't see a request")
    	}
    
    	var second string
    	select {
    	case second = <-saw:
    	default:
    		t.Fatal("server didn't see a second request")
    	}
    
    	if first != second {
    		t.Fatal("server saw different client ports before & after the redirect")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
Back to top