Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,601 for GetWork (0.18 sec)

  1. src/net/cgo_unix.go

    	default:
    		return 0, &DNSError{Err: "unknown network", Name: network + "/" + service}
    	}
    	switch ipVersion(network) {
    	case '4':
    		*_C_ai_family(&hints) = _C_AF_INET
    	case '6':
    		*_C_ai_family(&hints) = _C_AF_INET6
    	}
    
    	return doBlockingWithCtx(ctx, network+"/"+service, func() (int, error) {
    		return cgoLookupServicePort(&hints, network, service)
    	})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top