Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,793 for REGISTER (0.2 sec)

  1. pkg/apis/certificates/register.go

    	AddToScheme   = SchemeBuilder.AddToScheme
    )
    
    // GroupName is the group name use in this package
    const GroupName = "certificates.k8s.io"
    
    // SchemeGroupVersion is group version used to register these objects
    var SchemeGroupVersion = schema.GroupVersion{Group: GroupName, Version: runtime.APIVersionInternal}
    
    // Kind takes an unqualified kind and returns a Group qualified GroupKind
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 03:10:18 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/register.go

    	AddToScheme   = SchemeBuilder.AddToScheme
    )
    
    // GroupName is the group name use in this package
    const GroupName = "testapigroup.apimachinery.k8s.io"
    
    // SchemeGroupVersion is group version used to register these objects
    var SchemeGroupVersion = schema.GroupVersion{Group: GroupName, Version: runtime.APIVersionInternal}
    
    // Kind takes an unqualified kind and returns a Group qualified GroupKind
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 18:54:02 UTC 2017
    - 1.6K bytes
    - Viewed (0)
  3. operator/pkg/apis/istio/v1alpha1/register.go

    	SchemeBuilder = &scheme.Builder{GroupVersion: SchemeGroupVersion}
    )
    
    // Register the IstioOperator and IstioOperatorList API kind
    func init() {
    	SchemeBuilder.Register(&IstioOperator{}, &IstioOperatorList{})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 22 17:58:52 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. pkg/apis/rbac/v1beta1/register.go

    	AddToScheme        = localSchemeBuilder.AddToScheme
    )
    
    func init() {
    	// We only register manually written functions here. The registration of the
    	// generated functions takes place in the generated files. The separation
    	// makes the code compile even when the generated files are missing.
    	localSchemeBuilder.Register(addDefaultingFuncs)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 22 18:30:51 UTC 2017
    - 1.5K bytes
    - Viewed (0)
  5. pkg/apis/autoscaling/v2/register.go

    	AddToScheme        = localSchemeBuilder.AddToScheme
    )
    
    func init() {
    	// We only register manually written functions here. The registration of the
    	// generated functions takes place in the generated files. The separation
    	// makes the code compile even when the generated files are missing.
    	localSchemeBuilder.Register(addDefaultingFuncs)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 09 02:34:54 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  6. pkg/kube/mcs/register.go

    	"istio.io/istio/pilot/pkg/features"
    )
    
    var (
    	schemeBuilder = &runtime.SchemeBuilder{}
    
    	// AddToScheme is used to register MCS CRDs to a runtime.Scheme
    	AddToScheme = schemeBuilder.AddToScheme
    
    	// MCSSchemeGroupVersion is group version used to register Kubernetes Multi-Cluster Services (MCS) objects
    	MCSSchemeGroupVersion = schema.GroupVersion{Group: features.MCSAPIGroup, Version: features.MCSAPIVersion}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 30 21:25:46 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/coordination/v1/register.go

    	"k8s.io/apimachinery/pkg/runtime/schema"
    )
    
    // GroupName is the group name use in this package
    const GroupName = "coordination.k8s.io"
    
    // SchemeGroupVersion is group version used to register these objects
    var SchemeGroupVersion = schema.GroupVersion{Group: GroupName, Version: "v1"}
    
    // Resource takes an unqualified resource and returns a Group qualified GroupResource
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 20 14:39:57 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/autoscaling/v1/register.go

    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    )
    
    // GroupName is the group name use in this package
    const GroupName = "autoscaling"
    
    // SchemeGroupVersion is group version used to register these objects
    var SchemeGroupVersion = schema.GroupVersion{Group: GroupName, Version: "v1"}
    
    // Resource takes an unqualified resource and returns a Group qualified GroupResource
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 18:54:02 UTC 2017
    - 1.7K bytes
    - Viewed (0)
  9. pkg/apis/events/register.go

    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/kubernetes/pkg/apis/core"
    )
    
    // GroupName is the group name use in this package
    const GroupName = "events.k8s.io"
    
    // SchemeGroupVersion is group version used to register these objects
    var SchemeGroupVersion = schema.GroupVersion{Group: GroupName, Version: runtime.APIVersionInternal}
    
    // Kind takes an unqualified kind and returns a Group qualified GroupKind
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 23 04:20:49 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  10. pkg/apis/flowcontrol/register.go

    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    )
    
    // GroupName is the name of api group
    const GroupName = "flowcontrol.apiserver.k8s.io"
    
    // SchemeGroupVersion is group version used to register these objects
    var SchemeGroupVersion = schema.GroupVersion{Group: GroupName, Version: runtime.APIVersionInternal}
    
    // Kind takes an unqualified kind and returns a Group qualified GroupKind
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 29 04:26:12 UTC 2019
    - 1.7K bytes
    - Viewed (0)
Back to top