Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,601 for GetWork (0.33 sec)

  1. tests/integration/pilot/workloadentry_test.go

    				t.Skip("must have an east-west for each network")
    			}
    
    			// we have an imaginary network for each network called {name}-manual-discovery
    			gwTmpl := `
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      name: remote-gateway-manual-discovery-%s
      labels:
        topology.istio.io/network: "%s-manual-discovery"
    spec:
      gatewayClassName: istio-remote
      addresses:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. src/net/iprawsock_posix.go

    	network, proto, err := parseNetwork(ctx, sd.network, true)
    	if err != nil {
    		return nil, err
    	}
    	switch network {
    	case "ip", "ip4", "ip6":
    	default:
    		return nil, UnknownNetworkError(sd.network)
    	}
    	ctrlCtxFn := sd.Dialer.ControlContext
    	if ctrlCtxFn == nil && sd.Dialer.Control != nil {
    		ctrlCtxFn = func(ctx context.Context, network, address string, c syscall.RawConn) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:54:32 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. src/net/dial.go

    		}
    		return network, 0, nil
    	}
    	afnet = network[:i]
    	switch afnet {
    	case "ip", "ip4", "ip6":
    		protostr := network[i+1:]
    		proto, i, ok := dtoi(protostr)
    		if !ok || i != len(protostr) {
    			proto, err = lookupProtocol(ctx, protostr)
    			if err != nil {
    				return "", 0, err
    			}
    		}
    		return afnet, proto, nil
    	}
    	return "", 0, UnknownNetworkError(network)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  4. src/net/iprawsock.go

    // IP addresses.
    //
    // See func [Dial] for a description of the network and address
    // parameters.
    func ResolveIPAddr(network, address string) (*IPAddr, error) {
    	if network == "" { // a hint wildcard for Go 1.0 undocumented behavior
    		network = "ip"
    	}
    	afnet, _, err := parseNetwork(context.Background(), network, false)
    	if err != nil {
    		return nil, err
    	}
    	switch afnet {
    	case "ip", "ip4", "ip6":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. guava/src/com/google/common/graph/Graphs.java

      /**
       * Returns a view of {@code network} with the direction (if any) of every edge reversed. All other
       * properties remain intact, and further updates to {@code network} will be reflected in the view.
       */
      public static <N, E> Network<N, E> transpose(Network<N, E> network) {
        if (!network.isDirected()) {
          return network; // the transpose of an undirected network is an identical network
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  6. src/net/udpsock.go

    //
    // See func Dial for a description of the network and address
    // parameters.
    func ResolveUDPAddr(network, address string) (*UDPAddr, error) {
    	switch network {
    	case "udp", "udp4", "udp6":
    	case "": // a hint wildcard for Go 1.0 undocumented behavior
    		network = "udp"
    	default:
    		return nil, UnknownNetworkError(network)
    	}
    	addrs, err := DefaultResolver.internetAddrList(context.Background(), network, address)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 16:58:25 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/serviceentry/workloadentry.go

    import (
    	networking "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pkg/network"
    )
    
    // return the mesh network for the workload entry. Empty string if not found.
    func (s *Controller) workloadEntryNetwork(wle *networking.WorkloadEntry) network.ID {
    	if s == nil {
    		return ""
    	}
    	// 1. first check the wle.Network
    	if wle.Network != "" {
    		return network.ID(wle.Network)
    	}
    
    	// 2. fall back to the passed in getNetworkCb func.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 11 03:34:47 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  8. pilot/pkg/xds/mesh_network_test.go

    				{sa: "foo", network: "network-1", address: "1.2.3.4", version: "v1"},
    				// same network, no address is ignored and doesn't affect weight
    				{sa: "foo", network: "network-1", address: "", version: "vj"},
    				// these will me merged giving the remote gateway a weight of 2
    				{sa: "foo", network: "network-2", address: "", version: "v1"},
    				{sa: "foo", network: "network-2", address: "", version: "v1"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  9. src/net/platform_test.go

    // testableListenArgs reports whether arguments are testable on the
    // current platform configuration.
    func testableListenArgs(network, address, client string) bool {
    	if !testableNetwork(network) || !testableAddress(network, address) {
    		return false
    	}
    
    	var err error
    	var addr Addr
    	switch net, _, _ := strings.Cut(network, ":"); net {
    	case "tcp", "tcp4", "tcp6":
    		addr, err = ResolveTCPAddr("tcp", address)
    	case "udp", "udp4", "udp6":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. releasenotes/notes/47574.yaml

    - |
      **Added** support for automatically set default network to Ambient workloads if they are added to the Ambient before the network topology is set.
      Before, when you set `topology.istio.io/network` on your Istio root namespace, you need to manually rollout the Ambient workloads to make the network change take effect. 
      Now, the network of Ambient workloads will be automatically updated even if they do not have a network label.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 22 06:59:24 UTC 2023
    - 733 bytes
    - Viewed (0)
Back to top