Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,595 for integers (0.35 sec)

  1. pkg/apis/batch/types.go

    	// must not contain duplicates. At least one element is required.
    	// The indexes are represented as intervals separated by commas.
    	// The intervals can be a decimal integer or a pair of decimal integers separated by a hyphen.
    	// The number are listed in represented by the first and last element of the series,
    	// separated by a hyphen.
    	// For example, if the completed indexes are 1, 3, 4, 5 and 7, they are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/batch/v1/types.go

    	// must not contain duplicates. At least one element is required.
    	// The indexes are represented as intervals separated by commas.
    	// The intervals can be a decimal integer or a pair of decimal integers separated by a hyphen.
    	// The number are listed in represented by the first and last element of the series,
    	// separated by a hyphen.
    	// For example, if the completed indexes are 1, 3, 4, 5 and 7, they are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Comparators.java

       * reached, but not the other, the shorter iterable is considered to be less than the longer one.
       * For example, a lexicographical natural ordering over integers considers {@code [] < [1] < [1,
       * 1] < [1, 2] < [2]}.
       *
       * <p>Note that {@code Collections.reverseOrder(lexicographical(comparator))} is not equivalent to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 08:42:51 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/utils/const_tensor_utils.cc

        const mlir::Type raw_elem_type = ConvertElementType(tensor.type, builder);
        if (!mlir::isa<mlir::IntegerType>(raw_elem_type)) {
          return absl::InvalidArgumentError(
              "Quantized tensors must be stored as integers");
        }
        storage_type = mlir::cast<mlir::IntegerType>(raw_elem_type);
      }
    
      // TFlite uses narrow-range [u]int8 for constant buffers of quantized weights.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 23:04:40 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. src/encoding/binary/binary.go

    	"errors"
    	"io"
    	"math"
    	"reflect"
    	"slices"
    	"sync"
    )
    
    var errBufferTooSmall = errors.New("buffer too small")
    
    // A ByteOrder specifies how to convert byte slices into
    // 16-, 32-, or 64-bit unsigned integers.
    //
    // It is implemented by [LittleEndian], [BigEndian], and [NativeEndian].
    type ByteOrder interface {
    	Uint16([]byte) uint16
    	Uint32([]byte) uint32
    	Uint64([]byte) uint64
    	PutUint16([]byte, uint16)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:29:31 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  6. src/math/big/nat.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file implements unsigned multi-precision integers (natural
    // numbers). They are the building blocks for the implementation
    // of signed integers, rationals, and floating-point numbers.
    //
    // Caution: This implementation relies on the function "alias"
    //          which assumes that (nat) slice capacities are never
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"type(self.val7) == double",
    				"self.val7 == 1.0",
    			},
    		},
    		{name: "numeric comparisons",
    			obj: objs(
    				int64(5),      // val1, integer type, integer value
    				int64(10),     // val2, integer type, integer value
    				int64(15),     // val3, integer type, integer value
    				float64(10.0), // val4, number type, parsed from decimal literal
    				float64(10.0), // val5, float type, parsed from decimal literal
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/DebugSymbolRenderer.kt

                is ClassId -> printer.append(value.asString())
                is DeprecationInfo -> renderDeprecationInfo(value, printer)
                is Visibility -> printer.append(value::class.java.simpleName)
                // Unsigned integers
                is UByte -> printer.append(value.toString())
                is UShort -> printer.append(value.toString())
                is UInt -> printer.append(value.toString())
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/convert_tf_quant_to_mhlo_int_test.cc

            auto result,
            this->ExecuteProgramAndReturnSingleResult(executable.get(), arguments));
    
        // Convert to double for comparison. This is needed for comparing integers
        // since it LiteralTestUtil asserts different integers even if it is within
        // error_spec.
        TF_ASSERT_OK_AND_ASSIGN(auto expected_double, expected->Convert(xla::F64))
        TF_ASSERT_OK_AND_ASSIGN(auto result_double, result->Convert(xla::F64))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 03 01:03:21 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    def TF_StatefulUniformIntOp : TF_Op<"StatefulUniformInt", []> {
      let summary = "Outputs random integers from a uniform distribution.";
    
      let description = [{
    The generated values are uniform integers in the range `[minval, maxval)`.
    The lower bound `minval` is included in the range, while the upper bound
    `maxval` is excluded.
    
    The random integers are slightly biased unless `maxval - minval` is an exact
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
Back to top