Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/verification/serializer/DependencyVerificationsXmlWriterTest.groovy

    <verification-metadata>
       <configuration>
          <verify-metadata>true</verify-metadata>
          <verify-signatures>false</verify-signatures>
          <key-servers>
             <key-server uri="https://pgp.key-server.io"/>
             <key-server uri="hkp://keys.openpgp.org"/>
          </key-servers>
       </configuration>
       <components/>
    </verification-metadata>
    """
            and:
            validateAgainstSchemasSince("1.3")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 13:40:00 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  2. fastapi/openapi/models.py

        callbacks: Optional[Dict[str, Union[Dict[str, "PathItem"], Reference]]] = None
        deprecated: Optional[bool] = None
        security: Optional[List[Dict[str, List[str]]]] = None
        servers: Optional[List[Server]] = None
    
    
    class PathItem(BaseModelWithConfig):
        ref: Optional[str] = Field(default=None, alias="$ref")
        summary: Optional[str] = None
        description: Optional[str] = None
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 22:49:33 UTC 2024
    - 15K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top