Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,666 for network4 (0.2 sec)

  1. tools/packaging/common/gcp_envoy_bootstrap.json

        {{ if (index .metadata.Labels "td.networking.gke.io/mesh-name") }}
          "id": "projects/{{ .gcp_project_number }}/networks/mesh:{{ (index .metadata.Labels "td.networking.gke.io/mesh-name") }}/nodes/{{ .nodeID}}",
        {{ else if (index .metadata.Labels "td.networking.gke.io/gateway-name") }}
          "id": "projects/{{ .gcp_project_number }}/networks/scope:{{ (index .metadata.Labels "td.networking.gke.io/gateway-name") }}/nodes/{{ .nodeID}}",
        {{ else }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. pkg/kube/inject/testdata/inputs/hello-existing-cncf-networks-json.yaml.16.values.gen.yaml

        },
        "meshID": "",
        "meshNetworks": {},
        "mountMtlsCerts": false,
        "multiCluster": {
          "clusterName": "",
          "enabled": false
        },
        "namespace": "istio-system",
        "network": "",
        "omitSidecarInjectorConfigMap": false,
        "operatorManageWebhooks": false,
        "pilotCertProvider": "istiod",
        "priorityClassName": "",
        "proxy": {
          "autoInject": "enabled",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. pilot/pkg/xds/endpoints/ep_filters.go

    	"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)
  4. src/net/iprawsock.go

    	}
    	sd := &sysDialer{network: network, address: raddr.String()}
    	c, err := sd.dialIP(context.Background(), laddr, raddr)
    	if err != nil {
    		return nil, &OpError{Op: "dial", Net: network, Source: laddr.opAddr(), Addr: raddr.opAddr(), Err: err}
    	}
    	return c, nil
    }
    
    // ListenIP acts like [ListenPacket] for IP networks.
    //
    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. pkg/test/framework/components/echo/check/checkers.go

    		}
    	}
    
    	// Verify that no unexpected networks were reached.
    	for network := range networkHits {
    		if expectedByNetwork[network] == nil {
    			return fmt.Errorf("reached network not in %v, got %v", expectedByNetwork.Networks(), networkHits)
    		}
    	}
    	return nil
    }
    
    func isNaked(c echo.Caller) bool {
    	if c != nil {
    		if inst, ok := c.(echo.Instance); ok {
    			return inst.Config().IsNaked()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 03 16:19:07 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  6. cni/pkg/install/cniconfig.go

    		// Assume it is a regular network conf file
    		delete(existingMap, "cniVersion")
    
    		plugins := make([]map[string]any, 2)
    		plugins[0] = existingMap
    		plugins[1] = istioMap
    
    		newMap = map[string]any{
    			"name":       "k8s-pod-network",
    			"cniVersion": "0.3.1",
    			"plugins":    plugins,
    		}
    	} else {
    		// Assume it is a network list file
    		newMap = existingMap
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/fuzz_test.go

    	"istio.io/istio/pkg/fuzz"
    	"istio.io/istio/pkg/network"
    )
    
    func FuzzKubeController(f *testing.F) {
    	fuzz.Fuzz(f, func(fg fuzz.Helper) {
    		networkID := network.ID("fakeNetwork")
    		fco := fuzz.Struct[FakeControllerOptions](fg)
    		fco.SkipRun = true
    		// Overlapping CRDs would fail, just remove them
    		fco.CRDs = nil
    		controller, _ := NewFakeControllerWithOptions(fg.T(), fco)
    		controller.network = networkID
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 26 03:41:41 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. operator/cmd/mesh/testdata/manifest-generate/input/istiod_remote.yaml

    kind: IstioOperator
    spec:
      profile: empty
      components:
        base:
          enabled: true
        pilot:
          enabled: true
      values:
        global:
          multiCluster:
            clusterName: remote0
          network: network2
          externalIstiod: true
          remotePilotAddress: 169.10.112.88
        istiodRemote:
          injectionURL: https://xxx:15017/inject
        base:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 03 20:33:58 UTC 2021
    - 439 bytes
    - Viewed (0)
  9. 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)
  10. pilot/pkg/serviceregistry/util/label/label.go

    	LabelTopologyRegion  = "topology.kubernetes.io/region"
    )
    
    // AugmentLabels adds additional labels to the those provided.
    func AugmentLabels(in labels.Instance, clusterID cluster.ID, locality, k8sNode string, networkID network.ID) labels.Instance {
    	// Copy the original labels to a new map.
    	out := make(labels.Instance, len(in)+6)
    	for k, v := range in {
    		out[k] = v
    	}
    
    	region, zone, subzone := SplitLocalityLabel(locality)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 11 03:56:40 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top