Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 723 for InNetwork (0.12 sec)

  1. prow/config/topology/multicluster-large.json

        "svcSubnet": "10.255.10.0/24",
        "network": "network-1"
      },
      {
        "clusterName": "remote",
        "podSubnet": "10.20.0.0/16",
        "svcSubnet": "10.255.20.0/24",
        "network": "network-1",
        "controlPlaneClusterName": "primary"
      },
      {
        "clusterName": "primary-2",
        "podSubnet": "10.30.0.0/16",
        "svcSubnet": "10.255.30.0/24",
        "network": "network-1"
      },
      {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 22 21:11:06 UTC 2021
    - 787 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top