Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for numeric (0.38 sec)

  1. doc/go1.17_spec.html

    it is a <a href="#Type_definitions">defined type</a>.
    </p>
    
    <h3 id="Numeric_types">Numeric types</h3>
    
    <p>
    A <i>numeric type</i> represents sets of integer or floating-point values.
    The predeclared architecture-independent numeric types are:
    </p>
    
    <pre class="grammar">
    uint8       the set of all unsigned  8-bit integers (0 to 255)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"self.val3 > self.val9",
    
    				"self.val1 < self.val9",
    				"self.val3 > self.val9",
    
    				// Cross Type Numeric Comparisons: literal integers and floats
    				"5 < 10.0",
    				"15 > 10.0",
    
    				"5 < 10.0",
    				"15 > 10.0",
    
    				// Cross Type Numeric Comparisons: integers with literal floats
    				"self.val1 < 10.0",
    				"self.val3 > 10.0",
    			},
    		},
    		{name: "unicode strings",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  3. src/database/sql/sql.go

    // Scan simply assigns the value through the pointer.
    //
    // Scan also converts between string and numeric types, as long as no
    // information would be lost. While Scan stringifies all numbers
    // scanned from numeric database columns into *string, scans into
    // numeric types are checked for overflow. For example, a float64 with
    // value 300 or a string with value "300" can scan into a uint16, but
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/generic.rules

    (Leq32 _ (Const32 [math.MaxInt32]))  => (ConstBool [true])
    (Leq16 _ (Const16 [math.MaxInt16]))  => (ConstBool [true])
    (Leq8  _ (Const8  [math.MaxInt8 ]))  => (ConstBool [true])
    
    // Canonicalize <= on numeric bounds and < near numeric bounds to ==
    (Leq(64|32|16|8)U x c:(Const(64|32|16|8) [0]))     => (Eq(64|32|16|8) x c)
    (Leq(64|32|16|8)U c:(Const(64|32|16|8) [-1]) x)    => (Eq(64|32|16|8) x c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    #include "tensorflow/compiler/mlir/lite/ir/tfl_ops.h"
    
    #include <algorithm>
    #include <cmath>
    #include <cstddef>
    #include <cstdint>
    #include <cstdlib>
    #include <cstring>
    #include <iterator>
    #include <numeric>
    #include <optional>
    #include <string>
    #include <vector>
    
    #include "absl/container/flat_hash_map.h"
    #include "absl/strings/escaping.h"
    #include "Eigen/Core"  // from @eigen_archive
    #include "llvm/ADT/APFloat.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        output[i] = max(data[j....]) where segment_ids[j...] = i
        if the maximum is empty for a given segment ID i,
        it outputs the smallest possible value for the specific numeric type,
        output[i] = numeric_limits::lowest().
        Note the values of segment_ids are always validated to be less than
        num_segments and an error is thrown for out-of-bound indices.
      }];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_pods_test.go

    			wantErr: true,
    		},
    		{
    			name:    "wrong format",
    			input:   "0: kubelet 65536",
    			wantErr: true,
    		},
    		{
    			name:    "non numeric 1",
    			input:   "0: kubelet Foo 65536",
    			wantErr: true,
    		},
    		{
    			name:    "non numeric 2",
    			input:   "0: kubelet 0 Bar",
    			wantErr: true,
    		},
    		{
    			name:    "overflow 1",
    			input:   "0: kubelet 4294967296 2147483648",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/optimize.cc

    #include <algorithm>
    #include <array>
    #include <climits>
    #include <cstddef>
    #include <cstdint>
    #include <functional>
    #include <iterator>
    #include <map>
    #include <memory>
    #include <numeric>
    #include <optional>
    #include <utility>
    #include <vector>
    
    #include "llvm/ADT/APFloat.h"
    #include "llvm/ADT/APInt.h"
    #include "llvm/ADT/ArrayRef.h"
    #include "llvm/ADT/STLExtras.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

    // This file implements logic for legalizing HLO to TensorFlow.
    
    #include <cassert>
    #include <cstddef>
    #include <cstdint>
    #include <cstdlib>
    #include <functional>
    #include <memory>
    #include <numeric>
    #include <optional>
    #include <string>
    #include <utility>
    #include <vector>
    
    #include "llvm/ADT/APFloat.h"
    #include "llvm/ADT/APInt.h"
    #include "llvm/ADT/ArrayRef.h"
    #include "llvm/ADT/STLExtras.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	return fmt.Sprintf("%*s%sPtrMem:\n%s\n%s", indent, "", field,
    		pm.Class.goString(indent+2, "Class: "),
    		pm.Member.goString(indent+2, "Member: "))
    }
    
    // FixedType is a fixed numeric type of unknown size.
    type FixedType struct {
    	Base  AST
    	Accum bool
    	Sat   bool
    }
    
    func (ft *FixedType) print(ps *printState) {
    	if ft.Sat {
    		ps.writeString("_Sat ")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
Back to top