Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 344 for InNetwork (0.2 sec)

  1. pkg/workloadapi/workload.proto

      // TODO: support this field
      string hostname = 21;
    
      // Network represents the network this workload is on. This may be elided for the default network.
      // A (network,address) pair makeup a unique key for a workload *at a point in time*.
      string network = 4;
    
      // Protocol that should be used to connect to this workload.
      TunnelProtocol tunnel_protocol = 5;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/endpoint_builder.go

    	"istio.io/istio/pkg/config/labels"
    	kubeUtil "istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/network"
    )
    
    // EndpointBuilder is a stateful IstioEndpoint builder with metadata used to build IstioEndpoint
    type EndpointBuilder struct {
    	controller controllerInterface
    
    	labels         labels.Instance
    	metaNetwork    network.ID
    	serviceAccount string
    	locality       model.Locality
    	tlsMode        string
    	workloadName   string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. src/net/interface.go

    var (
    	errInvalidInterface         = errors.New("invalid network interface")
    	errInvalidInterfaceIndex    = errors.New("invalid network interface index")
    	errInvalidInterfaceName     = errors.New("invalid network interface name")
    	errNoSuchInterface          = errors.New("no such network interface")
    	errNoSuchMulticastInterface = errors.New("no such multicast network interface")
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. src/net/lookup_test.go

    					if network == "ip4" || network == "ip" && v4Ok {
    						if len(v4Addrs) == 0 {
    							t.Errorf("DefaultResolver.LookupIP(%q, %q): no IPv4 addresses", network, host)
    						}
    					}
    					if network == "ip6" || network == "ip" && v6Ok {
    						if len(v6Addrs) == 0 {
    							t.Errorf("DefaultResolver.LookupIP(%q, %q): no IPv6 addresses", network, host)
    						}
    					}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  5. src/crypto/tls/tls.go

    // use [Dialer.DialContext] with NetDialer set to the desired dialer.
    func DialWithDialer(dialer *net.Dialer, network, addr string, config *Config) (*Conn, error) {
    	return dial(context.Background(), dialer, network, addr, config)
    }
    
    func dial(ctx context.Context, netDialer *net.Dialer, network, addr string, config *Config) (*Conn, error) {
    	if netDialer.Timeout != 0 {
    		var cancel context.CancelFunc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. src/net/tcpsock_posix.go

    	var ctrlCtxFn func(ctx context.Context, network, address string, c syscall.RawConn) error
    	if sl.ListenConfig.Control != nil {
    		ctrlCtxFn = func(ctx context.Context, network, address string, c syscall.RawConn) error {
    			return sl.ListenConfig.Control(network, address, c)
    		}
    	}
    	fd, err := internetSocket(ctx, sl.network, laddr, nil, syscall.SOCK_STREAM, proto, "listen", ctrlCtxFn)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:54:32 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. cmd/admin-server-info.go

    			}
    			_, present := network[nodeName]
    			if !present {
    				if err := isServerResolvable(endpoint, 5*time.Second); err == nil {
    					network[nodeName] = string(madmin.ItemOnline)
    				} else {
    					if xnet.IsNetworkOrHostDown(err, false) {
    						network[nodeName] = string(madmin.ItemOffline)
    					} else if xnet.IsNetworkOrHostDown(err, true) {
    						network[nodeName] = "connection attempt timedout"
    					}
    				}
    			}
    		}
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/ambient/workloads.go

    			network := a.Network(wle.Address, wle.Labels).String()
    			if wle.Network != "" {
    				network = wle.Network
    			}
    			w := &workloadapi.Workload{
    				Uid:                   a.generateServiceEntryUID(se.Namespace, se.Name, wle.Address),
    				Name:                  se.Name,
    				Namespace:             se.Namespace,
    				Network:               network,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  9. src/net/unixsock_posix.go

    	var ctrlCtxFn func(ctx context.Context, network, address string, c syscall.RawConn) error
    	if sl.ListenConfig.Control != nil {
    		ctrlCtxFn = func(ctx context.Context, network, address string, c syscall.RawConn) error {
    			return sl.ListenConfig.Control(network, address, c)
    		}
    	}
    	fd, err := unixSocket(ctx, sl.network, laddr, nil, "listen", ctrlCtxFn)
    	if err != nil {
    		return nil, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:54:32 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  10. cni/pkg/repair/netns.go

    				if v.IP.Equal(targetAddr) {
    					return true, nil
    				}
    			}
    		}
    	}
    	return false, fmt.Errorf("no interface has the address %s", targetAddr)
    }
    
    // getPodNetNs finds the network namespace for a given pod. There is not a great way to do this. Network namespaces live
    // under the procfs, /proc/<pid>/ns/net. In majority of cases, this is not used directly, but is rather bind mounted to
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 04:07:10 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top