Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for policyapi (0.12 sec)

  1. pkg/registry/policy/poddisruptionbudget/storage/storage.go

    	store := &genericregistry.Store{
    		NewFunc:                   func() runtime.Object { return &policyapi.PodDisruptionBudget{} },
    		NewListFunc:               func() runtime.Object { return &policyapi.PodDisruptionBudgetList{} },
    		DefaultQualifiedResource:  policyapi.Resource("poddisruptionbudgets"),
    		SingularQualifiedResource: policyapi.Resource("poddisruptionbudget"),
    
    		CreateStrategy:      poddisruptionbudget.Strategy,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  2. pkg/registry/policy/rest/storage_policy.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package rest
    
    import (
    	policyapiv1 "k8s.io/api/policy/v1"
    	"k8s.io/apiserver/pkg/registry/generic"
    	"k8s.io/apiserver/pkg/registry/rest"
    	genericapiserver "k8s.io/apiserver/pkg/server"
    	serverstorage "k8s.io/apiserver/pkg/server/storage"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 02:24:26 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/cpumanager/policy_options_test.go

    			featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, pkgfeatures.CPUManagerPolicyAlphaOptions, true)
    			policyOpt, _ := NewStaticPolicyOptions(testCase.policyOption)
    			err := ValidateStaticPolicyOptions(policyOpt, testCase.topology, topoMgrStore)
    			gotError := (err != nil)
    			if gotError != testCase.expectedErr {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. cmd/iam.go

    						iamLogIf(ctx, logErr)
    					}
    				}
    			}
    		}
    
    		// Replacing origKeys[0] with normKey in the policyMap
    
    		// len(origKeys) is always > 0, so here len(origKeys) == 1
    		mappingValue := policyMap[origKeys[0]]
    		delete(policyMap, origKeys[0])
    		policyMap[normKey] = mappingValue
    		iamLogEvent(ctx, "import-ldap-normalize: normalized LDAP DN mapping from `%s` to `%s`", origKeys[0], normKey)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/cpumanager/topology_hints_test.go

    					pod.Spec.Containers = append(pod.Spec.Containers, container)
    				}
    				activePods = append(activePods, &pod)
    			}
    			policyOpt, _ := NewStaticPolicyOptions(testCase.policyOptions)
    			m := manager{
    				policy: &staticPolicy{
    					topology: testCase.topology,
    					options:  policyOpt,
    				},
    				state: &mockState{
    					assignments:   testCase.assignments,
    					defaultCPUSet: testCase.defaultCPUSet,
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. pkg/controlplane/instance.go

    	discoveryv1 "k8s.io/api/discovery/v1"
    	eventsv1 "k8s.io/api/events/v1"
    	networkingapiv1 "k8s.io/api/networking/v1"
    	networkingapiv1alpha1 "k8s.io/api/networking/v1alpha1"
    	nodev1 "k8s.io/api/node/v1"
    	policyapiv1 "k8s.io/api/policy/v1"
    	rbacv1 "k8s.io/api/rbac/v1"
    	resourcev1alpha2 "k8s.io/api/resource/v1alpha2"
    	schedulingapiv1 "k8s.io/api/scheduling/v1"
    	storageapiv1 "k8s.io/api/storage/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.2K bytes
    - Viewed (0)
Back to top