Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 344 for InNetwork (0.13 sec)

  1. internal/http/dial_linux.go

    import (
    	"context"
    	"net"
    	"syscall"
    	"time"
    
    	"github.com/minio/minio/internal/deadlineconn"
    	"golang.org/x/sys/unix"
    )
    
    func setTCPParametersFn(opts TCPOptions) func(network, address string, c syscall.RawConn) error {
    	return func(network, address string, c syscall.RawConn) error {
    		c.Control(func(fdPtr uintptr) {
    			// got socket file descriptor to set parameters.
    			fd := int(fdPtr)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 4.8K bytes
    - Viewed (3)
  2. cni/pkg/install/cniconfig.go

    		// Assume it is a regular network conf file
    		delete(existingMap, "cniVersion")
    
    		plugins := make([]map[string]any, 2)
    		plugins[0] = existingMap
    		plugins[1] = istioMap
    
    		newMap = map[string]any{
    			"name":       "k8s-pod-network",
    			"cniVersion": "0.3.1",
    			"plugins":    plugins,
    		}
    	} else {
    		// Assume it is a network list file
    		newMap = existingMap
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. pilot/pkg/xds/endpoints/ep_filters_test.go

    		{Cluster: "cluster1a"}: {
    			{Network: "network1", Address: "10.0.0.1"},
    			{Network: "network1", Address: "foo.bar"}, // endpoint generated from ServiceEntry
    			{
    				Network: "network1", Address: "10.0.0.3", // endpoint when using HBONE
    				Labels: map[string]string{model.TunnelLabel: model.TunnelHTTP},
    			},
    		},
    		{Cluster: "cluster1b"}: {
    			{Network: "network1", Address: "10.0.0.2"},
    		},
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  4. src/net/net.go

    	"time"
    	_ "unsafe" // for linkname
    )
    
    // Addr represents a network end point address.
    //
    // The two methods [Addr.Network] and [Addr.String] conventionally return strings
    // that can be passed as the arguments to [Dial], but the exact form
    // and meaning of the strings is up to the implementation.
    type Addr interface {
    	Network() string // name of the network (for example, "tcp", "udp")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  5. pkg/test/framework/components/cluster/config.go

    package cluster
    
    import (
    	"istio.io/istio/pkg/test/framework/config"
    )
    
    type Config struct {
    	Name               string     `yaml:"clusterName,omitempty"`
    	Network            string     `yaml:"network,omitempty"`
    	HTTPProxy          string     `yaml:"httpProxy,omitempty"`
    	ProxyKubectlOnly   bool       `yaml:"proxyKubectlOnly,omitempty"`
    	PrimaryClusterName string     `yaml:"primaryClusterName,omitempty"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/deploymentcontroller_test.go

    			name: "waypoint",
    			gw: k8sbeta.Gateway{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:      "namespace",
    					Namespace: "default",
    					Labels: map[string]string{
    						"topology.istio.io/network": "network-1", // explicitly set network won't be overwritten
    					},
    				},
    				Spec: k8s.GatewaySpec{
    					GatewayClassName: constants.WaypointGatewayClassName,
    					Listeners: []k8s.Listener{{
    						Name:     "mesh",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  7. pkg/test/framework/components/cluster/clusters.go

    	}
    	sort.Strings(out)
    	return out
    }
    
    // ByNetwork returns a map of network name to a subset of clusters
    func (c Clusters) ByNetwork() ClustersByNetwork {
    	out := make(ClustersByNetwork)
    	for _, cc := range c {
    		out[cc.NetworkName()] = append(out[cc.NetworkName()], cc)
    	}
    	return out
    }
    
    // Networks returns the list of network names for the clusters.
    func (c Clusters) Networks() []string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_sandbox.go

    	podIPs := make([]string, 0)
    	if podSandbox.Network == nil {
    		klog.InfoS("Pod Sandbox status doesn't have network information, cannot report IPs", "pod", klog.KRef(podNamespace, podName))
    		return podIPs
    	}
    
    	// ip could be an empty string if runtime is not responsible for the
    	// IP (e.g., host networking).
    
    	// pick primary IP
    	if len(podSandbox.Network.Ip) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  9. src/internal/poll/fd_unix.go

    	// message based socket connection.
    	ZeroReadIsEOF bool
    
    	// Whether this is a file rather than a network socket.
    	isFile bool
    }
    
    // Init initializes the FD. The Sysfd field should already be set.
    // This can be called multiple times on a single FD.
    // The net argument is a network name from the net package (e.g., "tcp"),
    // or "file".
    // Set pollable to true if fd should be managed by runtime netpoll.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 04:09:44 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  10. manifests/charts/istio-control/istio-discovery/files/waypoint.yaml

              value: "{{ valueOrDefault .Values.global.multiCluster.clusterName `Kubernetes` }}"
            {{- $network := valueOrDefault (index .InfrastructureLabels `topology.istio.io/network`) .Values.global.network }}
            {{- if $network }}
            - name: ISTIO_META_NETWORK
              value: "{{ $network }}"
            {{- end }}
            - name: ISTIO_META_INTERCEPTION_MODE
              value: REDIRECT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 22:41:03 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top