Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for newString (0.25 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/admission.go

    		if !registeredPlugins.Has(name) {
    			errs = append(errs, fmt.Errorf("disable-admission-plugins plugin %q is unknown", name))
    		}
    	}
    
    	enablePlugins := sets.NewString(a.EnablePlugins...)
    	disablePlugins := sets.NewString(a.DisablePlugins...)
    	if len(enablePlugins.Intersection(disablePlugins).List()) > 0 {
    		errs = append(errs, fmt.Errorf("%v in enable-admission-plugins and disable-admission-plugins "+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 12 08:49:42 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  2. pkg/controlplane/storageversionhashdata/data.go

    package storageversionhashdata
    
    import (
    	"k8s.io/apimachinery/pkg/util/sets"
    )
    
    // NoStorageVersionHash lists resources that legitimately with empty storage
    // version hash.
    var NoStorageVersionHash = sets.NewString(
    	"v1/bindings",
    	"v1/componentstatuses",
    	"authentication.k8s.io/v1/selfsubjectreviews",
    	"authentication.k8s.io/v1/tokenreviews",
    	"authorization.k8s.io/v1/localsubjectaccessreviews",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:14:51 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top