Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 518 for numeric (0.21 sec)

  1. src/encoding/asn1/common.go

    		case part == "utc":
    			ret.timeType = TagUTCTime
    		case part == "ia5":
    			ret.stringType = TagIA5String
    		case part == "printable":
    			ret.stringType = TagPrintableString
    		case part == "numeric":
    			ret.stringType = TagNumericString
    		case part == "utf8":
    			ret.stringType = TagUTF8String
    		case strings.HasPrefix(part, "default:"):
    			i, err := strconv.ParseInt(part[8:], 10, 64)
    			if err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 06 15:53:04 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/variable_info_util.cc

    limitations under the License.
    ==============================================================================*/
    
    #include "tensorflow/compiler/jit/variable_info_util.h"
    
    #include <memory>
    #include <numeric>
    #include <optional>
    #include <set>
    #include <string>
    #include <utility>
    #include <vector>
    
    #include "absl/algorithm/container.h"
    #include "tensorflow/core/framework/op.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. platforms/core-runtime/process-services/src/test/groovy/org/gradle/process/internal/health/memory/MemInfoOsMemoryInfoTest.groovy

            snapshot.physicalMemory.total == 33_594_605_568L
            snapshot.virtualMemory instanceof OsMemoryStatusAspect.Unavailable
        }
    
        def "throws unsupported operation exception when non-numeric values are provided"() {
            when:
            new MemInfoOsMemoryInfo().getOsSnapshotFromMemInfo(meminfo)
    
            then:
            thrown(UnsupportedOperationException)
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/set_tpu_infeed_layout.cc

    limitations under the License.
    ==============================================================================*/
    
    #include "tensorflow/compiler/mlir/tensorflow/transforms/set_tpu_infeed_layout.h"
    
    #include <algorithm>
    #include <numeric>
    #include <vector>
    
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/IR/Attributes.h"  // from @llvm-project
    #include "mlir/IR/Builders.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.h

    // Used in TFL Numeric Verify
    struct NumericVerifySpec {
      // Whether to enable numeric verification
      bool verify_numeric = false;
    
      // Tolerance level from the quantized value for verification. If the tolerance
      // is very small(<0.1), only the stats of the diff is displayed.
      float error_tolerance = 5.0f;
    
      // Whether to verify numerical correctness layer by layer or by whole model
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  6. src/main/resources/fess_message_de.properties

    constraints.Required.message                = {item} ist ein Pflichtfeld.
    constraints.TypeInteger.message             = {item} sollte numerisch sein.
    constraints.TypeLong.message                = {item} sollte numerisch sein.
    constraints.TypeFloat.message               = {item} sollte numerisch sein.
    constraints.TypeDouble.message              = {item} sollte numerisch sein.
    constraints.TypeAny.message                 = {item} kann nicht in {propertyType} umgewandelt werden.
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Tue Oct 29 15:01:03 UTC 2019
    - 11.8K bytes
    - Viewed (0)
  7. src/cmd/link/internal/dwtest/dwtest.go

    			return nil
    		}
    		if parentDie.Tag == dwarf.TagCompileUnit {
    			return parentDie
    		}
    		idx = ex.IdxFromOffset(parentDie.Offset)
    	}
    }
    
    // FileRef takes a given DIE by index and a numeric file reference
    // (presumably from a decl_file or call_file attribute), looks up the
    // reference in the .debug_line file table, and returns the proper
    // string for it. We need to know which DIE is making the reference
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 15:22:18 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. releasenotes/README.md

    ### Release Notes
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 09 20:31:49 UTC 2021
    - 5.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/const.go

    func (check *Checker) representation(x *operand, typ *Basic) (constant.Value, Code) {
    	assert(x.mode == constant_)
    	v := x.val
    	if !representableConst(x.val, check, typ, &v) {
    		if isNumeric(x.typ) && isNumeric(typ) {
    			// numeric conversion : error msg
    			//
    			// integer -> integer : overflows
    			// integer -> float   : overflows (actually not possible)
    			// float   -> integer : truncated
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types_jsonschema.go

    	// It does not support list numeric index.
    	// It supports child operation to refer to an existing field currently. Refer to [JSONPath support in Kubernetes](https://kubernetes.io/docs/reference/kubectl/jsonpath/) for more info.
    	// Numeric index of array is not supported.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 22:23:23 UTC 2023
    - 15.9K bytes
    - Viewed (0)
Back to top