Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for Replicas (0.2 sec)

  1. staging/src/k8s.io/api/core/v1/types.go

    type ReplicationControllerSpec struct {
    	// Replicas is the number of desired replicas.
    	// This is a pointer to distinguish between explicit zero and unspecified.
    	// Defaults to 1.
    	// More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller
    	// +optional
    	Replicas *int32 `json:"replicas,omitempty" protobuf:"varint,1,opt,name=replicas"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  2. pkg/apis/core/types.go

    // As the internal representation of a replication controller, it may have either
    // a TemplateRef or a Template set.
    type ReplicationControllerSpec struct {
    	// Replicas is the number of desired replicas.
    	Replicas int32
    
    	// Minimum number of seconds for which a newly created pod should be ready
    	// without any of its container crashing, for it to be considered available.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    							Storage: true,
    							Subresources: &apiextensions.CustomResourceSubresources{
    								Scale: &apiextensions.CustomResourceSubresourceScale{
    									SpecReplicasPath:   ".spec.replicas",
    									StatusReplicasPath: ".status.replicas",
    								},
    							},
    						},
    						{
    							// labelSelectorPath under .status
    							Name:    "version1",
    							Served:  true,
    							Storage: false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    }
    
    var map_ReplicationControllerSpec = map[string]string{
    	"":                "ReplicationControllerSpec is the specification of a replication controller.",
    	"replicas":        "Replicas is the number of desired replicas. This is a pointer to distinguish between explicit zero and unspecified. Defaults to 1. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  5. pkg/apis/core/validation/validation.go

    	msg := "cannot be greater than status.replicas"
    	if status.FullyLabeledReplicas > status.Replicas {
    		allErrs = append(allErrs, field.Invalid(statusPath.Child("fullyLabeledReplicas"), status.FullyLabeledReplicas, msg))
    	}
    	if status.ReadyReplicas > status.Replicas {
    		allErrs = append(allErrs, field.Invalid(statusPath.Child("readyReplicas"), status.ReadyReplicas, msg))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/generated.proto

    message ReplicationControllerSpec {
      // Replicas is the number of desired replicas.
      // This is a pointer to distinguish between explicit zero and unspecified.
      // Defaults to 1.
      // More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller
      // +optional
      optional int32 replicas = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  7. pkg/apis/core/v1/zz_generated.conversion.go

    func autoConvert_v1_ReplicationControllerSpec_To_core_ReplicationControllerSpec(in *v1.ReplicationControllerSpec, out *core.ReplicationControllerSpec, s conversion.Scope) error {
    	if err := metav1.Convert_Pointer_int32_To_int32(&in.Replicas, &out.Replicas, s); err != nil {
    		return err
    	}
    	out.MinReadySeconds = in.MinReadySeconds
    	out.Selector = *(*map[string]string)(unsafe.Pointer(&in.Selector))
    	if in.Template != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  8. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	// Minimum number of replicas in the HorizontalPodAutoscaler for Pilot.
    	AutoscaleMin uint32 `protobuf:"varint,3,opt,name=autoscaleMin,proto3" json:"autoscaleMin,omitempty"`
    	// Maximum number of replicas in the HorizontalPodAutoscaler for Pilot.
    	AutoscaleMax uint32 `protobuf:"varint,4,opt,name=autoscaleMax,proto3" json:"autoscaleMax,omitempty"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

          BuildReduceBody<MaxOp>(element_type, &reduce_scatter.getComputation(),
                                 &rewriter);
        } else {
          // For mean, add replicas in the same group. Then divide the sum by the
          // number of replicas in each group below.
          assert(reduce_op == "Mean");
          BuildReduceBody<AddOp>(element_type, &reduce_scatter.getComputation(),
                                 &rewriter);
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.29.md

    - `Statefulset` now waits for new replicas in tests when removing `.start.ordinal`. ([#119761](https://github.com/kubernetes/kubernetes/pull/119761), [@soltysh](https://github.com/soltysh))
    - `ValidatingAdmissionPolicy` and `ValidatingAdmissionPolicyBinding` objects are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
Back to top