Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 344 for InNetwork (0.23 sec)

  1. pkg/bootstrap/testdata/tracing_opencensusagent_golden.json

            },
            "filter_chains": [
              {
                "filters": [
                  {
                    "name": "envoy.filters.network.http_connection_manager",
                    "typed_config": {
                      "@type": "type.googleapis.com/envoy.extensions.filters.network.http_connection_manager.v3.HttpConnectionManager",
                      "codec_type": "AUTO",
                      "stat_prefix": "stats",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. cluster/gce/windows/k8s-node-setup.psm1

      # The first network ("External") with hardcoded values in the script is just
      # a placeholder to create an external vSwitch. This is purely for convenience
      # to be able to remove/modify the actual HNS network ("cbr0") or rejoin the
      # nodes without a network blip. Creating a vSwitch takes time, causes network
      # blips, and it makes it more likely to hit the issue where flanneld is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  3. src/net/net_windows_test.go

    	//Connection Name:  Bluetooth Network Connection
    	//Network Adapter:  Bluetooth Device (Personal Area Network)
    	//Physical Address: N/A
    	//Transport Name:   Hardware not present
    	//
    	//Connection Name:  VMware Network Adapter VMnet8
    	//Network Adapter:  VMware Virtual Ethernet Adapter for VMnet8
    	//Physical Address: Disabled
    	//Transport Name:   Disconnected
    	//
    	want := make(map[string]string)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/serviceentry/conversion.go

    		Endpoint: &model.IstioEndpoint{
    			Address:         addr,
    			EndpointPort:    instancePort,
    			ServicePortName: servicePort.Name,
    
    			LegacyClusterPortKey: int(servicePort.Number),
    			Network:              network.ID(wle.Network),
    			Locality: model.Locality{
    				Label:     locality,
    				ClusterID: clusterID,
    			},
    			LbWeight:       wle.Weight,
    			Labels:         labels,
    			TLSMode:        tlsMode,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/extension/wasmplugin_test.go

    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	httpwasm "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/wasm/v3"
    	networkwasm "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/wasm/v3"
    	wasmextension "github.com/envoyproxy/go-control-plane/envoy/extensions/wasm/v3"
    	"github.com/google/go-cmp/cmp"
    	"google.golang.org/protobuf/testing/protocmp"
    	"google.golang.org/protobuf/types/known/anypb"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. src/net/ipsock.go

    // a call to ResolveTCPAddr, ResolveUDPAddr, or ResolveIPAddr.
    // IPv4 is preferred, unless addr contains an IPv6 literal.
    func (addrs addrList) forResolve(network, addr string) Addr {
    	var want6 bool
    	switch network {
    	case "ip":
    		// IPv6 literal (addr does NOT contain a port)
    		want6 = bytealg.CountString(addr, ':') > 0
    	case "tcp", "udp":
    		// IPv6 literal. (addr contains a port, so look for '[')
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  7. src/net/ip.go

    // IP addresses for IP addressing and routing.
    //
    // See type [IPNet] and func [ParseCIDR] for details.
    type IPMask []byte
    
    // An IPNet represents an IP network.
    type IPNet struct {
    	IP   IP     // network number
    	Mask IPMask // network mask
    }
    
    // IPv4 returns the IP address (in 16-byte form) of the
    // IPv4 address a.b.c.d.
    func IPv4(a, b, c, d byte) IP {
    	p := make(IP, IPv6len)
    	copy(p, v4InV6Prefix)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/listenertest/match.go

    			assert.Equal(t, want.NetworkFilters, haveNetwork, context("network filters should be equal"))
    		}
    		if want.HTTPFilters != nil {
    			assert.Equal(t, want.HTTPFilters, haveHTTP, context("http should be equal"))
    		}
    	} else {
    		if missing := sets.SortedList(sets.New(want.NetworkFilters...).Difference(sets.New(haveNetwork...))); len(missing) > 0 {
    			t.Fatalf("%v/%v: missing network filters: %v, have %v", have.Name, haveType, missing, haveNetwork)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. cni/pkg/constants/constants.go

    	MountedCNINetDir     = "mounted-cni-net-dir"
    	CNINetDir            = "cni-net-dir"
    	CNIConfName          = "cni-conf-name"
    	ChainedCNIPlugin     = "chained-cni-plugin"
    	CNINetworkConfigFile = "cni-network-config-file"
    	CNINetworkConfig     = "cni-network-config"
    	LogLevel             = "log-level"
    	KubeconfigFilename   = "kubecfg-file-name"
    	KubeconfigMode       = "kubeconfig-mode"
    	KubeCAFile           = "kube-ca-file"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. cni/test/testdata/pre/calico.conflist

    {
      "cniVersion": "0.3.1",
      "name": "k8s-pod-network",
      "plugins": [
        {
          "etcd_endpoints": "http://10.110.0.136:6666",
          "ipam": {
            "type": "calico-ipam"
          },
          "kubernetes": {
            "kubeconfig": "/etc/cni/net.d/calico-kubeconfig"
          },
          "mtu": 1500,
          "plugin_log_level": "info",
          "policy": {
            "type": "k8s"
          },
          "type": "calico"
        },
        {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 528 bytes
    - Viewed (0)
Back to top