Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 55 for max8 (0.06 sec)

  1. pkg/printers/internalversion/printers.go

    			if len(list) < max {
    				list = append(list, address)
    			} else if len(list) == max {
    				more = true
    			}
    			count++
    		}
    	}
    	return listWithMoreString(list, more, count, max)
    }
    
    func listWithMoreString(list []string, more bool, count, max int) string {
    	ret := strings.Join(list, ",")
    	if more {
    		return fmt.Sprintf("%s + %d more...", ret, count-max)
    	}
    	if ret == "" {
    		ret = "<unset>"
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        if (index_and_value.index() % 2 == 0) {
          mins.push_back(value.convertToFloat());
        } else {
          maxs.push_back(value.convertToFloat());
        }
      }
    
      return tflite::CreateQuantizationParameters(
          builder_, builder_.CreateVector<float>(mins),
          builder_.CreateVector<float>(maxs), /*scale=*/0, /*zero_point=*/0,
          tflite::QuantizationDetails_NONE, /*details=*/0,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  3. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    (($.Values.global.tracer).stackdriver).debug | default "false" }} # The global default max number of attributes per span. maxNumberOfAttribute: {{ (($.Values.global.tracer).stackdriver).maxNumberOfAttribute | default "200" }} # The global default max number of annotation events per span. maxNumberOfAnnotatio: {{ (($.Values.global.tracer).stackdriver).maxNumberOfAnnotatio | default "200" }} # The global default max number of message events per span. maxNumberOfMessageEv: {{ (($.Values.global.tracer...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/tests/uniform-quantized-stablehlo-to-tfl.mlir

    // CHECK-DAG: %[[ZERO:.+]] = arith.constant dense<0> : tensor<1xi64>
    // CHECK-DAG: %[[MAX1:.+]] = arith.constant dense<2> : tensor<1xi64>
    // CHECK-DAG: %[[MAX2:.+]] = arith.constant dense<3> : tensor<1xi64>
    // CHECK: %[[BITCAST1:.+]] = "tfl.bitcast"(%[[ARG1]]) : (tensor<i64>) -> tensor<1xi64>
    // CHECK: %[[MIN1:.+]] = "tfl.minimum"(%[[BITCAST1]], %[[MAX1]]) : (tensor<1xi64>, tensor<1xi64>) -> tensor<1xi64>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 106.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

         * message: Size of {item} must be between {min} and {max}.
         * </pre>
         * @param property The property name for the message. (NotNull)
         * @param min The parameter min for message. (NotNull)
         * @param max The parameter max for message. (NotNull)
         * @return this. (NotNull)
         */
        public FessMessages addConstraintsSizeMessage(String property, String min, String max) {
            assertPropertyNotNull(property);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/generic.rules

    			(RotateLeft8 <typ.UInt8>
    				(Mul8 <typ.UInt8>
    					(Const8 <typ.UInt8> [int8(udivisible8(c).m)])
    					x)
    				(Const8 <typ.UInt8> [int8(8-udivisible8(c).k)])
    				)
    			(Const8 <typ.UInt8> [int8(udivisible8(c).max)])
    		)
    
    (Eq16 x (Mul16 (Const16 [c])
      (Trunc64to16
        (Rsh64Ux64
          mul:(Mul64
            (Const64 [m])
            (ZeroExt16to64 x))
          (Const64 [s])))
    	)
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        SameOperandsAndResultsScale]> {
      let summary = "Max operator";
      let description = [{
        Element-wise max operation.
      }];
    
      let arguments = (
        ins TFL_TensorOf<[F32, TFL_Int32Or64, QI8, QUI8, QI16]>:$lhs,
        TFL_TensorOf<[F32, TFL_Int32Or64, QI8, QUI8, QI16]>:$rhs
      );
    
      let results = (outs
        TFL_TensorOf<[F32, TFL_Int32Or64, QI8, QUI8, QI16]>:$max
      );
    
      let hasFolder = 1;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			},
    			errors: map[string]string{
    				// return an error for min/max on empty list
    				"self.emptyInts.min() == 1":      "min called on empty list",
    				"self.emptyInts.max() == 3":      "max called on empty list",
    				"self.emptyDoubles.min() == 1.0": "min called on empty list",
    				"self.emptyDoubles.max() == 3.0": "max called on empty list",
    				"self.emptyStrings.min() == 'a'": "min called on empty list",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      if (min && !IsOfRankedFloatTensorType(min, 0))
        return op.emitOpError("requires min to be a 0d float tensor");
    
      auto max = GetRankedTensorTypeForOperand(op.getMax());
      if (max && !IsOfRankedFloatTensorType(max, 0))
        return op.emitOpError("requires max to be a 0d float tensor");
    
      int64_t num_bits = op.getNumBits();
      if (num_bits < 2 || num_bits > 16) {
        return op.emitOpError(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit.min.js

    t.some(Ze.inProgress)}),h=!1,u="";if(this.masonry&&this.length){var c=0;h=r.reduce(function(i,t,n){return i[n]=t.map(function(t,e){return 0===n?0:j(i[n-1][e])+(c-j(r[n-1][e]&&r[n-1][e].offsetHeight))}),c=t.reduce(function(t,e){return Math.max(t,e.offsetHeight)},0),i},[]),s=r,u=Math.max.apply(Math,s.reduce(function(i,t){return t.forEach(function(t,e){return i[e]=(i[e]||0)+t.offsetHeight}),i},[]))+(e=this.$el,i=this.margin,n=Ot(e),j((o=n.filter(function(t){return Oe(t,i)})[0])?Ve(o,"marginTop"):Ve(n[0],"paddin...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 130.5K bytes
    - Viewed (0)
Back to top