Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 298 for sw_vers (0.1 sec)

  1. doc/godebug.md

    Go 1.22 changed the default minimum TLS version supported by both servers
    and clients to TLS 1.2. The default can be reverted to TLS 1.0 using the
    [`tls10server` setting](/pkg/crypto/tls/#Config).
    
    Go 1.22 changed the default TLS cipher suites used by clients and servers when
    not explicitly configured, removing the cipher suites which used RSA based key
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  2. cluster/addons/volumesnapshots/crd/snapshot.storage.k8s.io_volumesnapshots.yaml

                  type: string
                kind:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 26 07:24:12 UTC 2022
    - 20.9K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/FastFallbackTest.kt

    import org.opentest4j.TestAbortedException
    
    /**
     * This test binds two different web servers (IPv4 and IPv6) to the same port, but on different
     * local IP addresses. Requests made to `127.0.0.1` will reach the IPv4 server, and requests made to
     * `::1` will reach the IPv6 server.
     *
     * By orchestrating two different servers with the same port but different IP addresses, we can
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/controlplane/manifests.go

    	}
    
    	command := []string{"kube-apiserver"}
    
    	// If the user set endpoints for an external etcd cluster
    	if cfg.Etcd.External != nil {
    		defaultArguments = kubeadmapi.SetArgValues(defaultArguments, "etcd-servers", strings.Join(cfg.Etcd.External.Endpoints, ","), 1)
    
    		// Use any user supplied etcd certificates
    		if cfg.Etcd.External.CAFile != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 14:43:47 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  5. src/net/tcpsock_test.go

    	// Setup P client/server connections.
    	clients := make([]Conn, P)
    	servers := make([]Conn, P)
    	ln, err := Listen("tcp", laddr)
    	if err != nil {
    		b.Fatal(err)
    	}
    	defer ln.Close()
    	done := make(chan bool)
    	go func() {
    		for p := 0; p < P; p++ {
    			s, err := ln.Accept()
    			if err != nil {
    				b.Error(err)
    				return
    			}
    			servers[p] = s
    		}
    		done <- true
    	}()
    	for p := 0; p < P; p++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  6. cluster/addons/volumesnapshots/crd/snapshot.storage.k8s.io_volumesnapshotcontents.yaml

                  type: string
                kind:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 26 07:24:12 UTC 2022
    - 25.6K bytes
    - Viewed (0)
  7. src/test/java/jcifs/tests/SessionTest.java

    import jcifs.smb.SmbSessionInternal;
    import jcifs.smb.SmbTransportInternal;
    import jcifs.smb.SmbTreeHandleInternal;
    
    
    /**
     * 
     * 
     * 
     * Compatability Notes:
     * - Windows (2k8, 2k12) servers do not like extended security + DOS error codes
     * 
     * @author mbechler
     *
     */
    @RunWith ( Parameterized.class )
    @SuppressWarnings ( {
        "javadoc", "deprecation"
    } )
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:09:03 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/genericapiserver.go

    	// it exists primarily to avoid returning a 404 response when a resource actually exists but we haven't installed the path to a handler.
    	// it is exposed for easier composition of the individual servers.
    	// the primary users of this field are the WithMuxCompleteProtection filter and the NotFoundHandler
    	muxAndDiscoveryCompleteSignals map[string]<-chan struct{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 42.9K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__authentication.k8s.io__v1_openapi.json

            "properties": {
              "apiVersion": {
                "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
                "type": "string"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 41.5K bytes
    - Viewed (0)
  10. src/net/conf_test.go

    	}
    	if err := f.Close(); err != nil {
    		t.Fatal(err)
    	}
    	return parseNSSConfFile(f.Name())
    }
    
    // represents a dnsConfig returned by parsing a nonexistent resolv.conf
    var defaultResolvConf = &dnsConfig{
    	servers:  defaultNS,
    	ndots:    1,
    	timeout:  5,
    	attempts: 2,
    	err:      fs.ErrNotExist,
    }
    
    func TestConfHostLookupOrder(t *testing.T) {
    	// These tests are written for a system with cgo available,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:46:36 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top