Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for RuntimeClasses (0.24 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. api/discovery/apis__node.k8s.io__v1.json

    {
      "apiVersion": "v1",
      "groupVersion": "node.k8s.io/v1",
      "kind": "APIResourceList",
      "resources": [
        {
          "kind": "RuntimeClass",
          "name": "runtimeclasses",
          "namespaced": false,
          "singularName": "runtimeclass",
          "storageVersionHash": "WQTu1GL3T2Q=",
          "verbs": [
            "create",
            "delete",
            "deletecollection",
            "get",
            "list",
            "patch",
            "update",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 18:18:19 UTC 2023
    - 466 bytes
    - Viewed (0)
  3. pkg/registry/node/runtimeclass/strategy.go

    // Strategy should implement rest.RESTUpdateStrategy
    var _ rest.RESTUpdateStrategy = Strategy
    
    // NamespaceScoped is false for RuntimeClasses
    func (strategy) NamespaceScoped() bool {
    	return false
    }
    
    // AllowCreateOnUpdate is true for RuntimeClasses.
    func (strategy) AllowCreateOnUpdate() bool {
    	return true
    }
    
    // PrepareForCreate clears fields that are not allowed to be set by end users
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 09 08:17:32 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  4. pkg/registry/node/rest/runtime_class.go

    	storage := map[string]rest.Storage{}
    
    	if resource := "runtimeclasses"; apiResourceConfigSource.ResourceEnabled(nodev1.SchemeGroupVersion.WithResource(resource)) {
    		s, err := runtimeclassstorage.NewREST(restOptionsGetter)
    		if err != nil {
    			return storage, err
    		}
    		storage[resource] = s
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 14:40:26 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. pkg/registry/node/runtimeclass/storage/storage.go

    		ObjectNameFunc: func(obj runtime.Object) (string, error) {
    			return obj.(*node.RuntimeClass).Name, nil
    		},
    		DefaultQualifiedResource:  node.Resource("runtimeclasses"),
    		SingularQualifiedResource: node.Resource("runtimeclass"),
    
    		CreateStrategy: runtimeclass.Strategy,
    		UpdateStrategy: runtimeclass.Strategy,
    		DeleteStrategy: runtimeclass.Strategy,
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:13 UTC 2022
    - 2K bytes
    - Viewed (0)
  6. pkg/kubelet/runtimeclass/runtimeclass_manager.go

    func NewManager(client clientset.Interface) *Manager {
    	const resyncPeriod = 0
    
    	factory := informers.NewSharedInformerFactory(client, resyncPeriod)
    	lister := factory.Node().V1().RuntimeClasses().Lister()
    
    	return &Manager{
    		informerFactory: factory,
    		lister:          lister,
    	}
    }
    
    // Start starts syncing the RuntimeClass cache with the apiserver.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 11 19:22:32 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  7. plugin/pkg/admission/runtimeclass/admission.go

    	r.runtimeClassClient = client.NodeV1().RuntimeClasses()
    }
    
    // SetExternalKubeInformerFactory implements the WantsExternalKubeInformerFactory interface.
    func (r *RuntimeClass) SetExternalKubeInformerFactory(f informers.SharedInformerFactory) {
    	runtimeClassInformer := f.Node().V1().RuntimeClasses()
    	r.SetReadyFunc(runtimeClassInformer.Informer().HasSynced)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 05 05:53:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  8. pkg/controlplane/storageversionhashdata/data.go

    	"networking.k8s.io/v1/ingresses":                                    "39NQlfNR+bo=",
    	"networking.k8s.io/v1/ingressclasses":                               "l/iqIbDgFyQ=",
    	"node.k8s.io/v1/runtimeclasses":                                     "WQTu1GL3T2Q=",
    	"policy/v1/poddisruptionbudgets":                                    "EVWiDmWqyJw=",
    	"rbac.authorization.k8s.io/v1/clusterrolebindings":                  "48tpQ8gZHFc=",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:14:51 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/node/v1beta1/generated.proto

    }
    
    // RuntimeClass defines a class of container runtime supported in the cluster.
    // The RuntimeClass is used to determine which container runtime is used to run
    // all containers in a pod. RuntimeClasses are (currently) manually defined by a
    // user or cluster provisioner, and referenced in the PodSpec. The Kubelet is
    // responsible for resolving the RuntimeClassName reference before running the
    // pod.  For more details, see
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. pkg/apis/node/types.go

    // RuntimeClass defines a class of container runtime supported in the cluster.
    // The RuntimeClass is used to determine which container runtime is used to run
    // all containers in a pod. RuntimeClasses are (currently) manually defined by a
    // user or cluster provisioner, and referenced in the PodSpec. The Kubelet is
    // responsible for resolving the RuntimeClassName reference before running the
    // pod.  For more details, see
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 22 08:59:25 UTC 2022
    - 3.6K bytes
    - Viewed (0)
Back to top