Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for failMessage (0.53 sec)

  1. src/cmd/doc/main.go

    				return
    			}
    		case pkg.printMethodDoc(symbol, method):
    			return
    		case pkg.printFieldDoc(symbol, method):
    			return
    		}
    	}
    }
    
    // failMessage creates a nicely formatted error message when there is no result to show.
    func failMessage(paths []string, symbol, method string) error {
    	var b bytes.Buffer
    	if len(paths) > 1 {
    		b.WriteString("s")
    	}
    	b.WriteString(" ")
    	for i, path := range paths {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet.go

    			otherActivePods = append(otherActivePods, p)
    		}
    	}
    
    	if ok, failReason, failMessage := kl.canAdmitPod(otherActivePods, podCopy); !ok {
    		// Log reason and return. Let the next sync iteration retry the resize
    		klog.V(3).InfoS("Resize cannot be accommodated", "pod", podCopy.Name, "reason", failReason, "message", failMessage)
    		return false, podCopy, v1.PodResizeStatusDeferred
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
Back to top