Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 235 for WithKind (0.4 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/apps/v1beta1/controllerrevision.go

    	if err != nil {
    		return nil, err
    	}
    	b.WithName(controllerRevision.Name)
    	b.WithNamespace(controllerRevision.Namespace)
    
    	b.WithKind("ControllerRevision")
    	b.WithAPIVersion("apps/v1beta1")
    	return b, nil
    }
    
    // WithKind sets the Kind field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/apps/v1beta1/deployment.go

    	if err != nil {
    		return nil, err
    	}
    	b.WithName(deployment.Name)
    	b.WithNamespace(deployment.Namespace)
    
    	b.WithKind("Deployment")
    	b.WithAPIVersion("apps/v1beta1")
    	return b, nil
    }
    
    // WithKind sets the Kind field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 12.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/client-go/applyconfigurations/apps/v1beta2/daemonset.go

    	if err != nil {
    		return nil, err
    	}
    	b.WithName(daemonSet.Name)
    	b.WithNamespace(daemonSet.Namespace)
    
    	b.WithKind("DaemonSet")
    	b.WithAPIVersion("apps/v1beta2")
    	return b, nil
    }
    
    // WithKind sets the Kind field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 12.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/client-go/applyconfigurations/autoscaling/v1/horizontalpodautoscaler.go

    	if err != nil {
    		return nil, err
    	}
    	b.WithName(horizontalPodAutoscaler.Name)
    	b.WithNamespace(horizontalPodAutoscaler.Namespace)
    
    	b.WithKind("HorizontalPodAutoscaler")
    	b.WithAPIVersion("autoscaling/v1")
    	return b, nil
    }
    
    // WithKind sets the Kind field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 13.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/client-go/applyconfigurations/autoscaling/v2/horizontalpodautoscaler.go

    	if err != nil {
    		return nil, err
    	}
    	b.WithName(horizontalPodAutoscaler.Name)
    	b.WithNamespace(horizontalPodAutoscaler.Namespace)
    
    	b.WithKind("HorizontalPodAutoscaler")
    	b.WithAPIVersion("autoscaling/v2")
    	return b, nil
    }
    
    // WithKind sets the Kind field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 13.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/client-go/applyconfigurations/batch/v1beta1/cronjob.go

    	if err != nil {
    		return nil, err
    	}
    	b.WithName(cronJob.Name)
    	b.WithNamespace(cronJob.Namespace)
    
    	b.WithKind("CronJob")
    	b.WithAPIVersion("batch/v1beta1")
    	return b, nil
    }
    
    // WithKind sets the Kind field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 11.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    	if err != nil {
    		return nil, nil, err
    	}
    	versionedPatchOptions, err := a.group.Creater.New(optionsExternalVersion.WithKind("PatchOptions"))
    	if err != nil {
    		return nil, nil, err
    	}
    	versionedUpdateOptions, err := a.group.Creater.New(optionsExternalVersion.WithKind("UpdateOptions"))
    	if err != nil {
    		return nil, nil, err
    	}
    
    	var versionedDeleteOptions runtime.Object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  8. pkg/apis/admission/register.go

    // Kind takes an unqualified kind and returns a Group qualified GroupKind
    func Kind(kind string) schema.GroupKind {
    	return SchemeGroupVersion.WithKind(kind).GroupKind()
    }
    
    // Resource takes an unqualified resource and returns a Group qualified GroupResource
    func Resource(resource string) schema.GroupResource {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 19 16:17:37 UTC 2017
    - 1.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/register.go

    // Kind takes an unqualified kind and returns back a Group qualified GroupKind
    func Kind(kind string) schema.GroupKind {
    	return SchemeGroupVersion.WithKind(kind).GroupKind()
    }
    
    // Resource takes an unqualified resource and returns back a Group qualified GroupResource
    func Resource(resource string) schema.GroupResource {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 18:54:02 UTC 2017
    - 1.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/certificates/v1beta1/register.go

    var SchemeGroupVersion = schema.GroupVersion{Group: GroupName, Version: "v1beta1"}
    
    // Kind takes an unqualified kind and returns a Group qualified GroupKind
    func Kind(kind string) schema.GroupKind {
    	return SchemeGroupVersion.WithKind(kind).GroupKind()
    }
    
    // Resource takes an unqualified resource and returns a Group qualified GroupResource
    func Resource(resource string) schema.GroupResource {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 18:54:02 UTC 2017
    - 1.9K bytes
    - Viewed (0)
Back to top