Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 59 for ReplicaSetSpec (0.63 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/apps/v1/replicasetspec.go

    	Template        *corev1.PodTemplateSpecApplyConfiguration `json:"template,omitempty"`
    }
    
    // ReplicaSetSpecApplyConfiguration constructs an declarative configuration of the ReplicaSetSpec type for use with
    // apply.
    func ReplicaSetSpec() *ReplicaSetSpecApplyConfiguration {
    	return &ReplicaSetSpecApplyConfiguration{}
    }
    
    // WithReplicas sets the Replicas field in the declarative configuration to the given value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/apps/v1beta2/replicasetspec.go

    	Template        *corev1.PodTemplateSpecApplyConfiguration `json:"template,omitempty"`
    }
    
    // ReplicaSetSpecApplyConfiguration constructs an declarative configuration of the ReplicaSetSpec type for use with
    // apply.
    func ReplicaSetSpec() *ReplicaSetSpecApplyConfiguration {
    	return &ReplicaSetSpecApplyConfiguration{}
    }
    
    // WithReplicas sets the Replicas field in the declarative configuration to the given value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/apis/example2/v1/zz_generated.deepcopy.go

    func (in *ReplicaSetSpec) DeepCopyInto(out *ReplicaSetSpec) {
    	*out = *in
    	if in.Replicas != nil {
    		in, out := &in.Replicas, &out.Replicas
    		*out = new(int32)
    		**out = **in
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ReplicaSetSpec.
    func (in *ReplicaSetSpec) DeepCopy() *ReplicaSetSpec {
    	if in == nil {
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/apis/example2/v1/conversion.go

    )
    
    func Convert_example_ReplicaSetSpec_To_v1_ReplicaSetSpec(in *example.ReplicaSetSpec, out *ReplicaSetSpec, s conversion.Scope) error {
    	out.Replicas = new(int32)
    	*out.Replicas = int32(in.Replicas)
    	return nil
    }
    
    func Convert_v1_ReplicaSetSpec_To_example_ReplicaSetSpec(in *ReplicaSetSpec, out *example.ReplicaSetSpec, s conversion.Scope) error {
    	if in.Replicas != nil {
    		out.Replicas = *in.Replicas
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 24 18:21:00 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/apis/example2/v1/zz_generated.conversion.go

    		return err
    	}
    	if err := s.AddConversionFunc((*example.ReplicaSetSpec)(nil), (*ReplicaSetSpec)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_example_ReplicaSetSpec_To_v1_ReplicaSetSpec(a.(*example.ReplicaSetSpec), b.(*ReplicaSetSpec), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddConversionFunc((*ReplicaSetSpec)(nil), (*example.ReplicaSetSpec)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/example2/v1/generated.pb.go

    var xxx_messageInfo_ReplicaSet proto.InternalMessageInfo
    
    func (m *ReplicaSetSpec) Reset()      { *m = ReplicaSetSpec{} }
    func (*ReplicaSetSpec) ProtoMessage() {}
    func (*ReplicaSetSpec) Descriptor() ([]byte, []int) {
    	return fileDescriptor_c0d8f6d73eb5bf83, []int{1}
    }
    func (m *ReplicaSetSpec) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *ReplicaSetSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/apis/example2/v1/generated.proto

      // +optional
      optional ReplicaSetStatus status = 3;
    }
    
    // ReplicaSetSpec is the specification of a ReplicaSet.
    message ReplicaSetSpec {
      // Replicas is the number of desired replicas.
      // This is a pointer to distinguish between explicit zero and unspecified.
      // Defaults to 1.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/apis/example/zz_generated.deepcopy.go

    func (in *ReplicaSetSpec) DeepCopyInto(out *ReplicaSetSpec) {
    	*out = *in
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ReplicaSetSpec.
    func (in *ReplicaSetSpec) DeepCopy() *ReplicaSetSpec {
    	if in == nil {
    		return nil
    	}
    	out := new(ReplicaSetSpec)
    	in.DeepCopyInto(out)
    	return out
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 6.1K bytes
    - Viewed (0)
  9. pkg/apis/extensions/v1beta1/defaults_test.go

    				Spec: extensionsv1beta1.ReplicaSetSpec{
    					Template: v1.PodTemplateSpec{
    						ObjectMeta: metav1.ObjectMeta{
    							Labels: map[string]string{
    								"foo": "bar",
    							},
    						},
    					},
    				},
    			},
    			expectReplicas: 1,
    		},
    		{
    			rs: extensionsv1beta1.ReplicaSet{
    				Spec: extensionsv1beta1.ReplicaSetSpec{
    					Replicas: utilpointer.Int32(0),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/apis/example2/v1/types.go

    	// +optional
    	Status ReplicaSetStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
    }
    
    // ReplicaSetSpec is the specification of a ReplicaSet.
    type ReplicaSetSpec struct {
    	// Replicas is the number of desired replicas.
    	// This is a pointer to distinguish between explicit zero and unspecified.
    	// Defaults to 1.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 29 00:35:16 UTC 2019
    - 2.7K bytes
    - Viewed (0)
Back to top