Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 65 for value_dtype (0.25 sec)

  1. src/cmd/internal/obj/wasm/wasmobj.go

    	default:
    		panic(fmt.Sprintf("unexpected assembler op: %s", as))
    	}
    }
    
    type valueType byte
    
    const (
    	i32 valueType = 0x7F
    	i64 valueType = 0x7E
    	f32 valueType = 0x7D
    	f64 valueType = 0x7C
    )
    
    func regType(reg int16) valueType {
    	switch {
    	case reg == REG_SP:
    		return i32
    	case reg >= REG_R0 && reg <= REG_R15:
    		return i64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/ArrayOfPrimitiveValueSnapshot.java

            primitiveType.appendTo(hasher, array);
        }
    
        @Override
        public ValueSnapshot snapshot(@Nullable Object value, ValueSnapshotter snapshotter) {
            PrimitiveType valueType = PrimitiveType.maybeOfValue(value);
            if (primitiveType == valueType && primitiveType.equals(array, value)) {
                return this;
            }
            ValueSnapshot snapshot = snapshotter.snapshot(value);
            if (snapshot.equals(this)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. src/internal/profile/merge.go

    				comments = append(comments, c)
    				seenComments[c] = true
    			}
    		}
    		if defaultSampleType == "" {
    			defaultSampleType = s.DefaultSampleType
    		}
    	}
    
    	p := &Profile{
    		SampleType: make([]*ValueType, len(srcs[0].SampleType)),
    
    		DropFrames: srcs[0].DropFrames,
    		KeepFrames: srcs[0].KeepFrames,
    
    		TimeNanos:     timeNanos,
    		DurationNanos: durationNanos,
    		PeriodType:    srcs[0].PeriodType,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 17 19:35:56 UTC 2020
    - 11.3K bytes
    - Viewed (0)
  4. src/runtime/pprof/proto.go

    	tagProfile_TimeNanos         = 9  // int64
    	tagProfile_DurationNanos     = 10 // int64
    	tagProfile_PeriodType        = 11 // ValueType (really optional string???)
    	tagProfile_Period            = 12 // int64
    	tagProfile_Comment           = 13 // repeated int64
    	tagProfile_DefaultSampleType = 14 // int64
    
    	// message ValueType
    	tagValueType_Type = 1 // int64 (string table index)
    	tagValueType_Unit = 2 // int64 (string table index)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 13 20:40:52 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  5. src/go/types/stmt.go

    // types we need to also check the value's types (e.g., byte(1) vs myByte(1))
    // when the switch expression is of interface type.
    type (
    	valueMap  map[any][]valueType // underlying Go value -> valueType
    	valueType struct {
    		pos token.Pos
    		typ Type
    	}
    )
    
    func (check *Checker) caseValues(x *operand, values []ast.Expr, seen valueMap) {
    L:
    	for _, e := range values {
    		var v operand
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-printers.h

    // match value_type, and the print output may be incorrect.  In
    // practice, this is rarely a problem as for most containers
    // const_iterator is a forward iterator.  We'll fix this if there's an
    // actual need for it.  Note that this fix cannot rely on value_type
    // being defined as many user-defined container types don't have
    // value_type.
    
    #ifndef GTEST_INCLUDE_GTEST_GTEST_PRINTERS_H_
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-printers.h

    // match value_type, and the print output may be incorrect.  In
    // practice, this is rarely a problem as for most containers
    // const_iterator is a forward iterator.  We'll fix this if there's an
    // actual need for it.  Note that this fix cannot rely on value_type
    // being defined as many user-defined container types don't have
    // value_type.
    
    #ifndef GTEST_INCLUDE_GTEST_GTEST_PRINTERS_H_
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 30.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/DefaultAnalysisSchema.kt

            private
            fun readResolve(): Any = Empty
        }
    }
    
    
    @Serializable
    @SerialName("dataProperty")
    data class DefaultDataProperty(
        override val name: String,
        override val valueType: DataTypeRef,
        override val mode: PropertyMode,
        override val hasDefaultValue: Boolean,
        override val isHiddenInDsl: Boolean = false,
        override val isDirectAccessOnly: Boolean = false
    ) : DataProperty {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/passes/replace_cast_hacks_with_tf_xla_ops.cc

    }
    
    // Check if the given value is a ranked type with specified integer width.
    bool IsRankedInt(Value value, const int integer_width) {
      ShapedType value_type = mlir::cast<ShapedType>(value.getType());
      if (!value_type.hasRank()) return false;
      if (!value_type.getElementType().isInteger(integer_width)) return false;
    
      return true;
    }
    
    // Constraint to check:
    // 1. The einsum has two inputs and one output.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/stmt.go

    // types we need to also check the value's types (e.g., byte(1) vs myByte(1))
    // when the switch expression is of interface type.
    type (
    	valueMap  map[interface{}][]valueType // underlying Go value -> valueType
    	valueType struct {
    		pos syntax.Pos
    		typ Type
    	}
    )
    
    func (check *Checker) caseValues(x *operand, values []syntax.Expr, seen valueMap) {
    L:
    	for _, e := range values {
    		var v operand
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.7K bytes
    - Viewed (0)
Back to top