Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,666 for network4 (0.17 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. pilot/pkg/model/proxy_view_test.go

    		{
    			name:        "network not visible",
    			networkView: []string{"network1"},
    			network:     "network2",
    			visible:     false,
    		},
    		{
    			name:        "no network label",
    			networkView: []string{"network1"},
    			network:     "",
    			visible:     true,
    		},
    	}
    
    	for _, c := range cases {
    		c := c
    		t.Run(c.name, func(t *testing.T) {
    			g := NewWithT(t)
    
    			view := (&model.Proxy{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/graph/TestUtil.java

      }
    
      static void assertStronglyEquivalent(Network<?, ?> networkA, Network<?, ?> networkB) {
        // Properties not covered by equals()
        assertThat(networkA.allowsParallelEdges()).isEqualTo(networkB.allowsParallelEdges());
        assertThat(networkA.allowsSelfLoops()).isEqualTo(networkB.allowsSelfLoops());
        assertThat(networkA.nodeOrder()).isEqualTo(networkB.nodeOrder());
        assertThat(networkA.edgeOrder()).isEqualTo(networkB.edgeOrder());
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. releasenotes/notes/network-label.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    issue:
    - 25500
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 01 20:02:28 UTC 2020
    - 360 bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/graph/ImmutableNetworkTest.java

      }
    
      @Test
      public void copyOfImmutableNetwork_optimized() {
        Network<String, String> network1 =
            ImmutableNetwork.copyOf(NetworkBuilder.directed().<String, String>build());
        Network<String, String> network2 = ImmutableNetwork.copyOf(network1);
    
        assertThat(network2).isSameInstanceAs(network1);
      }
    
      @Test
      public void edgesConnecting_directed() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun May 05 18:02:35 UTC 2019
    - 5.5K bytes
    - Viewed (0)
Back to top