Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 48 for DualStack (0.6 sec)

  1. cni/pkg/plugin/plugin_test.go

    	if len(mockIntercept.lastRedirect) == 0 {
    		t.Fatalf("expected nsenterFunc to be called")
    	}
    	r := mockIntercept.lastRedirect[len(mockIntercept.lastRedirect)-1]
    	if !r.dualStack {
    		t.Fatalf("expect dualStack is true, actual %v", r.dualStack)
    	}
    }
    
    func Test_dedupPorts(t *testing.T) {
    	type args struct {
    		ports []string
    	}
    	tests := []struct {
    		name string
    		args args
    		want []string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  2. src/net/external_test.go

    }
    
    var dialGoogleTests = []struct {
    	dial               func(string, string) (Conn, error)
    	unreachableNetwork string
    	networks           []string
    	addrs              []string
    }{
    	{
    		dial:     (&Dialer{DualStack: true}).Dial,
    		networks: []string{"tcp", "tcp4", "tcp6"},
    		addrs:    []string{"www.google.com:http"},
    	},
    	{
    		dial:               Dial,
    		unreachableNetwork: "tcp6",
    		networks:           []string{"tcp", "tcp4"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/config.go

    	IPFamilies string
    
    	// IPFamilyPolicy. This is optional field. Mainly is used for dual stack testing.
    	IPFamilyPolicy string
    
    	DualStack bool
    
    	// ServiceWaypointProxy specifies if this workload should have an associated Waypoint for service-addressed traffic
    	ServiceWaypointProxy string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. tools/istio-iptables/pkg/constants/constants.go

    	IptablesProbePort         = "iptables-probe-port"
    	ProbeTimeout              = "probe-timeout"
    	RedirectDNS               = "redirect-dns"
    	DropInvalid               = "drop-invalid"
    	DualStack                 = "dual-stack"
    	CaptureAllDNS             = "capture-all-dns"
    	NetworkNamespace          = "network-namespace"
    	CNIMode                   = "cni-mode"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 01:42:30 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. pkg/proxy/winkernel/testing/hcnutils_mock.go

    	return hcnObj.supportedFeatures
    }
    
    func (hcnObj HcnMock) Ipv6DualStackSupported() error {
    	if hcnObj.supportedFeatures.IPv6DualStack {
    		return nil
    	}
    	return errors.New("IPV6 DualStack Not Supported")
    }
    
    func (hcnObj HcnMock) DsrSupported() error {
    	if hcnObj.supportedFeatures.DSR {
    		return nil
    	}
    	return errors.New("DSR Not Supported")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 18 06:29:01 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  6. src/net/dial.go

    	LocalAddr Addr
    
    	// DualStack previously enabled RFC 6555 Fast Fallback
    	// support, also known as "Happy Eyeballs", in which IPv4 is
    	// tried soon if IPv6 appears to be misconfigured and
    	// hanging.
    	//
    	// Deprecated: Fast Fallback is enabled by default. To
    	// disable, set FallbackDelay to a negative value.
    	DualStack bool
    
    	// FallbackDelay specifies the length of time to wait before
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  7. src/net/mockserver_test.go

    			lns = append(lns, ln)
    		}
    		if len(lns) != len(args) {
    			for _, ln := range lns {
    				ln.Close()
    			}
    			continue
    		}
    		return lns, nil
    	}
    	return nil, errors.New("no dualstack port available")
    }
    
    type localServer struct {
    	lnmu sync.RWMutex
    	Listener
    	done chan bool // signal that indicates server stopped
    	cl   []Conn    // accepted connection list
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/common/deployment/echos.go

    			IPFamilyPolicy:  "RequireDualStack",
    			DualStack:       true,
    		}
    		eSvc := echo.Config{
    			Service:         ESvc,
    			ServiceAccount:  true,
    			Ports:           ports.All(),
    			Subsets:         []echo.SubsetConfig{{}},
    			IncludeExtAuthz: c.IncludeExtAuthz,
    			IPFamilies:      "IPv6",
    			IPFamilyPolicy:  "SingleStack",
    			DualStack:       true,
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 16K bytes
    - Viewed (0)
  9. pkg/bootstrap/option/instances.go

    func Wildcard(value WildcardValue) Instance {
    	return newOption("wildcard", value)
    }
    
    func AdditionalWildCard(value WildcardValue) Instance {
    	return newOption("additional_wildcard", value)
    }
    
    func DualStack(value bool) Instance {
    	return newOption("dual_stack", value)
    }
    
    func DNSLookupFamily(value DNSLookupFamilyValue) Instance {
    	return newOption("dns_lookup_family", value)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/cluster_builder_test.go

    		discovery      cluster.Cluster_DiscoveryType
    		proxy          *model.Proxy
    		dualStack      bool
    		expectedFamily cluster.Cluster_DnsLookupFamily
    	}{
    		{
    			name:           "all ipv4, dual stack disabled",
    			clusterName:    "foo",
    			discovery:      cluster.Cluster_STRICT_DNS,
    			proxy:          getProxy(),
    			dualStack:      false,
    			expectedFamily: cluster.Cluster_V4_ONLY,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
Back to top