Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for meisten (0.19 sec)

  1. pilot/pkg/networking/core/listener.go

    	switch listenerProtocol {
    	case istionetworking.ListenerProtocolTCP, istionetworking.ListenerProtocolAuto:
    		// Determine the listener address if bind is empty
    		// we listen on the service VIP if and only
    		// if the address is an IP address. If its a CIDR, we listen on
    		// 0.0.0.0, and setup a filter chain match for the CIDR range.
    		// As a small optimization, CIDRs with /32 prefix will be converted
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. istioctl/pkg/describe/describe.go

    	ingress *ingressInfo,
    ) {
    	if ingress == nil || ingress.service == nil || len(ingress.pods) == 0 {
    		return
    	}
    	// The ingressgateway service offers a lot of ports but the pod doesn't listen to all
    	// of them.  For example, it doesn't listen on 443 without additional setup.  This prints
    	// the most basic output.
    	portsToShow := map[string]bool{
    		"http2": true,
    		"http":  true,
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  3. src/crypto/tls/tls_test.go

    		t.Error("Load of ECDSA certificate succeeded with RSA private key")
    	}
    }
    
    func newLocalListener(t testing.TB) net.Listener {
    	ln, err := net.Listen("tcp", "127.0.0.1:0")
    	if err != nil {
    		ln, err = net.Listen("tcp6", "[::1]:0")
    	}
    	if err != nil {
    		t.Fatal(err)
    	}
    	return ln
    }
    
    func TestDialTimeout(t *testing.T) {
    	if testing.Short() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.31.md

    - The kube-proxy nodeportAddresses / --nodeport-addresses option now
      accepts the value "primary", meaning to only listen for NodePort connections
      on the node's primary IPv4 and/or IPv6 address (according to the Node object).
      This is strongly recommended, if you were not previously using
      --nodeport-addresses, to avoid surprising behavior.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  5. cmd/peer-rest-server.go

    		}
    		mask.MergeMaskable(eventName)
    		eventNames = append(eventNames, eventName)
    	}
    
    	rulesMap := event.NewRulesMap(eventNames, pattern, event.TargetID{ID: mustGetUUID()})
    
    	// Listen Publisher uses nonblocking publish and hence does not wait for slow subscribers.
    	// Use buffered channel to take care of burst sends or slow w.Write()
    	ch := make(chan event.Event, globalAPIConfig.getRequestsPoolCapacity())
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/route/route.go

    // Each rule is guarded by source labels.
    //
    // This is called for each port to compute virtual hosts.
    // Each VirtualService is tried, with a list of Services that listen on the port.
    // Error indicates the given virtualService can't be used on the port.
    // This function is used by both the gateway and the sidecar
    func BuildHTTPRoutesForVirtualService(
    	node *model.Proxy,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  7. src/net/http/fs_test.go

    	if runtime.GOOS != "linux" {
    		t.Skip("skipping; linux-only test")
    	}
    	if _, err := exec.LookPath("strace"); err != nil {
    		t.Skip("skipping; strace not found in path")
    	}
    
    	ln, err := net.Listen("tcp", "127.0.0.1:0")
    	if err != nil {
    		t.Fatal(err)
    	}
    	lnf, err := ln.(*net.TCPListener).File()
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer ln.Close()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  8. cmd/test-utils_test.go

    	queryValue := url.Values{}
    	queryValue.Set("uploadId", uploadID)
    	return makeTestTargetURL(endPoint, bucketName, objectName, queryValue)
    }
    
    // return URL for listen bucket notification.
    func getListenNotificationURL(endPoint, bucketName string, prefixes, suffixes, events []string) string {
    	queryValue := url.Values{}
    
    	queryValue["prefix"] = prefixes
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  9. src/crypto/tls/handshake_client_test.go

    	command = append(command, serverCommand...)
    	command = append(command, test.args...)
    	command = append(command, "-cert", certPath, "-certform", "DER", "-key", keyPath)
    	// serverPort contains the port that OpenSSL will listen on. OpenSSL
    	// can't take "0" as an argument here so we have to pick a number and
    	// hope that it's not in use on the machine. Since this only occurs
    	// when -update is given and thus when there's a human watching the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go

    func error_Linkat(oldDirFd int, oldPath string, newDirFd int, newPath string, flags int) (err error) {
    	err = ENOSYS
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Listen(s int, n int) (err error) {
    	runtime.EnterSyscall()
    	r0, e2, e1 := CallLeFuncWithErr(GetZosLibVec()+SYS_LISTEN<<4, uintptr(s), uintptr(n))
    	runtime.ExitSyscall()
    	if int64(r0) == -1 {
    		err = errnoErr2(e1, e2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 88.2K bytes
    - Viewed (0)
Back to top