Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for usageFunc (0.13 sec)

  1. staging/src/k8s.io/apiserver/pkg/quota/v1/generic/evaluator.go

    // MatchesScopeFunc knows how to evaluate if an object matches a scope
    type MatchesScopeFunc func(scope corev1.ScopedResourceSelectorRequirement, object runtime.Object) (bool, error)
    
    // UsageFunc knows how to measure usage associated with an object
    type UsageFunc func(object runtime.Object) (corev1.ResourceList, error)
    
    // MatchingResourceNamesFunc is a function that returns the list of resources matched
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 05 00:02:47 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  2. cmd/kubelet/app/server.go

    	options.AddGlobalFlags(cleanFlagSet)
    	cleanFlagSet.BoolP("help", "h", false, fmt.Sprintf("help for %s", cmd.Name()))
    
    	// ugly, but necessary, because Cobra's default UsageFunc and HelpFunc pollute the flagset with global flags
    	const usageFmt = "Usage:\n  %s\n\nFlags:\n%s"
    	cmd.SetUsageFunc(func(cmd *cobra.Command) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
Back to top