Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,594 for InNetwork (0.13 sec)

  1. pilot/pkg/serviceregistry/kube/controller/ambient/helpers.go

    		return nil, fmt.Errorf("parse %v: %v", vip, err)
    	}
    	return &workloadapi.NetworkAddress{
    		Network: a.Network(vip, make(labels.Instance, 0)).String(),
    		Address: ip.AsSlice(),
    	}, nil
    }
    
    func (a *index) toNetworkAddressFromIP(ip netip.Addr) *workloadapi.NetworkAddress {
    	return &workloadapi.NetworkAddress{
    		Network: a.Network(ip.String(), make(labels.Instance, 0)).String(),
    		Address: ip.AsSlice(),
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 22 20:35:23 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/util/util_test.go

    			expected: &runtimeapi.NamespaceOption{
    				Ipc:     runtimeapi.NamespaceMode_POD,
    				Network: runtimeapi.NamespaceMode_POD,
    				Pid:     runtimeapi.NamespaceMode_CONTAINER,
    			},
    		},
    		"v1.Pod default namespaces": {
    			input: &v1.Pod{},
    			expected: &runtimeapi.NamespaceOption{
    				Ipc:     runtimeapi.NamespaceMode_POD,
    				Network: runtimeapi.NamespaceMode_POD,
    				Pid:     runtimeapi.NamespaceMode_CONTAINER,
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 23:14:48 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  3. 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)
  4. istioctl/pkg/authz/testdata/configdump.yaml

                "type_url": "type.googleapis.com/io.istio.network.authn.Config",
                "value": {
                 "shared": true
                }
               }
              },
              {
               "name": "envoy.filters.network.http_connection_manager",
               "typed_config": {
                "@type": "type.googleapis.com/envoy.extensions.filters.network.http_connection_manager.v3.HttpConnectionManager",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 21 14:20:23 UTC 2023
    - 206.7K bytes
    - Viewed (1)
  5. cluster/gce/list-resources.sh

    # List network resources. We include names starting with "a", corresponding to
    # those that Kubernetes creates.
    gcloud-list compute addresses "${REGION:+"region=(${REGION}) AND "}name ~ 'a.*|${INSTANCE_PREFIX}.*'"
    # Match either the header or a line with the specified e2e network.
    # This assumes that the network name is the second field in the output.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 27 15:44:25 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  6. src/net/file_wasip1_test.go

    		net, err := fileConnNet(test.filetype)
    		if net != test.network {
    			t.Errorf("fileConnNet: network mismatch: want=%q got=%q", test.network, net)
    		}
    		if err != test.error {
    			t.Errorf("fileConnNet: error mismatch: want=%v got=%v", test.error, err)
    		}
    	}
    }
    
    func TestWasip1FileListenNet(t *testing.T) {
    	tests := []struct {
    		filetype syscall.Filetype
    		network  string
    		error    error
    	}{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 13 21:06:56 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  7. src/net/rawconn_windows_test.go

    		return err
    	}
    	return operr
    }
    
    func controlOnConnSetup(network string, address string, c syscall.RawConn) error {
    	var operr error
    	var fn func(uintptr)
    	switch network {
    	case "tcp", "udp", "ip":
    		return errors.New("ambiguous network: " + network)
    	default:
    		switch network[len(network)-1] {
    		case '4':
    			fn = func(s uintptr) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 18 08:47:18 UTC 2020
    - 3.1K bytes
    - Viewed (0)
  8. pkg/apis/networking/OWNERS

    # See the OWNERS docs at https://go.k8s.io/owners
    
    approvers:
      - sig-network-api-approvers
    reviewers:
      - sig-network-api-reviewers
    labels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 10 02:31:26 UTC 2021
    - 157 bytes
    - Viewed (0)
  9. pkg/kubelet/network/OWNERS

    # See the OWNERS docs at https://go.k8s.io/owners
    
    approvers:
      - sig-network-approvers
    emeritus_approvers:
      - matchstick
    reviewers:
      - sig-network-reviewers
    labels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 18 15:29:38 UTC 2023
    - 184 bytes
    - Viewed (0)
  10. cmd/kube-proxy/OWNERS

    # See the OWNERS docs at https://go.k8s.io/owners
    
    reviewers:
      - sig-network-reviewers
    approvers:
      - sig-network-approvers
    labels:
      - sig/network
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 18 15:29:38 UTC 2023
    - 169 bytes
    - Viewed (0)
Back to top