Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 158 for InNetwork (0.19 sec)

  1. pilot/pkg/model/context.go

    // restricted by network (via ISTIO_META_REQUESTED_NETWORK_VIEW).
    // If not set, we assume that the proxy wants to see endpoints in any network.
    func (node *Proxy) GetView() ProxyView {
    	return newProxyView(node)
    }
    
    // InNetwork returns true if the proxy is on the given network, or if either
    // the proxy's network or the given network is unspecified ("").
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (1)
  2. pilot/pkg/serviceregistry/kube/controller/network.go

    type namedRangerEntry struct {
    	name    network.ID
    	network net.IPNet
    }
    
    // Network returns the IPNet for the network
    func (n namedRangerEntry) Network() net.IPNet {
    	return n.network
    }
    
    // onNetworkChange is fired if the default network is changed either via the namespace label or mesh-networks
    func (c *Controller) onNetworkChange() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 22:23:22 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  3. pkg/config/xds/filter_types.gen.go

    	_ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/filters/network/generic_proxy/matcher/v3"
    	_ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/filters/network/generic_proxy/router/v3"
    	_ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/filters/network/generic_proxy/v3"
    	_ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/filters/network/golang/v3alpha"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 02:48:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/kubelet/winstats/network_stats.go

    	"k8s.io/klog/v2"
    )
    
    const (
    	packetsReceivedPerSecondQuery = "\\Network Adapter(*)\\Packets Received/sec"
    	packetsSentPerSecondQuery     = "\\Network Adapter(*)\\Packets Sent/sec"
    	bytesReceivedPerSecondQuery   = "\\Network Adapter(*)\\Bytes Received/sec"
    	bytesSentPerSecondQuery       = "\\Network Adapter(*)\\Bytes Sent/sec"
    	packetsReceivedDiscardedQuery = "\\Network Adapter(*)\\Packets Received Discarded"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/ambient/workloads_test.go

    		})
    	}
    }
    
    func newAmbientUnitTest() *index {
    	return &index{
    		networkUpdateTrigger: krt.NewRecomputeTrigger(),
    		ClusterID:            testC,
    		Network: func(endpointIP string, labels labels.Instance) network.ID {
    			return testNW
    		},
    	}
    }
    
    var podReady = []v1.PodCondition{
    	{
    		Type:               v1.PodReady,
    		Status:             v1.ConditionTrue,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  10. OWNERS_ALIASES

        - marosset # Windows
        - mikezappa87 # Network
        - mrunalp # Node
        - msau42 # Storage
        - mwielgus # Autoscaling
        - rexagod # Instrumentation
        - saad-ali # Storage
        - sergeykanzhelev # Node
        - shaneutt # Network
        - soltysh # Apps, CLI
        - sttts # API Machinery
        - tallclair # Auth
        - thockin # Network
        - xing-yang # Storage
        - wojtek-t # Scalability
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 23:08:03 UTC 2024
    - 11.3K bytes
    - Viewed (0)
Back to top