Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 760 for Warningf (0.28 sec)

  1. pkg/volume/iscsi/iscsi_util.go

    		if err != nil {
    			klog.Warningf("Warning: Failed to flush multipath device map: %s\nError: %v", mpathDevice, err)
    			// Fall through -- keep deleting the block devices
    		}
    		klog.V(4).Infof("Flushed multipath device: %s", mpathDevice)
    	}
    	for _, deviceName := range deviceNames {
    		err = deleteDevice(deviceName)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 22 12:53:01 UTC 2022
    - 34.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/net/http.go

    	return out
    }
    
    // WarningHeader contains a single RFC2616 14.46 warnings header
    type WarningHeader struct {
    	// Codeindicates the type of warning. 299 is a miscellaneous persistent warning
    	Code int
    	// Agent contains the name or pseudonym of the server adding the Warning header.
    	// A single "-" is recommended when agent is unknown.
    	Agent string
    	// Warning text
    	Text string
    }
    
    // ParseWarningHeaders extract RFC2616 14.46
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 05 00:08:58 UTC 2022
    - 20.8K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/config/common.go

    func ChooseAPIServerBindAddress(bindAddress net.IP) (net.IP, error) {
    	ip, err := netutil.ResolveBindAddress(bindAddress)
    	if err != nil {
    		if netutil.IsNoRoutesError(err) {
    			klog.Warningf("WARNING: could not obtain a bind address for the API Server: %v; using: %s", err, constants.DefaultAPIServerBindAddress)
    			defaultIP := netutils.ParseIPSloppy(constants.DefaultAPIServerBindAddress)
    			if defaultIP == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1/customresourcedefinition.go

    	if watchListOptions, hasWatchListOptionsPrepared, watchListOptionsErr := watchlist.PrepareWatchListOptionsFromListOptions(opts); watchListOptionsErr != nil {
    		klog.Warningf("Failed preparing watchlist options for customresourcedefinitions, falling back to the standard LIST semantics, err = %v", watchListOptionsErr)
    	} else if hasWatchListOptionsPrepared {
    		result, err := c.watchList(ctx, watchListOptions)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1beta1/customresourcedefinition.go

    	if watchListOptions, hasWatchListOptionsPrepared, watchListOptionsErr := watchlist.PrepareWatchListOptionsFromListOptions(opts); watchListOptionsErr != nil {
    		klog.Warningf("Failed preparing watchlist options for customresourcedefinitions, falling back to the standard LIST semantics, err = %v", watchListOptionsErr)
    	} else if hasWatchListOptionsPrepared {
    		result, err := c.watchList(ctx, watchListOptions)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. pkg/volume/fc/fc_util.go

    	if pathExists, pathErr := mount.PathExists(path); pathErr != nil {
    		return pathExists, fmt.Errorf("error checking if path exists: %w", pathErr)
    	} else if !pathExists {
    		klog.Warningf("Warning: Unmap skipped because path does not exist: %v", path)
    		return pathExists, nil
    	}
    	return true, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 12.8K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/upgrade/postupgrade.go

    		context.TODO(),
    		kubeadmconstants.CoreDNSConfigMap,
    		metav1.GetOptions{},
    	); err != nil && apierrors.IsNotFound(err) {
    		missingCoreDNSConfigMap = true
    	}
    	if missingCoreDNSConfigMap {
    		klog.Warningf("the ConfigMaps %q in the namespace %q were not found. "+
    			"Assuming that a DNS server was not deployed for this cluster. "+
    			"Note that once 'kubeadm upgrade apply' supports phases you "+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/config/initconfiguration.go

    				return nil, err
    			}
    			continue
    		}
    
    		// If the group is neither a kubeadm core type or of a supported component config group, we dump a warning about it being ignored
    		if !componentconfigs.Scheme.IsGroupRegistered(gvk.Group) {
    			klog.Warningf("[config] WARNING: Ignored YAML document with GroupVersionKind %v\n", gvk)
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 12:41:16 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  9. pkg/config/validation/agent/validation.go

    			v.Err = appendError(v.Err, t.Err)
    			v.Warning = appendError(v.Warning, t.Warning)
    		default:
    			v.Err = appendError(v.Err, t)
    		}
    	}
    	return v
    }
    
    // AppendWarningf appends a formatted warning string
    // nolint: unparam
    func AppendWarningf(v Validation, format string, a ...any) Validation {
    	return AppendValidation(v, Warningf(format, a...))
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/controlplane/manifests.go

    			if isValidAuthzMode(requested) {
    				mode = append(mode, requested)
    			} else {
    				klog.Warningf("ignoring unknown kube-apiserver authorization-mode %q", requested)
    			}
    		}
    
    		// only return the user provided mode if at least one was valid
    		if len(mode) > 0 {
    			if !compareAuthzModes(defaultMode, mode) {
    				klog.Warningf("the default kube-apiserver authorization-mode is %q; using %q",
    					strings.Join(defaultMode, ","),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 14:43:47 UTC 2024
    - 17.8K bytes
    - Viewed (0)
Back to top