Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for JobList (0.12 sec)

  1. pkg/apis/batch/v1/zz_generated.conversion.go

    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*v1.JobList)(nil), (*batch.JobList)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_JobList_To_batch_JobList(a.(*v1.JobList), b.(*batch.JobList), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*batch.JobList)(nil), (*v1.JobList)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 36.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/batch/v1/zz_generated.deepcopy.go

    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new JobList.
    func (in *JobList) DeepCopy() *JobList {
    	if in == nil {
    		return nil
    	}
    	out := new(JobList)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    func (in *JobList) DeepCopyObject() runtime.Object {
    	if c := in.DeepCopy(); c != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  3. pkg/apis/batch/zz_generated.deepcopy.go

    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new JobList.
    func (in *JobList) DeepCopy() *JobList {
    	if in == nil {
    		return nil
    	}
    	out := new(JobList)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    func (in *JobList) DeepCopyObject() runtime.Object {
    	if c := in.DeepCopy(); c != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  4. pkg/apis/batch/register.go

    	AddToScheme = SchemeBuilder.AddToScheme
    )
    
    // Adds the list of known types to the given scheme.
    func addKnownTypes(scheme *runtime.Scheme) error {
    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&Job{},
    		&JobList{},
    		&CronJob{},
    		&CronJobList{},
    	)
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 01 20:39:47 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/batch/v1/register.go

    	AddToScheme        = localSchemeBuilder.AddToScheme
    )
    
    // Adds the list of known types to the given scheme.
    func addKnownTypes(scheme *runtime.Scheme) error {
    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&Job{},
    		&JobList{},
    		&CronJob{},
    		&CronJobList{},
    	)
    	metav1.AddToGroupVersion(scheme, SchemeGroupVersion)
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 05 11:44:23 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/batch/v1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *JobList) APILifecycleIntroduced() (major, minor int) {
    	return 1, 2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/batch/v1/generated.pb.go

    }
    
    var xxx_messageInfo_JobCondition proto.InternalMessageInfo
    
    func (m *JobList) Reset()      { *m = JobList{} }
    func (*JobList) ProtoMessage() {}
    func (*JobList) Descriptor() ([]byte, []int) {
    	return fileDescriptor_79228dc2c4001a22, []int{6}
    }
    func (m *JobList) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *JobList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    	b = b[:cap(b)]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 133K bytes
    - Viewed (0)
  8. pkg/apis/batch/v1/zz_generated.defaults.go

    	scheme.AddTypeDefaultingFunc(&v1.Job{}, func(obj interface{}) { SetObjectDefaults_Job(obj.(*v1.Job)) })
    	scheme.AddTypeDefaultingFunc(&v1.JobList{}, func(obj interface{}) { SetObjectDefaults_JobList(obj.(*v1.JobList)) })
    	return nil
    }
    
    func SetObjectDefaults_CronJob(in *v1.CronJob) {
    	SetDefaults_CronJob(in)
    	corev1.SetDefaults_PodSpec(&in.Spec.JobTemplate.Spec.Template.Spec)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 17 17:31:23 UTC 2021
    - 20.7K bytes
    - Viewed (0)
  9. pkg/registry/batch/job/storage/storage.go

    	store := &genericregistry.Store{
    		NewFunc:                   func() runtime.Object { return &batch.Job{} },
    		NewListFunc:               func() runtime.Object { return &batch.JobList{} },
    		PredicateFunc:             job.MatchJob,
    		DefaultQualifiedResource:  batch.Resource("jobs"),
    		SingularQualifiedResource: batch.Resource("job"),
    
    		CreateStrategy:      job.Strategy,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/batch/v1/generated.proto

      // +optional
      optional string reason = 5;
    
      // Human readable message indicating details about last transition.
      // +optional
      optional string message = 6;
    }
    
    // JobList is a collection of jobs.
    message JobList {
      // Standard list metadata.
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.1K bytes
    - Viewed (0)
Back to top