Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 181 for sw_vers (0.19 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/storage/storage_factory.go

    }
    
    func backends(storageConfig storagebackend.Config, grOverrides map[schema.GroupResource]groupResourceOverrides) []Backend {
    	servers := sets.NewString(storageConfig.Transport.ServerList...)
    
    	for _, overrides := range grOverrides {
    		servers.Insert(overrides.etcdLocation...)
    	}
    
    	tlsConfig := &tls.Config{
    		InsecureSkipVerify: true,
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 13:35:58 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/ingress/conversion.go

    			continue
    		}
    		// TODO validation when multiple wildcard tls secrets are given
    		if len(tls.Hosts) == 0 {
    			tls.Hosts = []string{"*"}
    		}
    		gateway.Servers = append(gateway.Servers, &networking.Server{
    			Port: &networking.Port{
    				Number:   443,
    				Protocol: string(protocol.HTTPS),
    				Name:     fmt.Sprintf("https-443-ingress-%s-%s-%d", ingress.Name, ingress.Namespace, i),
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 25 07:19:43 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  3. docs/en/docs/deployment/https.md

    ### DNS
    
    Now let's focus on all the actual HTTPS parts.
    
    First, the browser would check with the **DNS servers** what is the **IP for the domain**, in this case, `someapp.example.com`.
    
    The DNS servers would tell the browser to use some specific **IP address**. That would be the public IP address used by your server, that you configured in the DNS servers.
    
    <img src="/img/deployment/https/https01.svg">
    
    ### TLS Handshake Start
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 16:31:18 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. src/net/smtp/smtp.go

    	c.ext = nil
    	_, _, err := c.cmd(250, "HELO %s", c.localName)
    	return err
    }
    
    // ehlo sends the EHLO (extended hello) greeting to the server. It
    // should be the preferred greeting for servers that support it.
    func (c *Client) ehlo() error {
    	_, msg, err := c.cmd(250, "EHLO %s", c.localName)
    	if err != nil {
    		return err
    	}
    	ext := make(map[string]string)
    	extList := strings.Split(msg, "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/ConnectionSpec.kt

     * selection to the underlying SSL socket.
     *
     * The configuration of each spec changes with each OkHttp release. This is annoying: upgrading
     * your OkHttp library can break connectivity to certain web servers! But itโ€™s a necessary annoyance
     * because the TLS ecosystem is dynamic and staying up to date is necessary to stay secure. See
     * [OkHttp's TLS Configuration History][tls_history] to track these changes.
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. docs/de/docs/advanced/behind-a-proxy.md

    ```JSON hl_lines="4-8"
    {
        "openapi": "3.1.0",
        // Hier mehr Einstellungen
        "servers": [
            {
                "url": "/api/v1"
            }
        ],
        "paths": {
                // Hier mehr Einstellungen
        }
    }
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:30:07 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. src/expvar/expvar_test.go

    	// Such pattern is used in net/http and net/rpc.
    
    	b.StopTimer()
    
    	P := runtime.GOMAXPROCS(0)
    	N := b.N / P
    	W := 1000
    
    	// Setup P client/server connections.
    	clients := make([]net.Conn, P)
    	servers := make([]net.Conn, P)
    	ln, err := net.Listen("tcp", "127.0.0.1:0")
    	if err != nil {
    		b.Fatalf("Listen failed: %v", err)
    	}
    	defer ln.Close()
    	done := make(chan bool, 1)
    	go func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:46:19 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. cluster/gce/gci/configure-kubeapiserver.sh

          exit 1
      fi
    
      if [[ -z "${ETCD_SERVERS:-}" ]]; then
        params_ref+=" --etcd-servers-overrides=${ETCD_SERVERS_OVERRIDES:-/events#http://127.0.0.1:4002}"
      elif [[ -n "${ETCD_SERVERS_OVERRIDES:-}" ]]; then
        params_ref+=" --etcd-servers-overrides=${ETCD_SERVERS_OVERRIDES:-}"
      fi
    
      if [[ -n "${STORAGE_BACKEND:-}" ]]; then
        params_ref+=" --storage-backend=${STORAGE_BACKEND}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  9. pkg/proxy/ipvs/graceful_termination_test.go

    				t.Errorf("unexpected error")
    			}
    
    			if !reflect.DeepEqual(ipvs, test.expectedIPVS) {
    				t.Logf("actual: %+v", ipvs)
    				t.Logf("expected : %+v", test.expectedIPVS)
    				t.Errorf("unexpected IPVS servers")
    			}
    		})
    	}
    }
    
    func Test_RaceTerminateRSList(t *testing.T) {
    	ipvs := utilipvstest.NewFake()
    	gracefulTerminationManager := NewGracefulTerminationManager(ipvs)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 11K bytes
    - Viewed (0)
  10. docs/en/docs/deployment/concepts.md

    If you are paying for 3 servers but you are using only a little bit of their RAM and CPU, you are probably **wasting money** ๐Ÿ’ธ, and probably **wasting server electric power** ๐ŸŒŽ, etc.
    
    In that case, it could be better to have only 2 servers and use a higher percentage of their resources (CPU, memory, disk, network bandwidth, etc).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 18K bytes
    - Viewed (0)
Back to top