Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 206 for data_type_ (0.27 sec)

  1. schema/field_test.go

    		{Name: "ID", DBName: "id", BindNames: []string{"ID"}, DataType: schema.Uint, PrimaryKey: true, Size: 64, Creatable: true, Updatable: true, Readable: true, HasDefaultValue: true, AutoIncrement: true},
    		{Name: "Name", DBName: "", BindNames: []string{"Name"}, DataType: "", Tag: `gorm:"-"`, Creatable: false, Updatable: false, Readable: false},
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sat Feb 19 09:02:53 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/convert_type.h

    namespace tensorflow {
    
    using tsl::StatusOr;
    
    // Converts the TensorFlow DataType 'dtype' into an MLIR (scalar) type.
    Status ConvertDataType(DataType dtype, mlir::Builder builder, mlir::Type* type);
    
    // Converts a scalar MLIR type to a TensorFlow Datatype.
    Status ConvertScalarTypeToDataType(mlir::Type type, DataType* dtype);
    
    // Converts an MLIR type to TensorFlow DataType. If 'type' is a scalar type, it
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/language/DataTypeInternal.kt

    import kotlinx.serialization.SerialName
    import kotlinx.serialization.Serializable
    import org.gradle.declarative.dsl.schema.DataType
    
    
    object DataTypeInternal {
    
        @Serializable
        @SerialName("int")
        data object DefaultIntDataType : DataType.IntDataType {
            override val constantType: Class<Int> = Int::class.java
            override fun toString(): String = "Int"
            private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:03 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/objectGraph/reflectObject.kt

            override val type: DataType
                get() = DataTypeInternal.DefaultNullType
        }
    
        data class DefaultValue(
            override val type: DataType,
            override val objectOrigin: ObjectOrigin
        ) : ObjectReflection
    
        data class PureFunctionInvocation(
            override val type: DataType,
            override val objectOrigin: ObjectOrigin.FunctionOrigin,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/language/LanguageTree.kt

    
    sealed interface Literal<T : Any> : Expr {
        val value: T
        val type: DataType.ConstantType<T>
    
        data class StringLiteral(
            override val value: String,
            override val sourceData: SourceData
        ) : Literal<String> {
            override val type: DataType.StringDataType
                get() = DataTypeInternal.DefaultStringDataType
        }
    
        data class IntLiteral(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:01 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/dom/DocumentResolution.kt

                val elementType: DataType
    
                data class ConfiguringElementResolved(
                    override val elementType: DataClass
                ) : SuccessfulElementResolution
    
                data class ContainerElementResolved(
                    override val elementType: DataType,
                    val elementFactoryFunction: SchemaMemberFunction,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/utils/convert_type.cc

    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_types.def"
    
        default:
          return errors::Unimplemented(absl::StrCat(
              "Converting DataType '", DataTypeString(dtype), "' to MLIR Type"));
      }
    }
    
    Status ConvertScalarTypeToDataType(Type type, DataType* dtype) {
      if (type.isF16()) {
        *dtype = DT_HALF;
        return absl::OkStatus();
      } else if (type.isF32()) {
        *dtype = DT_FLOAT;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/saved_model/core/test_utils.h

    // of `device_mgr`.
    EagerContextPtr CreateTestingEagerContext(DeviceMgr* device_mgr);
    
    // Converts a tensorflow::DatatypeSet to std::vector<DataType>.
    // This is useful for tests using GTest's ::testing::ValuesIn, since
    // DataTypeSet doesn't fullfill all the constraints of an STL-like iterable.
    std::vector<DataType> DataTypeSetToVector(DataTypeSet set);
    
    // Returns a vector of shapes intended to be "interesting" test cases.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 11 01:20:50 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  9. src/sort/gen_sort_variants.go

    	Imports string
    
    	// FuncSuffix is appended to all function names in this variant's code. All
    	// suffixes should be unique within a package.
    	FuncSuffix string
    
    	// DataType is the type of the data parameter of functions in this variant's
    	// code.
    	DataType string
    
    	// TypeParam is the optional type parameter for the function.
    	TypeParam string
    
    	// ExtraParam is an extra parameter to pass to the function. Should begin with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/saved_model/core/test_utils.cc

          /* async= */ false, device_mgr,
          /* device_mgr_owned= */ false, /* rendezvous= */ nullptr,
          /* cluster_flr= */ nullptr));
    }
    
    std::vector<DataType> DataTypeSetToVector(DataTypeSet set) {
      std::vector<DataType> result;
      result.reserve(set.size());
      for (DataType dt : set) {
        result.push_back(dt);
      }
      return result;
    }
    
    std::vector<std::vector<int64_t>> InterestingShapes() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 08 20:13:32 UTC 2023
    - 5.8K bytes
    - Viewed (0)
Back to top