Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 532 for GetWork (0.22 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/net/platform_test.go

    // testableListenArgs reports whether arguments are testable on the
    // current platform configuration.
    func testableListenArgs(network, address, client string) bool {
    	if !testableNetwork(network) || !testableAddress(network, address) {
    		return false
    	}
    
    	var err error
    	var addr Addr
    	switch net, _, _ := strings.Cut(network, ":"); net {
    	case "tcp", "tcp4", "tcp6":
    		addr, err = ResolveTCPAddr("tcp", address)
    	case "udp", "udp4", "udp6":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. releasenotes/notes/47574.yaml

    - |
      **Added** support for automatically set default network to Ambient workloads if they are added to the Ambient before the network topology is set.
      Before, when you set `topology.istio.io/network` on your Istio root namespace, you need to manually rollout the Ambient workloads to make the network change take effect. 
      Now, the network of Ambient workloads will be automatically updated even if they do not have a network label.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 22 06:59:24 UTC 2023
    - 733 bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/endpoint_builder_test.go

    			},
    		},
    		{
    			name: "network only ",
    			ctl: testController{
    				network: "mynetwork",
    			},
    			podLabels: labels.Instance{
    				"k1": "v1",
    			},
    			expected: labels.Instance{
    				"k1":                       "v1",
    				label.TopologyNetwork.Name: "mynetwork",
    			},
    		},
    		{
    			name: "network priority",
    			ctl: testController{
    				network: "ns-network",
    			},
    			podLabels: labels.Instance{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. src/net/external_test.go

    	}
    
    	for _, network := range []string{"tcp", "tcp4", "tcp6"} {
    		addr, err := ResolveTCPAddr(network, "www.google.com:http")
    		if err != nil {
    			t.Error(err)
    			continue
    		}
    		switch {
    		case network == "tcp" && addr.IP.To4() == nil:
    			fallthrough
    		case network == "tcp4" && addr.IP.To4() == nil:
    			t.Errorf("got %v; want an IPv4 address on %s", addr, network)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top