Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 649 for Warningf (0.15 sec)

  1. 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)
  2. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/clientset/versioned/typed/cr/v1/example.go

    	if watchListOptions, hasWatchListOptionsPrepared, watchListOptionsErr := watchlist.PrepareWatchListOptionsFromListOptions(opts); watchListOptionsErr != nil {
    		klog.Warningf("Failed preparing watchlist options for examples, 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
    - 8.6K bytes
    - Viewed (0)
  3. 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)
  4. cmd/kubeadm/app/features/features.go

    		featureSpec, ok := (*f)[k]
    		if !ok {
    			return nil, errors.Errorf("unrecognized feature-gate key: %s", k)
    		}
    
    		if featureSpec.PreRelease == featuregate.Deprecated {
    			klog.Warningf("Setting deprecated feature gate %s=%s. It will be removed in a future release.", k, v)
    		}
    
    		boolValue, err := strconv.ParseBool(v)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 13:55:11 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. 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)
  6. pkg/registry/core/service/ipallocator/controller/repairip.go

    		return
    	}
    
    	if r.svcQueue.NumRequeues(key) < maxRetries {
    		klog.V(2).InfoS("Error syncing Service, retrying", "service", key, "err", err)
    		r.svcQueue.AddRateLimited(key)
    		return
    	}
    
    	klog.Warningf("Dropping Service %q out of the queue: %v", key, err)
    	r.svcQueue.Forget(key)
    	runtime.HandleError(err)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapiv3/controller.go

    	if quit {
    		return false
    	}
    	defer c.queue.Done(key)
    
    	// log slow aggregations
    	start := time.Now()
    	defer func() {
    		elapsed := time.Since(start)
    		if elapsed > time.Second {
    			klog.Warningf("slow openapi aggregation of %q: %s", key, elapsed)
    		}
    	}()
    
    	err := c.syncFn(key)
    	if err == nil {
    		c.queue.Forget(key)
    		return true
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/internal/generic/controller.go

    				if err2 != nil {
    					utilruntime.HandleError(err2)
    				}
    				return
    			} else if oldMeta.GetResourceVersion() == newMeta.GetResourceVersion() {
    				if len(oldMeta.GetResourceVersion()) == 0 {
    					klog.Warningf("%v throwing out update with empty RV. this is likely to happen if a test did not supply a resource version on an updated object", c.options.Name)
    				}
    				return
    			}
    
    			enqueue(newObj, false)
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/generic/webhook.go

    		}
    
    		matcher := h.GetCompiledMatcher(a.filterCompiler)
    		matchResult := matcher.Match(ctx, versionedAttr, nil, a.authorizer)
    
    		if matchResult.Error != nil {
    			klog.Warningf("Failed evaluating match conditions, failing closed %v: %v", h.GetName(), matchResult.Error)
    			return nil, apierrors.NewForbidden(attr.GetResource().GroupResource(), attr.GetName(), matchResult.Error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/controller.go

    	if quit {
    		return false
    	}
    	defer c.queue.Done(key)
    
    	// log slow aggregations
    	start := time.Now()
    	defer func() {
    		elapsed := time.Since(start)
    		if elapsed > time.Second {
    			klog.Warningf("slow openapi aggregation of %q: %s", key, elapsed)
    		}
    	}()
    
    	err := c.syncFn(key)
    	if err == nil {
    		c.queue.Forget(key)
    		return true
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.6K bytes
    - Viewed (0)
Back to top