Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for decrease (0.19 sec)

  1. common-protos/k8s.io/apimachinery/pkg/api/resource/generated.proto

    // it had, and will use the same type again when it is serialized.
    //
    // Before serializing, Quantity will be put in "canonical form".
    // This means that Exponent/suffix will be adjusted up or down (with a
    // corresponding increase or decrease in Mantissa) such that:
    //
    // - No precision is lost
    // - No fractional digits will be emitted
    // - The exponent (or suffix) is as large as possible.
    //
    // The sign will be omitted unless the number is negative.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 3.9K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/autoscaling/v2beta2/generated.proto

      // be used).  The desired replica count is calculated multiplying the
      // ratio between the target value and the current value by the current
      // number of pods.  Ergo, metrics used must decrease as the pod count is
      // increased, and vice-versa.  See the individual metric source types for
      // more information about how each type of metric must respond.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 21K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/autoscaling/v2beta1/generated.proto

      // be used).  The desired replica count is calculated multiplying the
      // ratio between the target value and the current value by the current
      // number of pods.  Ergo, metrics used must decrease as the pod count is
      // increased, and vice-versa.  See the individual metric source types for
      // more information about how each type of metric must respond.
      // +optional
      repeated MetricSpec metrics = 4;
    }
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 21.2K bytes
    - Viewed (0)
  4. common-protos/k8s.io/apimachinery/pkg/apis/testapigroup/v1/generated.proto

      // More info: http://kubernetes.io/docs/user-guide/carp-states#restartpolicy
      // +optional
      optional string restartPolicy = 3;
    
      // Optional duration in seconds the carp needs to terminate gracefully. May be decreased in delete request.
      // Value must be non-negative integer. The value zero indicates delete immediately.
      // If this value is nil, the default grace period will be used instead.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 7.7K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/core/v1/generated.proto

      // +optional
      optional string restartPolicy = 3;
    
      // Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request.
      // Value must be non-negative integer. The value zero indicates stop immediately via
      // the kill signal (no opportunity to shut down).
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 255.8K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/autoscaling/v2/generated.proto

      // be used).  The desired replica count is calculated multiplying the
      // ratio between the target value and the current value by the current
      // number of pods.  Ergo, metrics used must decrease as the pod count is
      // increased, and vice-versa.  See the individual metric source types for
      // more information about how each type of metric must respond.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 21.3K bytes
    - Viewed (0)
  7. istioctl/pkg/cli/context.go

    	rc, err := kube.DefaultRestConfig(kubeconfig, configContext, func(config *rest.Config) {
    		// We are running a one-off command locally, so we don't need to worry too much about rate limiting
    		// Bumping this up greatly decreases install time
    		config.QPS = 50
    		config.Burst = 100
    	})
    	if err != nil {
    		return nil, err
    	}
    	return kube.NewCLIClient(kube.NewClientConfigForRestConfig(rc), kube.WithRevision(revision))
    }
    
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Apr 02 08:32:06 GMT 2024
    - 6.4K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/apps/v1beta1/generated.proto

      // +optional
      optional int32 collisionCount = 8;
    }
    
    // DeploymentStrategy describes how to replace existing pods with new ones.
    message DeploymentStrategy {
      // Type of deployment. Can be "Recreate" or "RollingUpdate". Default is RollingUpdate.
      // +optional
      optional string type = 1;
    
      // Rolling update config params. Present only if DeploymentStrategyType =
      // RollingUpdate.
      // ---
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 24K bytes
    - Viewed (0)
  9. manifests/addons/dashboards/pilot-dashboard.json

                },
                {
                  "datasource": {
                    "type": "prometheus",
                    "uid": "${datasource}"
                  },
                  "expr": "sum(increase(envoy_server_hot_restart_epoch[1m]))",
                  "format": "time_series",
                  "intervalFactor": 1,
                  "legendFormat": "Envoy Restarts",
                  "refId": "B"
                }
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Mar 27 03:47:04 GMT 2024
    - 61K bytes
    - Viewed (0)
  10. Makefile.core.mk

    # disable_pgv: disables protoc-gen-validation. This is not used buts adds many MB to Envoy protos
    # not set vtprotobuf: this adds some performance improvement, but at a binary cost increase that is not worth it for the agent
    AGENT_TAGS=agent,disable_pgv
    # disable_pgv: disables protoc-gen-validation. This is not used buts adds many MB to Envoy protos
    # vtprotobuf: enables optimized protobuf marshalling.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Apr 19 19:41:41 GMT 2024
    - 22.5K bytes
    - Viewed (0)
Back to top