Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 68 for fullyLabeledReplicas (0.42 sec)

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

    				return fmt.Errorf("proto: wrong wireType = %d for field FullyLabeledReplicas", wireType)
    			}
    			m.FullyLabeledReplicas = 0
    			for shift := uint(0); ; shift += 7 {
    				if shift >= 64 {
    					return ErrIntOverflowGenerated
    				}
    				if iNdEx >= l {
    					return io.ErrUnexpectedEOF
    				}
    				b := dAtA[iNdEx]
    				iNdEx++
    				m.FullyLabeledReplicas |= int32(b&0x7F) << shift
    				if b < 0x80 {
    					break
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 217.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1beta2/generated.pb.go

    				return fmt.Errorf("proto: wrong wireType = %d for field FullyLabeledReplicas", wireType)
    			}
    			m.FullyLabeledReplicas = 0
    			for shift := uint(0); ; shift += 7 {
    				if shift >= 64 {
    					return ErrIntOverflowGenerated
    				}
    				if iNdEx >= l {
    					return io.ErrUnexpectedEOF
    				}
    				b := dAtA[iNdEx]
    				iNdEx++
    				m.FullyLabeledReplicas |= int32(b&0x7F) << shift
    				if b < 0x80 {
    					break
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apps/v1beta2/types_swagger_doc_generated.go

    	"replicas":             "Replicas is the most recently observed number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller",
    	"fullyLabeledReplicas": "The number of pods that have labels matching the labels of the pod template of the replicaset.",
    	"readyReplicas":        "readyReplicas is the number of pods targeted by this ReplicaSet controller with a Ready Condition.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:34:30 UTC 2023
    - 34.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apps/v1/types_swagger_doc_generated.go

    	"replicas":             "Replicas is the most recently observed number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller",
    	"fullyLabeledReplicas": "The number of pods that have labels matching the labels of the pod template of the replicaset.",
    	"readyReplicas":        "readyReplicas is the number of pods targeted by this ReplicaSet with a Ready Condition.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/extensions/v1beta1/generated.pb.go

    				return fmt.Errorf("proto: wrong wireType = %d for field FullyLabeledReplicas", wireType)
    			}
    			m.FullyLabeledReplicas = 0
    			for shift := uint(0); ; shift += 7 {
    				if shift >= 64 {
    					return ErrIntOverflowGenerated
    				}
    				if iNdEx >= l {
    					return io.ErrUnexpectedEOF
    				}
    				b := dAtA[iNdEx]
    				iNdEx++
    				m.FullyLabeledReplicas |= int32(b&0x7F) << shift
    				if b < 0x80 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 293.3K bytes
    - Viewed (0)
  6. pkg/apis/core/validation/validation_test.go

    		name:                 "invalid replicas",
    		replicas:             -1,
    		fullyLabeledReplicas: 3,
    		readyReplicas:        2,
    		availableReplicas:    1,
    		observedGeneration:   2,
    		expectedErr:          true,
    	}, {
    		name:                 "invalid fullyLabeledReplicas",
    		replicas:             3,
    		fullyLabeledReplicas: -1,
    		readyReplicas:        2,
    		availableReplicas:    1,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/apps/v1/generated.proto

      optional int32 replicas = 1;
    
      // The number of pods that have labels matching the labels of the pod template of the replicaset.
      // +optional
      optional int32 fullyLabeledReplicas = 2;
    
      // readyReplicas is the number of pods targeted by this ReplicaSet with a Ready Condition.
      // +optional
      optional int32 readyReplicas = 4;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  8. pkg/apis/apps/types.go

    type ReplicaSetStatus struct {
    	// Replicas is the number of actual replicas.
    	Replicas int32
    
    	// The number of pods that have labels matching the labels of the pod template of the replicaset.
    	// +optional
    	FullyLabeledReplicas int32
    
    	// The number of ready replicas for this replica set.
    	// +optional
    	ReadyReplicas int32
    
    	// The number of available replicas (ready for at least minReadySeconds) for this replica set.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:09:29 UTC 2023
    - 36.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/apps/v1/generated.proto

      optional int32 replicas = 1;
    
      // The number of pods that have labels matching the labels of the pod template of the replicaset.
      // +optional
      optional int32 fullyLabeledReplicas = 2;
    
      // readyReplicas is the number of pods targeted by this ReplicaSet with a Ready Condition.
      // +optional
      optional int32 readyReplicas = 4;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/apps/v1beta2/generated.proto

      optional int32 replicas = 1;
    
      // The number of pods that have labels matching the labels of the pod template of the replicaset.
      // +optional
      optional int32 fullyLabeledReplicas = 2;
    
      // readyReplicas is the number of pods targeted by this ReplicaSet controller with a Ready Condition.
      // +optional
      optional int32 readyReplicas = 4;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 36.4K bytes
    - Viewed (0)
Back to top