Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,601 for GetWork (0.18 sec)

  1. pilot/pkg/xds/endpoints/ep_filters.go

    	"istio.io/istio/pkg/config/labels"
    	"istio.io/istio/pkg/maps"
    	"istio.io/istio/pkg/network"
    )
    
    // EndpointsByNetworkFilter is a network filter function to support Split Horizon EDS - filter the endpoints based on the network
    // of the connected sidecar. The filter will filter out all endpoints which are not present within the
    // sidecar network and add a gateway endpoint to remote networks that have endpoints
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. pkg/wellknown/wellknown.go

    	// MongoProxy network filter
    	MongoProxy = "envoy.filters.network.mongo_proxy"
    	// ThriftProxy network filter
    	ThriftProxy = "envoy.filters.network.thrift_proxy"
    	// RedisProxy network filter
    	RedisProxy = "envoy.filters.network.redis_proxy"
    	// MySQLProxy network filter
    	MySQLProxy = "envoy.filters.network.mysql_proxy"
    	// ExternalAuthorization network filter
    	ExternalAuthorization = "envoy.filters.network.ext_authz"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 11 15:29:30 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. src/net/unixsock.go

    //
    // The network must be a Unix network name.
    //
    // See func [Dial] for a description of the network and address
    // parameters.
    func ResolveUnixAddr(network, address string) (*UnixAddr, error) {
    	switch network {
    	case "unix", "unixgram", "unixpacket":
    		return &UnixAddr{Name: address, Net: network}, nil
    	default:
    		return nil, UnknownNetworkError(network)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  4. prow/config/topology/multicluster.json

        "svcSubnet": "10.255.10.0/24",
        "network": "network-1"
      },
      {
        "kind": "Kubernetes",
        "clusterName": "remote",
        "podSubnet": "10.20.0.0/16",
        "svcSubnet": "10.255.20.0/24",
        "network": "network-1",
        "primaryClusterName": "primary",
        "meta": {
          "fakeVM": false
        }
      },
      {
        "kind": "Kubernetes",
        "clusterName": "cross-network-primary",
        "podSubnet": "10.30.0.0/16",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 01 19:44:55 UTC 2021
    - 576 bytes
    - Viewed (0)
  5. src/net/file_test.go

    		switch tt.network {
    		case "udp":
    			c := newLocalPacketListener(t, tt.network)
    			defer c.Close()
    			network = c.LocalAddr().Network()
    			address = c.LocalAddr().String()
    		default:
    			handler := func(ls *localServer, ln Listener) {
    				c, err := ln.Accept()
    				if err != nil {
    					return
    				}
    				defer c.Close()
    				var b [1]byte
    				c.Read(b[:])
    			}
    			ls := newLocalServer(t, tt.network)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/net/nettest/nettest.go

    	return rawSocketSess
    }
    
    // TestableNetwork reports whether network is testable on the current
    // platform configuration.
    //
    // See func Dial of the standard library for the supported networks.
    func TestableNetwork(network string) bool {
    	ss := strings.Split(network, ":")
    	switch ss[0] {
    	case "ip+nopriv":
    		// This is an internal network name for testing on the
    		// package net of the standard library.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. pilot/pkg/xds/eds_sh_test.go

    	// Set up a cluster registry for network 1 with 1 instance for the service 'service5'
    	// Network has 1 gateway
    	initRegistry(s, 1, []string{"159.122.219.1"}, 1)
    	// Set up a cluster registry for network 2 with 2 instances for the service 'service5'
    	// Network has 1 gateway
    	initRegistry(s, 2, []string{"159.122.219.2"}, 2)
    	// Set up a cluster registry for network 3 with 3 instances for the service 'service5'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. pkg/proxy/winkernel/hns_test.go

    	t.Skip("Skipping failing test on Windows.")
    	hns := hns{hcn: newHcnImpl()}
    	Network := mustTestNetwork(t)
    
    	network, err := hns.getNetworkByName(Network.Name)
    	if err != nil {
    		t.Error(err)
    	}
    
    	if !strings.EqualFold(network.id, Network.Id) {
    		t.Errorf("%v does not match %v", network.id, Network.Id)
    	}
    	err = Network.Delete()
    	if err != nil {
    		t.Error(err)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  9. android/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.2K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/graph/NetworkBuilder.java

       * network}.
       *
       * <p>The "queryable" properties are those that are exposed through the {@link Network} interface,
       * such as {@link Network#isDirected()}. Other properties, such as {@link
       * #expectedNodeCount(int)}, are not set in the new builder.
       */
      public static <N, E> NetworkBuilder<N, E> from(Network<N, E> network) {
        return new NetworkBuilder<N, E>(network.isDirected())
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 03 01:21:31 UTC 2022
    - 7.4K bytes
    - Viewed (0)
Back to top