Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for qParams (0.16 sec)

  1. cmd/admin-handlers.go

    	if !IsValidObjectPrefix(hip.objPrefix) {
    		err = ErrInvalidObjectName
    		return
    	}
    
    	if len(qParams[mgmtClientToken]) > 0 {
    		hip.clientToken = qParams[mgmtClientToken][0]
    	}
    	if _, ok := qParams[mgmtForceStart]; ok {
    		hip.forceStart = true
    	}
    	if _, ok := qParams[mgmtForceStop]; ok {
    		hip.forceStop = true
    	}
    
    	// Invalid request conditions:
    	//
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/optimize.cc

    // value of `indices` are from 0 to n-1, the output tensor are identical to the
    // `params`.
    bool CanOptimizeIdentityGatherNdOrScatterNdOp(Value params,
                                                  DenseIntElementsAttr indices,
                                                  Type output_type) {
      auto params_type = mlir::dyn_cast<RankedTensorType>(params.getType());
      auto indices_type = mlir::dyn_cast<RankedTensorType>(indices.getType());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	}
    
    	re = &RequiresExpr{Params: params, Requirements: requirements}
    	if r := fn(re); r != nil {
    		return r
    	}
    	return re
    }
    
    func (re *RequiresExpr) GoString() string {
    	return re.goString(0, "")
    }
    
    func (re *RequiresExpr) goString(indent int, field string) string {
    	var params strings.Builder
    	if len(re.Params) == 0 {
    		fmt.Fprintf(&params, "%*sParams: nil", indent+2, "")
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  4. cluster/gce/gci/configure-helper.sh

        exit 1
      fi
    
      params+=("--agent-port=$1")
      params+=("--health-port=$2")
      params+=("--admin-port=$3")
      params+=("--kubeconfig-qps=75")
      params+=("--kubeconfig-burst=150")
      params+=("--keepalive-time=60s")
      params+=("--frontend-keepalive-time=60s")
      konnectivity_args=""
      for param in "${params[@]}"; do
        konnectivity_args+=", \"${param}\""
      done
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  5. tensorflow/c/c_api.cc

    bool ValidateConstWhileParams(const TF_WhileParams& params, TF_Status* s) {
      if (params.cond_graph == nullptr || params.body_graph == nullptr ||
          params.cond_graph->parent == nullptr ||
          params.cond_graph->parent != params.body_graph->parent ||
          params.cond_graph->parent_inputs != params.body_graph->parent_inputs ||
          params.ninputs <= 0 || params.cond_inputs == nullptr ||
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  6. fastapi/routing.py

    from typing import (
        Any,
        Callable,
        Coroutine,
        Dict,
        List,
        Optional,
        Sequence,
        Set,
        Tuple,
        Type,
        Union,
    )
    
    from fastapi import params
    from fastapi._compat import (
        ModelField,
        Undefined,
        _get_model_config,
        _model_dump,
        _normalize_errors,
        lenient_issubclass,
    )
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

            params, indices, axis, batch_dims);
    
      int64_t params_rank = params_type.getRank();
      int64_t indices_rank = indices_type.getRank();
    
      // params rank is guaranteed to be at least 1.
      // Produces an output tensor with shape:
      // params.shape[:axis] + indices.shape + params.shape[axis + 1:]
      std::vector<int64_t> shape(params_type.getShape());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        return std::nullopt;
      }
      BufferOffset<tflite::QuantizationParameters> q_params = 0;
      if (auto qtype =
              mlir::dyn_cast<mlir::quant::UniformQuantizedType>(element_type)) {
        std::vector<float> scales = {static_cast<float>(qtype.getScale())};
        std::vector<int64_t> zero_points = {qtype.getZeroPoint()};
        q_params = tflite::CreateQuantizationParameters(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  9. tests/integration/pilot/common/routing.go

    		templateVars: func(src echo.Callers, dests echo.Instances) map[string]any {
    			params := templateParams(protocol.HTTPS, src, dests, nil, ports.HTTP.Name)
    			params["GatewayIstioLabel"] = t.Istio.Settings().IngressGatewayIstioLabel
    			params["TLSMode"] = "OPTIONAL_MUTUAL"
    			return params
    		},
    		setupOpts: fqdnHostHeader,
    		opts: echo.CallOptions{
    			Count: 1,
    			Port: echo.Port{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    			if err != nil {
    				t.Fatal(err)
    			}
    			if test.params == nil {
    				test.params = url.Values{}
    			}
    			if test.item {
    				test.params["fieldSelector"] = []string{fmt.Sprintf("metadata.name=%s", id)}
    			}
    			test.params["watch"] = []string{"1"}
    
    			u.RawQuery = test.params.Encode()
    			req := &http.Request{Method: "GET", URL: u}
    			req.Header = http.Header{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
Back to top