Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 181 for sw_vers (0.25 sec)

  1. cmd/kubeadm/app/phases/controlplane/manifests_test.go

    				"--requestheader-allowed-names=front-proxy-client",
    				"--authorization-mode=Node,RBAC",
    				"--advertise-address=1.2.3.4",
    				fmt.Sprintf("--etcd-servers=https://127.0.0.1:%d", kubeadmconstants.EtcdListenClientPort),
    				"--etcd-cafile=" + filepath.Join(testCertsDir, "etcd/ca.crt"),
    				"--etcd-certfile=" + filepath.Join(testCertsDir, "apiserver-etcd-client.crt"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 14:43:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/verification/serializer/DependencyVerificationsXmlReaderTest.groovy

            true           | true
    
        }
    
        def "parses key servers"() {
            when:
            parse """<?xml version="1.0" encoding="UTF-8"?>
    <verification-metadata>
       <configuration>
          <key-servers>
             <key-server uri="https://pgp.key-server.io"/>
             <key-server uri="hkp://keys.openpgp.org"/>
          </key-servers>
       </configuration>
    </verification-metadata>
    """
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 10:13:31 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  3. istioctl/pkg/multixds/gather.go

    }
    
    var DefaultOptions = Options{
    	MessageWriter:     os.Stdout,
    	XdsViaAgents:      false,
    	XdsViaAgentsLimit: 0,
    }
    
    // RequestAndProcessXds merges XDS responses from 1 central or 1..N K8s cluster-based XDS servers
    // Deprecated This method makes multiple responses appear to come from a single control plane;
    // consider using AllRequestAndProcessXds or FirstRequestAndProcessXds
    // nolint: lll
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 08 08:38:19 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  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