Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 191 for ActiveDeadlineSeconds (0.24 sec)

  1. pkg/apis/batch/zz_generated.deepcopy.go

    	}
    	if in.SuccessPolicy != nil {
    		in, out := &in.SuccessPolicy, &out.SuccessPolicy
    		*out = new(SuccessPolicy)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.ActiveDeadlineSeconds != nil {
    		in, out := &in.ActiveDeadlineSeconds, &out.ActiveDeadlineSeconds
    		*out = new(int64)
    		**out = **in
    	}
    	if in.BackoffLimit != nil {
    		in, out := &in.BackoffLimit, &out.BackoffLimit
    		*out = new(int32)
    		**out = **in
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/batch/v1/zz_generated.deepcopy.go

    		*out = new(int32)
    		**out = **in
    	}
    	if in.Completions != nil {
    		in, out := &in.Completions, &out.Completions
    		*out = new(int32)
    		**out = **in
    	}
    	if in.ActiveDeadlineSeconds != nil {
    		in, out := &in.ActiveDeadlineSeconds, &out.ActiveDeadlineSeconds
    		*out = new(int64)
    		**out = **in
    	}
    	if in.PodFailurePolicy != nil {
    		in, out := &in.PodFailurePolicy, &out.PodFailurePolicy
    		*out = new(PodFailurePolicy)
    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/apimachinery/pkg/apis/testapigroup/types.go

    	// Optional duration in seconds relative to the StartTime that the carp may be active on a node
    	// before the system actively tries to terminate the carp; value must be positive integer
    	// +optional
    	ActiveDeadlineSeconds *int64
    	// NodeSelector is a selector which must be true for the carp to fit on a node
    	// +optional
    	NodeSelector map[string]string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 03 06:34:52 UTC 2019
    - 4.3K bytes
    - Viewed (0)
  4. pkg/controller/job/job_controller.go

    	if util.IsJobFinished(curJob) {
    		jm.cleanupPodFinalizers(curJob)
    	}
    
    	// check if need to add a new rsync for ActiveDeadlineSeconds
    	if curJob.Status.StartTime != nil {
    		curADS := curJob.Spec.ActiveDeadlineSeconds
    		if curADS == nil {
    			return
    		}
    		oldADS := oldJob.Spec.ActiveDeadlineSeconds
    		if oldADS == nil || *oldADS != *curADS {
    			passed := jm.clock.Since(curJob.Status.StartTime.Time)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  5. pkg/volume/plugins.go

    	// RecyclerMinimumTimeout is the minimum amount of time in seconds for the
    	// recycler pod's ActiveDeadlineSeconds attribute. Added to the minimum
    	// timeout is the increment per Gi of capacity.
    	RecyclerMinimumTimeout int
    
    	// RecyclerTimeoutIncrement is the number of seconds added to the recycler
    	// pod's ActiveDeadlineSeconds for each Gi of capacity in the persistent
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  6. pkg/apis/batch/v1/zz_generated.conversion.go

    	out.Parallelism = (*int32)(unsafe.Pointer(in.Parallelism))
    	out.Completions = (*int32)(unsafe.Pointer(in.Completions))
    	out.ActiveDeadlineSeconds = (*int64)(unsafe.Pointer(in.ActiveDeadlineSeconds))
    	out.PodFailurePolicy = (*batch.PodFailurePolicy)(unsafe.Pointer(in.PodFailurePolicy))
    	out.SuccessPolicy = (*batch.SuccessPolicy)(unsafe.Pointer(in.SuccessPolicy))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 36.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/v1/generated.pb.go

    			i--
    			dAtA[i] = 0xa
    			i = encodeVarintGenerated(dAtA, i, uint64(baseI-i))
    			i--
    			dAtA[i] = 0x3a
    		}
    	}
    	if m.ActiveDeadlineSeconds != nil {
    		i = encodeVarintGenerated(dAtA, i, uint64(*m.ActiveDeadlineSeconds))
    		i--
    		dAtA[i] = 0x28
    	}
    	if m.TerminationGracePeriodSeconds != nil {
    		i = encodeVarintGenerated(dAtA, i, uint64(*m.TerminationGracePeriodSeconds))
    		i--
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 57K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/apis/example/v1/generated.pb.go

    			i--
    			dAtA[i] = 0xa
    			i = encodeVarintGenerated(dAtA, i, uint64(baseI-i))
    			i--
    			dAtA[i] = 0x3a
    		}
    	}
    	if m.ActiveDeadlineSeconds != nil {
    		i = encodeVarintGenerated(dAtA, i, uint64(*m.ActiveDeadlineSeconds))
    		i--
    		dAtA[i] = 0x28
    	}
    	if m.TerminationGracePeriodSeconds != nil {
    		i = encodeVarintGenerated(dAtA, i, uint64(*m.TerminationGracePeriodSeconds))
    		i--
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 56.9K bytes
    - Viewed (0)
  9. pkg/quota/v1/evaluator/core/pods.go

    	return result, nil
    }
    
    func isBestEffort(pod *corev1.Pod) bool {
    	return qos.GetPodQOS(pod) == corev1.PodQOSBestEffort
    }
    
    func isTerminating(pod *corev1.Pod) bool {
    	if pod.Spec.ActiveDeadlineSeconds != nil && *pod.Spec.ActiveDeadlineSeconds >= int64(0) {
    		return true
    	}
    	return false
    }
    
    func podMatchesSelector(pod *corev1.Pod, selector corev1.ScopedResourceSelectorRequirement) (bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 05 00:02:47 UTC 2023
    - 17.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.29.0/batch.v1.Job.json

            "fieldsType": "fieldsTypeValue",
            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "spec": {
        "parallelism": 1,
        "completions": 2,
        "activeDeadlineSeconds": 3,
        "podFailurePolicy": {
          "rules": [
            {
              "action": "actionValue",
              "onExitCodes": {
                "containerName": "containerNameValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 54.4K bytes
    - Viewed (0)
Back to top