Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for lastSocketErr (0.1 sec)

  1. pkg/util/filesystem/util_windows.go

    	// dial multiple times
    	var lastSocketErr error
    	err := wait.PollImmediate(socketDialRetryPeriod, socketDialTimeout,
    		func() (bool, error) {
    			klog.V(6).InfoS("Dialing the socket", "filePath", filePath)
    			var c net.Conn
    			c, lastSocketErr = net.Dial("unix", filePath)
    			if lastSocketErr == nil {
    				c.Close()
    				klog.V(6).InfoS("Socket dialed successfully", "filePath", filePath)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 17:13:59 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top