Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for progressDeadlineSeconds (0.2 sec)

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

    }
    
    func (m *DeploymentSpec) MarshalToSizedBuffer(dAtA []byte) (int, error) {
    	i := len(dAtA)
    	_ = i
    	var l int
    	_ = l
    	if m.ProgressDeadlineSeconds != nil {
    		i = encodeVarintGenerated(dAtA, i, uint64(*m.ProgressDeadlineSeconds))
    		i--
    		dAtA[i] = 0x48
    	}
    	if m.RollbackTo != nil {
    		{
    			size, err := m.RollbackTo.MarshalToSizedBuffer(dAtA[:i])
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1/generated.pb.go

    }
    
    func (m *DeploymentSpec) MarshalToSizedBuffer(dAtA []byte) (int, error) {
    	i := len(dAtA)
    	_ = i
    	var l int
    	_ = l
    	if m.ProgressDeadlineSeconds != nil {
    		i = encodeVarintGenerated(dAtA, i, uint64(*m.ProgressDeadlineSeconds))
    		i--
    		dAtA[i] = 0x48
    	}
    	i--
    	if m.Paused {
    		dAtA[i] = 1
    	} else {
    		dAtA[i] = 0
    	}
    	i--
    	dAtA[i] = 0x38
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 217.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apps/v1beta2/generated.pb.go

    }
    
    func (m *DeploymentSpec) MarshalToSizedBuffer(dAtA []byte) (int, error) {
    	i := len(dAtA)
    	_ = i
    	var l int
    	_ = l
    	if m.ProgressDeadlineSeconds != nil {
    		i = encodeVarintGenerated(dAtA, i, uint64(*m.ProgressDeadlineSeconds))
    		i--
    		dAtA[i] = 0x48
    	}
    	i--
    	if m.Paused {
    		dAtA[i] = 1
    	} else {
    		dAtA[i] = 0
    	}
    	i--
    	dAtA[i] = 0x38
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  4. pkg/apis/apps/validation/validation_test.go

    	errorCases["must be greater than or equal to 0"] = invalidRollbackRevisionDeployment
    
    	// ProgressDeadlineSeconds should be greater than MinReadySeconds
    	invalidProgressDeadlineDeployment := validDeployment()
    	seconds := int32(600)
    	invalidProgressDeadlineDeployment.Spec.ProgressDeadlineSeconds = &seconds
    	invalidProgressDeadlineDeployment.Spec.MinReadySeconds = seconds
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "format": "int32",
              "type": "integer"
            },
            "paused": {
              "description": "Indicates that the deployment is paused.",
              "type": "boolean"
            },
            "progressDeadlineSeconds": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
Back to top