Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 3,090 for paused (0.28 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/openapi/enablement_test.go

    							Default:     "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1beta1/types_swagger_doc_generated.go

    	"revisionHistoryLimit":    "revisionHistoryLimit is the number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 2.",
    	"paused":                  "paused indicates that the deployment is paused.",
    	"rollbackTo":              "DEPRECATED. rollbackTo is the config this deployment is rolling back to. Will be cleared after rollback is done.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:34:30 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  3. pkg/controller/deployment/util/deployment_util.go

    	TimedOutReason = "ProgressDeadlineExceeded"
    	// PausedDeployReason is added in a deployment when it is paused. Lack of progress shouldn't be
    	// estimated once a deployment is paused.
    	PausedDeployReason = "DeploymentPaused"
    	// ResumedDeployReason is added in a deployment when it is resumed. Useful for not failing accidentally
    	// deployments that paused amidst a rollout and are bounded by a deadline.
    	ResumedDeployReason = "DeploymentResumed"
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 07:09:11 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apps/v1/types.go

    	// +optional
    	RevisionHistoryLimit *int32 `json:"revisionHistoryLimit,omitempty" protobuf:"varint,6,opt,name=revisionHistoryLimit"`
    
    	// Indicates that the deployment is paused.
    	// +optional
    	Paused bool `json:"paused,omitempty" protobuf:"varint,7,opt,name=paused"`
    
    	// The maximum time in seconds for a deployment to make progress before it
    	// is considered to be failed. The deployment controller will continue to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  5. pkg/apis/apps/v1/conversion_test.go

    				MinReadySeconds:      2,
    				Paused:               true,
    				Template: api.PodTemplateSpec{
    					Spec: api.PodSpec{
    						SecurityContext: new(api.PodSecurityContext),
    					},
    				},
    			},
    			deploymentSpec2: &appsv1.DeploymentSpec{
    				Replicas:             replica,
    				RevisionHistoryLimit: revisionHistoryLimit,
    				MinReadySeconds:      2,
    				Paused:               true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/apps/v1beta2/types.go

    	// +optional
    	RevisionHistoryLimit *int32 `json:"revisionHistoryLimit,omitempty" protobuf:"varint,6,opt,name=revisionHistoryLimit"`
    
    	// Indicates that the deployment is paused.
    	// +optional
    	Paused bool `json:"paused,omitempty" protobuf:"varint,7,opt,name=paused"`
    
    	// The maximum time in seconds for a deployment to make progress before it
    	// is considered to be failed. The deployment controller will continue to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  7. pkg/apis/apps/v1beta2/conversion_test.go

    				MinReadySeconds:      2,
    				Paused:               true,
    				Template: api.PodTemplateSpec{
    					Spec: api.PodSpec{
    						SecurityContext: new(api.PodSecurityContext),
    					},
    				},
    			},
    			deploymentSpec2: &v1beta2.DeploymentSpec{
    				Replicas:             replica,
    				RevisionHistoryLimit: revisionHistoryLimit,
    				MinReadySeconds:      2,
    				Paused:               true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  8. pkg/apis/apps/v1beta1/zz_generated.conversion.go

    		return err
    	}
    	out.MinReadySeconds = in.MinReadySeconds
    	out.RevisionHistoryLimit = (*int32)(unsafe.Pointer(in.RevisionHistoryLimit))
    	out.Paused = in.Paused
    	out.RollbackTo = (*apps.RollbackConfig)(unsafe.Pointer(in.RollbackTo))
    	out.ProgressDeadlineSeconds = (*int32)(unsafe.Pointer(in.ProgressDeadlineSeconds))
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 15:48:09 UTC 2022
    - 52.9K bytes
    - Viewed (0)
  9. pkg/apis/apps/types.go

    	// "retaining all old ReplicaSets".
    	// +optional
    	RevisionHistoryLimit *int32
    
    	// Indicates that the deployment is paused and will not be processed by the
    	// deployment controller.
    	// +optional
    	Paused bool
    
    	// DEPRECATED.
    	// The config this deployment is rolling back to. Will be cleared after rollback is done.
    	// +optional
    	RollbackTo *RollbackConfig
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:09:29 UTC 2023
    - 36.4K bytes
    - Viewed (0)
  10. src/runtime/mstats.go

    	// and only the garbage collector can run.
    	PauseTotalNs uint64
    
    	// PauseNs is a circular buffer of recent GC stop-the-world
    	// pause times in nanoseconds.
    	//
    	// The most recent pause is at PauseNs[(NumGC+255)%256]. In
    	// general, PauseNs[N%256] records the time paused in the most
    	// recent N%256th GC cycle. There may be multiple pauses per
    	// GC cycle; this is the sum of all pauses during a cycle.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
Back to top