Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 614 for network4 (0.72 sec)

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

    		},
    		{Cluster: "cluster1b"}: {
    			{Network: "network1", Address: "10.0.0.2"},
    		},
    
    		// network2 has an imbalance of endpoints between its clusters
    		{Cluster: "cluster2a"}: {
    			{Network: "network2", Address: "20.0.0.1"},
    		},
    		{Cluster: "cluster2b"}: {
    			{Network: "network2", Address: "20.0.0.2"},
    			{Network: "network2", Address: "20.0.0.3"},
    		},
    
    		// network3 has no endpoints.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  2. pilot/pkg/xds/eds_sh_test.go

    	// copy old networks if they exist
    	c := map[string]*meshconfig.Network{}
    	if meshNetworks != nil {
    		for k, v := range meshNetworks.Networks {
    			c[k] = v
    		}
    	}
    	// add the new one
    	c[string(id)] = network
    	server.Env().NetworksWatcher.SetNetworks(&meshconfig.MeshNetworks{Networks: c})
    }
    
    func getLbEndpointAddrs(eps []*endpoint.LbEndpoint) []string {
    	addrs := make([]string, 0)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/network.go

    	// This is defined by a topology.istio.io/network label on the system namespace.
    	network network.ID
    	// Network name for the registry as specified by the MeshNetworks configmap
    	networkFromMeshConfig network.ID
    	// map of svc fqdn to partially built network gateways; the actual gateways will be built from these into networkGatewaysBySvc
    	// this map just enumerates which networks/ports each Service is a gateway for
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 22:23:22 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/graph/Network.java

     * subtype of {@code Network} that provides methods for adding and removing nodes and edges. If you
     * do not need to mutate a network (e.g. if you write a method than runs a read-only algorithm on
     * the network), you should use the non-mutating {@link Network} interface, or an {@link
     * ImmutableNetwork}.
     *
     * <p>You can create an immutable copy of an existing {@code Network} using {@link
     * ImmutableNetwork#copyOf(Network)}:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  5. guava/src/com/google/common/graph/Network.java

     * subtype of {@code Network} that provides methods for adding and removing nodes and edges. If you
     * do not need to mutate a network (e.g. if you write a method than runs a read-only algorithm on
     * the network), you should use the non-mutating {@link Network} interface, or an {@link
     * ImmutableNetwork}.
     *
     * <p>You can create an immutable copy of an existing {@code Network} using {@link
     * ImmutableNetwork#copyOf(Network)}:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  6. pilot/pkg/model/network.go

    	"istio.io/istio/pkg/cluster"
    	"istio.io/istio/pkg/network"
    	"istio.io/istio/pkg/slices"
    	"istio.io/istio/pkg/util/istiomultierror"
    	netutil "istio.io/istio/pkg/util/net"
    	"istio.io/istio/pkg/util/sets"
    )
    
    // NetworkGateway is the gateway of a network
    type NetworkGateway struct {
    	// Network is the ID of the network where this Gateway resides.
    	Network network.ID
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 03:31:28 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  7. src/net/listen_test.go

    		}
    	default:
    		return UnknownNetworkError(network)
    	}
    	return nil
    }
    
    func checkSecondListener(network, address string, err error) error {
    	switch network {
    	case "tcp", "tcp4", "tcp6":
    		if err == nil {
    			return fmt.Errorf("%s should fail", network+" "+address)
    		}
    	case "udp", "udp4", "udp6":
    		if err == nil {
    			return fmt.Errorf("%s should fail", network+" "+address)
    		}
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  8. manifests/charts/istiod-remote/values.yaml

        # value.
        meshID: ""
        # Configure the mesh networks to be used by the Split Horizon EDS.
        #
        # The following example defines two networks with different endpoints association methods.
        # For `network1` all endpoints that their IP belongs to the provided CIDR range will be
        # mapped to network1. The gateway for this network example is specified by its public IP
        # address and port.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  9. manifests/charts/istio-control/istio-discovery/values.yaml

        # value.
        meshID: ""
    
        # Configure the mesh networks to be used by the Split Horizon EDS.
        #
        # The following example defines two networks with different endpoints association methods.
        # For `network1` all endpoints that their IP belongs to the provided CIDR range will be
        # mapped to network1. The gateway for this network example is specified by its public IP
        # address and port.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  10. pkg/config/mesh/mesh_test.go

    	yml := `
    networks:
      network1:
        endpoints:
        - fromCidr: "192.168.0.1/24"
        gateways:
        - address: 1.1.1.1
          port: 80
      network2:
        endpoints:
        - fromRegistry: reg1
        gateways:
        - registryServiceName: reg1
          port: 443
    `
    
    	want := mesh.EmptyMeshNetworks()
    	want.Networks = map[string]*meshconfig.Network{
    		"network1": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top