Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for RuntimeClasses (0.27 sec)

  1. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactoryTest.groovy

            getModule(_) >> { module(it[0], false) }
            getExternalModule(_) >> { module(it[0], true) }
        }
    
        def runtimeClasses = Spy(TestClassDetector)
        def classDetectorFactory = Mock(ForkedTestClasspathFactory.ClassDetectorFactory) {
            create(_, _) >> { runtimeClasses }
        }
        ForkedTestClasspathFactory underTest = new ForkedTestClasspathFactory(moduleRegistry, classDetectorFactory)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/policy/v1beta1/generated.proto

      // This requires the ProcMountType feature flag to be enabled.
      // +optional
      repeated string allowedProcMountTypes = 21;
    
      // runtimeClass is the strategy that will dictate the allowable RuntimeClasses for a pod.
      // If this field is omitted, the pod's runtimeClassName field is unrestricted.
      // Enforcement of this field depends on the RuntimeClass feature gate being enabled.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_sandbox_test.go

    		assert.EqualValues(t, test.expectedProfile, actualProfile, "TestCase[%d]: %s", i, test.description)
    	}
    }
    
    // TestCreatePodSandbox_RuntimeClass tests creating sandbox with RuntimeClasses enabled.
    func TestCreatePodSandbox_RuntimeClass(t *testing.T) {
    	ctx := context.Background()
    	rcm := runtimeclass.NewManager(rctest.NewPopulatedClient())
    	defer rctest.StartManagerSync(rcm)()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  4. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/cluster-roles.yaml

        resources:
        - csinodes
        verbs:
        - create
        - delete
        - get
        - patch
        - update
      - apiGroups:
        - node.k8s.io
        resources:
        - runtimeclasses
        verbs:
        - get
        - list
        - watch
    - apiVersion: rbac.authorization.k8s.io/v1
      kind: ClusterRole
      metadata:
        annotations:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 08:11:08 UTC 2023
    - 24.1K bytes
    - Viewed (0)
  5. pkg/controlplane/instance_test.go

    		discoveryv1beta1.SchemeGroupVersion.WithResource("endpointslices"):                true,
    		eventsv1beta1.SchemeGroupVersion.WithResource("events"):                           true,
    		nodev1beta1.SchemeGroupVersion.WithResource("runtimeclasses"):                     true,
    		policyapiv1beta1.SchemeGroupVersion.WithResource("poddisruptionbudgets"):          true,
    		policyapiv1beta1.SchemeGroupVersion.WithResource("podsecuritypolicies"):           true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  6. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/policy.go

    	nodePolicyRules = append(nodePolicyRules, csiNodeInfoRule)
    
    	// RuntimeClass
    	nodePolicyRules = append(nodePolicyRules, rbacv1helpers.NewRule("get", "list", "watch").Groups("node.k8s.io").Resources("runtimeclasses").RuleOrDie())
    
    	// DRA Resource Claims
    	if utilfeature.DefaultFeatureGate.Enabled(features.DynamicResourceAllocation) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 34.4K bytes
    - Viewed (0)
Back to top