Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 147 for IPV4 (0.09 sec)

  1. cmd/kube-proxy/app/server_test.go

    		extraConfig        string
    	}{
    		{
    			name:               "iptables mode, IPv4 all-zeros bind address",
    			mode:               "iptables",
    			bindAddress:        "0.0.0.0",
    			clusterCIDR:        "1.2.3.0/24",
    			healthzBindAddress: "1.2.3.4:12345",
    			metricsBindAddress: "2.3.4.5:23456",
    		},
    		{
    			name:               "iptables mode, non-zeros IPv4 config",
    			mode:               "iptables",
    			bindAddress:        "9.8.7.6",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  2. pkg/proxy/healthcheck/healthcheck_test.go

    	// Should return 200 "OK" after processing update for both IPv4 and IPv6 proxiers.
    	hs.Updated(v1.IPv4Protocol)
    	hs.Updated(v1.IPv6Protocol)
    	fakeClock.Step(5 * time.Second)
    	testHTTPHandler(hsTest, http.StatusOK, t)
    
    	// If IPv6 proxier is late for an update but IPv4 proxier is not then updating IPv4 proxier should have no effect.
    	hs.QueuedUpdate(v1.IPv6Protocol)
    	fakeClock.Step(25 * time.Second)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/endpoint_test.go

    				},
    				ClusterConfiguration: kubeadmapi.ClusterConfiguration{
    					ControlPlaneEndpoint: "cp.k8s.io:1234",
    				},
    			},
    			expectedEndpoint: "https://cp.k8s.io:1234",
    		},
    		{
    			name: "use ControlPlaneEndpoint (ipv4) if fully defined",
    			cfg: &kubeadmapi.InitConfiguration{
    				LocalAPIEndpoint: kubeadmapi.APIEndpoint{
    					BindPort:         4567,
    					AdvertiseAddress: "4.5.6.7",
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 23 03:19:26 UTC 2019
    - 10K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/preflight/checks_test.go

    			serviceCidr: "10.96.0.0/16,fda9:d324:354d:1::/112",
    			expStr:      []string{"FileContent--proc-sys-net-ipv4-ip_forward", "FileContent--proc-sys-net-ipv6-conf-default-forwarding"},
    		},
    		{
    			testName:    "single stack ipv4",
    			PodSubnet:   "10.244.0.0/16",
    			serviceCidr: "10.96.0.0/16",
    			expStr:      []string{"FileContent--proc-sys-net-ipv4-ip_forward"},
    		},
    		{
    			testName:    "single stack ipv6",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  5. src/net/listen_test.go

    		ln.Close()
    	}
    }
    
    var ipv4MulticastListenerTests = []struct {
    	net   string
    	gaddr *UDPAddr // see RFC 4727
    }{
    	{"udp", &UDPAddr{IP: IPv4(224, 0, 0, 254), Port: 12345}},
    
    	{"udp4", &UDPAddr{IP: IPv4(224, 0, 0, 254), Port: 12345}},
    }
    
    // TestIPv4MulticastListener tests both single and double listen to a
    // test listener with same address family, same group address and same
    // port.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  6. pkg/dns/client/dns_test.go

    	nt = proto.Clone(nt).(*dnsProto.NameTable)
    	d.BuildAlternateHosts(nt, func(althosts map[string]struct{}, ipv4 []netip.Addr, ipv6 []netip.Addr, _ []string) {
    		for host := range althosts {
    			if _, exists := nt.Table[host]; !exists {
    				addresses := make([]string, 0, len(ipv4)+len(ipv6))
    				for _, addr := range ipv4 {
    					addresses = append(addresses, addr.String())
    				}
    				for _, addr := range ipv6 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  7. pkg/proxy/apis/config/types.go

    	// serve on, defaulting to "0.0.0.0:10256" (if bindAddress is unset or IPv4), or
    	// "[::]:10256" (if bindAddress is IPv6).
    	HealthzBindAddress string
    	// metricsBindAddress is the IP address and port for the metrics server to serve
    	// on, defaulting to "127.0.0.1:10249" (if bindAddress is unset or IPv4), or
    	// "[::1]:10249" (if bindAddress is IPv6). (Set to "0.0.0.0:10249" / "[::]:10249"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 13K bytes
    - Viewed (0)
  8. pkg/proxy/servicechangetracker_test.go

    						Ingress: []v1.LoadBalancerIngress{
    							{IP: testExternalIPv4},
    							{IP: testExternalIPv6},
    						},
    					},
    				},
    			},
    		},
    		{
    			desc:     "service with ipv4 configurations under ipv4 mode",
    			ipFamily: v1.IPv4Protocol,
    
    			service: &v1.Service{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:      "validIPv4",
    					Namespace: "test",
    				},
    				Spec: v1.ServiceSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  9. src/net/dial_test.go

    		// Returns a slow IPv6 address, and a local IPv4 address.
    		return []IPAddr{
    			{IP: ParseIP(slowDst6)},
    			{IP: ParseIP("127.0.0.1")},
    		}, nil
    	default:
    		return fn(ctx, network, host)
    	}
    }
    
    func TestDialerFallbackDelay(t *testing.T) {
    	testenv.MustHaveExternalNetwork(t)
    
    	if !supportsIPv4() || !supportsIPv6() {
    		t.Skip("both IPv4 and IPv6 are required")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  10. cmd/kube-controller-manager/app/core.go

    	dualstack, _ := netutils.IsDualStackCIDRs(cidrs)
    
    	return cidrs, dualstack, nil
    }
    
    // setNodeCIDRMaskSizes returns the IPv4 and IPv6 node cidr mask sizes to the value provided
    // for --node-cidr-mask-size-ipv4 and --node-cidr-mask-size-ipv6 respectively. If value not provided,
    // then it will return default IPv4 and IPv6 cidr mask sizes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 39K bytes
    - Viewed (0)
Back to top