Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,247 for Paused (0.16 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintController.kt

            }
    
            override fun pause(): WritingState {
                removeListener(fingerprintWriter)
                return Paused(fingerprintWriter, buildScopedSpoolFile, projectScopedSpoolFile)
            }
    
            override fun dispose() =
                pause().dispose()
        }
    
        private
        inner class Paused(
            private val fingerprintWriter: ConfigurationCacheFingerprintWriter,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  2. src/cmd/test2json/main.go

    //
    // The Action field is one of a fixed set of action descriptions:
    //
    //	start  - the test binary is about to be executed
    //	run    - the test has started running
    //	pause  - the test has been paused
    //	cont   - the test has continued running
    //	pass   - the test passed
    //	bench  - the benchmark printed log output but did not fail
    //	fail   - the test or benchmark failed
    //	output - the test printed output
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.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. 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)
  6. 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)
  7. pkg/apis/apps/types.go

    	// VolumeClaimTemplates when the StatefulSet is scaled down. The default
    	// policy of `Retain` causes PVCs to not be affected by a scaledown. The
    	// `Delete` policy causes the associated PVCs for any excess pods above
    	// the replica count to be deleted.
    	WhenScaled PersistentVolumeClaimRetentionPolicyType
    }
    
    // StatefulSetOrdinals describes the policy used for replica ordinal assignment
    // in this StatefulSet.
    type StatefulSetOrdinals struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:09:29 UTC 2023
    - 36.4K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. staging/src/k8s.io/api/apps/v1/types_swagger_doc_generated.go

    	"":            "StatefulSetPersistentVolumeClaimRetentionPolicy describes the policy used for PVCs created from the StatefulSet VolumeClaimTemplates.",
    	"whenDeleted": "WhenDeleted specifies what happens to PVCs created from StatefulSet VolumeClaimTemplates when the StatefulSet is deleted. The default policy of `Retain` causes PVCs to not be affected by StatefulSet deletion. The `Delete` policy causes those PVCs to be deleted.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 32.5K bytes
    - Viewed (0)
Back to top