Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for scaleIO (0.23 sec)

  1. api/openapi-spec/v3/apis__batch__v1_openapi.json

              },
              "scaleIO": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.api.core.v1.ScaleIOVolumeSource"
                  }
                ],
                "description": "scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes."
              },
              "secret": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  2. pkg/generated/openapi/zz_generated.openapi.go

    down, the pods are removed in the opposite order. The alternative policy is `Parallel` which will create pods in parallel to match the desired scale without waiting, and on scale down will delete all pods at once.\n\nPossible enum values:\n - `\"OrderedReady\"` will create pods in strictly increasing order on scale up and strictly decreasing order on scale down, progressing only when the previous pod is ready or terminated. At most one pod will be changed at any time.\n - `\"Parallel\"` will create...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  3. api/openapi-spec/swagger.json

          "properties": {
            "scale": {
              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceSubresourceScale",
              "description": "scale indicates the custom resource should serve a `/scale` subresource that returns an `autoscaling/v1` Scale object."
            },
            "status": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  4. manifests/charts/ztunnel/values.yaml

        prometheus.io/scrape: "true"
    
      # Additional labels to apply on the pod level
      podLabels: {}
    
      # Pod resource configuration
      resources:
        requests:
          cpu: 200m
          # Ztunnel memory scales with the size of the cluster and traffic load
          # While there are many factors, this is enough for ~200k pod cluster or 100k concurrently open connections.
          memory: 512Mi
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:30 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. cmd/kube-proxy/app/server_linux.go

    	if config.MaxPerCore != nil && *config.MaxPerCore > 0 {
    		floor := 0
    		if config.Min != nil {
    			floor = int(*config.Min)
    		}
    		scaled := int(*config.MaxPerCore) * detectNumCPU()
    		if scaled > floor {
    			logger.V(3).Info("GetConntrackMax: using scaled conntrack-max-per-core")
    			return scaled, nil
    		}
    		logger.V(3).Info("GetConntrackMax: using conntrack-min")
    		return floor, nil
    	}
    	return 0, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    MIN_COMBINED, a small bias is introduced where repeated iterations of quantizing
    and dequantizing will introduce a larger and larger error.
    
    *SCALED mode Example*
    
    `SCALED` mode matches the quantization approach used in
    `QuantizeAndDequantize{V2|V3}`.
    
    If the mode is `SCALED`, the quantization is performed by multiplying each
    input value by a scaling_factor.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/quantization/lite/quantize_weights_test.cc

            auto shape = GetAsVector(quant_tensor->shape());
            if (kUseUpdatedHybridSchemeDefault) {
              EXPECT_EQ(quant_tensor->quantization()->scale()->size(), shape[0]);
            } else {
              EXPECT_EQ(quant_tensor->quantization()->scale()->size(), 1);
            }
          } else {
            EXPECT_EQ(quant_tensor->type(), TensorType_FLOAT32);
          }
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  8. pkg/controller/statefulset/stateful_set_utils.go

    			return false
    		}
    	case policy.WhenScaled == delete && policy.WhenDeleted == delete:
    		podScaledDown := !podInOrdinalRange(pod, set)
    		// If a pod is scaled down, there should be no set ref and a pod ref;
    		// if the pod is not scaled down it's the other way around.
    		if podScaledDown == hasOwnerRef(claim, set) {
    			return false
    		}
    		if podScaledDown != hasOwnerRef(claim, pod) {
    			return false
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        auto scaled = rewriter.create<chlo::BroadcastMulOp>(
            op.getLoc(), result_type, iota, op.getDelta(),
            hlo::getBroadcastDimensionsAttr(&rewriter, iota, op.getDelta()));
        rewriter.replaceOpWithNewOp<chlo::BroadcastAddOp>(
            op, result_type, scaled, op.getStart(),
            hlo::getBroadcastDimensionsAttr(&rewriter, scaled, op.getStart()));
        return success();
      }
    };
    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. samples/bookinfo/src/productpage/templates/productpage.html

    {% block metas %}
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    {% endblock %}
    
    <title>Simple Bookstore App</title>
    {% block scripts %}
    <script src="static/tailwind/tailwind.css"></script>
    <script type="text/javascript">
      window.addEventListener("DOMContentLoaded", (event) => {
        const dialog = document.querySelector("dialog");
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top