Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for CUSTOM (0.13 sec)

  1. docs/metrics/prometheus/grafana/bucket/minio-bucket.json

            "type": "prometheus",
            "uid": "${DS_PROMETHEUS}"
          },
          "fieldConfig": {
            "defaults": {
              "color": {
                "mode": "palette-classic"
              },
              "custom": {
                "axisBorderShow": false,
                "axisCenteredZero": false,
                "axisColorMode": "text",
                "axisLabel": "",
                "axisPlacement": "auto",
                "barAlignment": 0,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 11:11:51 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  2. samples/addons/grafana.yaml

    ame","value":"Workload"},{"id":"unit","value":"short"},{"id":"decimals","value":2},{"id":"custom.align"},{"id":"custom.hidden","value":true}]},{"matcher":{"id":"byName","options":"Time"},"properties":[{"id":"custom.hidden","value":true}]},{"matcher":{"id":"byName","options":"Value #A"},"properties":[{"id":"displayName","value":"Requests"},{"id":"unit","value":"ops"},{"id":"decimals","value":2},{"id":"custom.align"}]},{"matcher":{"id":"byName","options":"Value #B"},"properties":[{"id":"displayName","value":"P50...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  3. fastapi/applications.py

                Doc(
                    """
                    The default response class to be used.
    
                    Read more in the
                    [FastAPI docs for Custom Response - HTML, Stream, File, others](https://fastapi.tiangolo.com/advanced/custom-response/#default-response-class).
    
                    **Example**
    
                    ```python
                    from fastapi import FastAPI
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        }
    
        // CustomTfOp is just a wrapper around a TF op, we export the custom Op
        // not the wrapper, so we fetch the op from the region.
        if (auto custom_op = dyn_cast<mlir::TFL::CustomTfOp>(inst)) {
          // If we have custom op with a region, then use the first op in the
          // region, if it exists, otherwise just use params for custom op.
          if (!custom_op.getBody().empty()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  5. cluster/gce/gci/configure-helper.sh

      if [ -n "${CUSTOM_NETD_YAML:-}" ]; then
        # Replace with custom GCP netd deployment.
        cat > "${netd_file}" <<EOF
    $CUSTOM_NETD_YAML
    EOF
      fi
    }
    
    # A helper function to set up a custom yaml for a k8s addon.
    #
    # $1: addon category under /etc/kubernetes
    # $2: manifest source dir
    # $3: manifest file
    # $4: custom yaml
    function setup-addon-custom-yaml {
      local -r manifest_path="/etc/kubernetes/$1/$2/$3"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  6. cluster/gce/util.sh

    KUBE_APISERVER_GODEBUG: $(yaml-quote "${KUBE_APISERVER_GODEBUG}")
    EOF
        fi
        # ETCD_IMAGE (if set) allows to use a custom etcd image.
        if [ -n "${ETCD_IMAGE:-}" ]; then
          cat >>"$file" <<EOF
    ETCD_IMAGE: $(yaml-quote "${ETCD_IMAGE}")
    EOF
        fi
        # ETCD_DOCKER_REPOSITORY (if set) allows to use a custom etcd docker repository to pull the etcd image from.
        if [ -n "${ETCD_DOCKER_REPOSITORY:-}" ]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let summary = "Wrapper Op for TF custom ops.";
    
      let description = [{
        A wrapper op around any Custom TF op. These includes ops defined using
        custom_opdefs or linked which are not defined in TF dialect.
        This Op just wraps the custom op inside a region.
        Note #1, this Op will not include TF Lite custom ops defined using CustomOp.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  8. pkg/config/validation/validation.go

    // We don't try to check that what is inside the %% is one of Envoy recognized values, we just prevent invalid config.
    // See: https://www.envoyproxy.io/docs/envoy/latest/configuration/http/http_conn_man/headers.html#custom-request-response-headers
    func ValidateHTTPHeaderValue(value string) error {
    	if !httpHeaderValueRegexp.MatchString(value) {
    		return fmt.Errorf("header value configuration %s is invalid", value)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/ops.mlir

      // custom op for "tfl.max_pooling_with_argmax_2d"(%arg0) {filter_h = 2 : i32, filter_w = 2 : i32, padding = "SAME", stride_h = 2 : i32, stride_w = 2 : i32} : (tensor<1x64x64x32xf32>) -> (tensor<1x32x32x32xf32>, tensor<1x32x32x32xf32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	"k8s.io/apiserver/pkg/warning"
    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    )
    
    // TestValidationExpressions tests CEL integration with custom resource values and OpenAPIv3.
    func TestValidationExpressions(t *testing.T) {
    	tests := []struct {
    		name          string
    		schema        *schema.Structural
    		oldSchema     *schema.Structural
    		obj           interface{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
Back to top