Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for lastSuccessfulTime (0.47 sec)

  1. staging/src/k8s.io/api/batch/v1beta1/generated.pb.go

    			if postIndex < 0 {
    				return ErrInvalidLengthGenerated
    			}
    			if postIndex > l {
    				return io.ErrUnexpectedEOF
    			}
    			if m.LastSuccessfulTime == nil {
    				m.LastSuccessfulTime = &v1.Time{}
    			}
    			if err := m.LastSuccessfulTime.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
    				return err
    			}
    			iNdEx = postIndex
    		default:
    			iNdEx = preIndex
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  2. pkg/apis/batch/zz_generated.deepcopy.go

    		copy(*out, *in)
    	}
    	if in.LastScheduleTime != nil {
    		in, out := &in.LastScheduleTime, &out.LastScheduleTime
    		*out = (*in).DeepCopy()
    	}
    	if in.LastSuccessfulTime != nil {
    		in, out := &in.LastSuccessfulTime, &out.LastSuccessfulTime
    		*out = (*in).DeepCopy()
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CronJobStatus.
    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. staging/src/k8s.io/api/batch/v1/zz_generated.deepcopy.go

    		copy(*out, *in)
    	}
    	if in.LastScheduleTime != nil {
    		in, out := &in.LastScheduleTime, &out.LastScheduleTime
    		*out = (*in).DeepCopy()
    	}
    	if in.LastSuccessfulTime != nil {
    		in, out := &in.LastSuccessfulTime, &out.LastSuccessfulTime
    		*out = (*in).DeepCopy()
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CronJobStatus.
    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. staging/src/k8s.io/api/batch/v1beta1/generated.proto

      optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastScheduleTime = 4;
    
      // Information when was the last time the job successfully completed.
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastSuccessfulTime = 5;
    }
    
    // JobTemplateSpec describes the data a Job should have when created from a template
    message JobTemplateSpec {
      // Standard object's metadata of the jobs created from this template.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. pkg/apis/batch/v1/zz_generated.conversion.go

    	out.Active = *(*[]core.ObjectReference)(unsafe.Pointer(&in.Active))
    	out.LastScheduleTime = (*metav1.Time)(unsafe.Pointer(in.LastScheduleTime))
    	out.LastSuccessfulTime = (*metav1.Time)(unsafe.Pointer(in.LastSuccessfulTime))
    	return nil
    }
    
    // Convert_v1_CronJobStatus_To_batch_CronJobStatus is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 36.6K bytes
    - Viewed (0)
  6. pkg/controller/cronjob/cronjob_controllerv2.go

    			if cronJob.Status.LastSuccessfulTime == nil {
    				cronJob.Status.LastSuccessfulTime = j.Status.CompletionTime
    				updateStatus = true
    			}
    			if j.Status.CompletionTime != nil && j.Status.CompletionTime.After(cronJob.Status.LastSuccessfulTime.Time) {
    				cronJob.Status.LastSuccessfulTime = j.Status.CompletionTime
    				updateStatus = true
    			}
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/batch/v1beta1/generated.proto

      optional k8s.io.apimachinery.pkg.apis.meta.v1.Time lastScheduleTime = 4;
    
      // Information when was the last time the job successfully completed.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.Time lastSuccessfulTime = 5;
    }
    
    // JobTemplateSpec describes the data a Job should have when created from a template
    message JobTemplateSpec {
      // Standard object's metadata of the jobs created from this template.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. pkg/controller/cronjob/cronjob_controllerv2_test.go

    			if tc.ranPreviously && !tc.stillActive {
    				completionTime := tc.jobCreationTime.Add(10 * time.Second)
    				if cjCopy.Status.LastSuccessfulTime == nil || !cjCopy.Status.LastSuccessfulTime.Time.Equal(completionTime) {
    					t.Errorf("cj.status.lastSuccessfulTime: %s expected, got %#v", completionTime, cj.Status.LastSuccessfulTime)
    				}
    			}
    			if len(jc.Jobs) != expectedCreates {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 70.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/batch/v1/types.go

    	// Information when was the last time the job successfully completed.
    	// +optional
    	LastSuccessfulTime *metav1.Time `json:"lastSuccessfulTime,omitempty" protobuf:"bytes,5,opt,name=lastSuccessfulTime"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/batch/v1/generated.pb.go

    			if postIndex < 0 {
    				return ErrInvalidLengthGenerated
    			}
    			if postIndex > l {
    				return io.ErrUnexpectedEOF
    			}
    			if m.LastSuccessfulTime == nil {
    				m.LastSuccessfulTime = &v1.Time{}
    			}
    			if err := m.LastSuccessfulTime.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
    				return err
    			}
    			iNdEx = postIndex
    		default:
    			iNdEx = preIndex
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 133K bytes
    - Viewed (0)
Back to top