Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for knownCRISockets (0.11 sec)

  1. cmd/kubeadm/app/util/runtime/runtime.go

    // detectCRISocketImpl is separated out only for test purposes, DON'T call it directly, use DetectCRISocket instead
    func detectCRISocketImpl(isSocket func(string) bool, knownCRISockets []string) (string, error) {
    	foundCRISockets := []string{}
    
    	for _, socket := range knownCRISockets {
    		if isSocket(socket) {
    			foundCRISockets = append(foundCRISockets, socket)
    		}
    	}
    
    	switch len(foundCRISockets) {
    	case 0:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 06:33:22 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top