Home
last modified time | relevance | path

Searched refs:Time32Type (Results 1 – 25 of 184) sorted by relevance

12345678

/dports/www/grafana8/grafana-8.3.6/vendor/github.com/apache/arrow/csharp/src/Apache.Arrow/Types/
H A DTime32Type.cs19 public sealed class Time32Type : TimeType class
21 public static readonly Time32Type Default = new Time32Type();
27 public Time32Type(TimeUnit unit = TimeUnit.Millisecond) in Time32Type() method in Apache.Arrow.Types.Time32Type
/dports/databases/arrow/apache-arrow-6.0.1/csharp/src/Apache.Arrow/Types/
H A DTime32Type.cs19 public sealed class Time32Type : TimeType class
21 public static readonly Time32Type Default = new Time32Type();
27 public Time32Type(TimeUnit unit = TimeUnit.Millisecond) in Time32Type() method in Apache.Arrow.Types.Time32Type
/dports/security/vault/vault-1.8.2/vendor/github.com/apache/arrow/csharp/src/Apache.Arrow/Types/
H A DTime32Type.cs19 public sealed class Time32Type : TimeType class
21 public static readonly Time32Type Default = new Time32Type();
27 public Time32Type(TimeUnit unit = TimeUnit.Millisecond) in Time32Type() method in Apache.Arrow.Types.Time32Type
/dports/security/vault/vault-1.8.2/vendor/github.com/snowflakedb/gosnowflake/vendor/github.com/apache/arrow/go/arrow/
H A Ddatatype_fixedwidth.go87 type Time32Type struct { struct
91 func (*Time32Type) ID() Type { return TIME32 } argument
92 func (*Time32Type) Name() string { return "time32" } argument
93 func (*Time32Type) BitWidth() int { return 32 } argument
94 func (t *Time32Type) String() string { return "time32[" + t.Unit.String() + "]" } argument
202 Time32s: &Time32Type{Unit: Second},
203 Time32ms: &Time32Type{Unit: Millisecond},
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/apache/arrow/go/arrow/
H A Ddatatype_fixedwidth.go87 type Time32Type struct { struct
91 func (*Time32Type) ID() Type { return TIME32 } argument
92 func (*Time32Type) Name() string { return "time32" } argument
93 func (*Time32Type) BitWidth() int { return 32 } argument
94 func (t *Time32Type) String() string { return "time32[" + t.Unit.String() + "]" } argument
202 Time32s: &Time32Type{Unit: Second},
203 Time32ms: &Time32Type{Unit: Millisecond},
H A Dcompare_test.go48 &Time32Type{Unit: Second}, &Time32Type{Unit: Second}, true, false,
51 &Time32Type{Unit: Millisecond}, &Time32Type{Unit: Second}, false, false,
78 … &ListType{&Time32Type{Unit: Millisecond}}, &ListType{&Time32Type{Unit: Millisecond}}, true, false,
81 &ListType{&Time32Type{Unit: Millisecond}}, &ListType{&Time32Type{Unit: Second}}, false, false,
/dports/security/vault/vault-1.8.2/vendor/github.com/apache/arrow/go/arrow/
H A Ddatatype_fixedwidth.go87 type Time32Type struct { struct
91 func (*Time32Type) ID() Type { return TIME32 } argument
92 func (*Time32Type) Name() string { return "time32" } argument
93 func (*Time32Type) BitWidth() int { return 32 } argument
94 func (t *Time32Type) String() string { return "time32[" + t.Unit.String() + "]" } argument
202 Time32s: &Time32Type{Unit: Second},
203 Time32ms: &Time32Type{Unit: Millisecond},
H A Dcompare_test.go45 &Time32Type{Unit: Second}, &Time32Type{Unit: Second}, true, false,
48 &Time32Type{Unit: Millisecond}, &Time32Type{Unit: Second}, false, false,
75 … &ListType{&Time32Type{Unit: Millisecond}}, &ListType{&Time32Type{Unit: Millisecond}}, true, false,
78 &ListType{&Time32Type{Unit: Millisecond}}, &ListType{&Time32Type{Unit: Second}}, false, false,
/dports/databases/arrow/apache-arrow-6.0.1/go/arrow/
H A Ddatatype_fixedwidth.go97 type Time32Type struct { struct
101 func (*Time32Type) ID() Type { return TIME32 } argument
102 func (*Time32Type) Name() string { return "time32" } argument
103 func (*Time32Type) BitWidth() int { return 32 } argument
104 func (t *Time32Type) String() string { return "time32[" + t.Unit.String() + "]" } argument
105 func (t *Time32Type) Fingerprint() string { argument
250 Time32s: &Time32Type{Unit: Second},
251 Time32ms: &Time32Type{Unit: Millisecond},
H A Dcompare_test.go48 &Time32Type{Unit: Second}, &Time32Type{Unit: Second}, true, false,
51 &Time32Type{Unit: Millisecond}, &Time32Type{Unit: Second}, false, false,
78 …&ListType{elem: Field{Type: &Time32Type{Unit: Millisecond}}}, &ListType{elem: Field{Type: &Time32T…
81 …&ListType{elem: Field{Type: &Time32Type{Unit: Millisecond}}}, &ListType{elem: Field{Type: &Time32T…
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/apache/arrow/csharp/test/Apache.Arrow.Tests/
H A DArrayTypeComparer.cs26 IArrowTypeVisitor<Time32Type>,
66 public void Visit(Time32Type actualType) in Visit()
68 Assert.IsAssignableFrom<Time32Type>(_expectedType); in Visit()
69 var expectedType = (Time32Type)_expectedType; in Visit()
/dports/databases/arrow/apache-arrow-6.0.1/csharp/test/Apache.Arrow.Tests/
H A DArrayTypeComparer.cs26 IArrowTypeVisitor<Time32Type>,
66 public void Visit(Time32Type actualType) in Visit()
68 Assert.IsAssignableFrom<Time32Type>(_expectedType); in Visit()
69 var expectedType = (Time32Type)_expectedType; in Visit()
/dports/databases/arrow/apache-arrow-6.0.1/cpp/src/arrow/compute/kernels/
H A Dtemporal_internal.h132 fac->template AddKernel<std::chrono::seconds, Time32Type>(time32(TimeUnit::SECOND)); in AddTemporalKernels()
133 fac->template AddKernel<std::chrono::milliseconds, Time32Type>(time32(TimeUnit::MILLI)); in AddTemporalKernels()
207 struct TemporalComponentExtractBase<Op, std::chrono::seconds, Time32Type, OutType> {
213 applicator::ScalarUnaryNotNullStateful<OutType, Time32Type, ExecTemplate> kernel{op};
219 struct TemporalComponentExtractBase<Op, std::chrono::milliseconds, Time32Type, OutType> {
225 applicator::ScalarUnaryNotNullStateful<OutType, Time32Type, ExecTemplate> kernel{op};
H A Dscalar_cast_temporal.cc283 struct CastFunctor<Time32Type, TimestampType> {
287 const auto& out_type = checked_cast<const Time32Type&>(*out->type()); in Exec()
295 return ExtractTemporal<ExtractTimeUpscaledUnchecked, Time32Type>( in Exec()
299 return ExtractTemporal<ExtractTimeDownscaledUnchecked, Time32Type>( in Exec()
302 return ExtractTemporal<ExtractTimeDownscaled, Time32Type>(ctx, batch, out, in Exec()
307 return ExtractTemporal<ExtractTimeUpscaledUnchecked, Time32Type>(ctx, batch, out, 1); in Exec()
523 AddSimpleCast<Time64Type, Time32Type>(InputType(Type::TIME64), kOutputTargetType, in GetTime32Cast()
527 AddCrossUnitCast<Time32Type>(func.get()); in GetTime32Cast()
530 AddSimpleCast<TimestampType, Time32Type>(InputType(Type::TIMESTAMP), kOutputTargetType, in GetTime32Cast()
544 AddSimpleCast<Time32Type, Time64Type>(InputType(Type::TIME32), kOutputTargetType, in GetTime64Cast()
/dports/databases/arrow/apache-arrow-6.0.1/go/arrow/scalar/
H A Dnumeric.gen.go75 case *arrow.Time32Type:
139 case *arrow.Time32Type:
203 case *arrow.Time32Type:
267 case *arrow.Time32Type:
331 case *arrow.Time32Type:
395 case *arrow.Time32Type:
459 case *arrow.Time32Type:
523 case *arrow.Time32Type:
587 case *arrow.Time32Type:
651 case *arrow.Time32Type:
/dports/security/vault/vault-1.8.2/vendor/github.com/apache/arrow/csharp/test/Apache.Arrow.Tests/
H A DArrowReaderVerifier.cs67 IArrowTypeVisitor<Time32Type>,
105 public void Visit(Time32Type actualType) in Visit()
107 Assert.IsAssignableFrom<Time32Type>(_expectedType); in Visit()
108 var expectedType = (Time32Type)_expectedType; in Visit()
/dports/databases/arrow/apache-arrow-6.0.1/cpp/src/arrow/csv/
H A Dconverter_test.cc492 AssertConversion<Time32Type, int32_t>(type, {"00:00\n", "00:00:00\n"}, {{0, 0}}); in TEST()
493 AssertConversion<Time32Type, int32_t>(type, {"01:23:45\n", "23:45:43\n"}, in TEST()
495 AssertConversion<Time32Type, int32_t>(type, {"N/A\n", "23:59:59\n"}, {{0, 86399}}, in TEST()
505 AssertConversion<Time32Type, int32_t>(type, {"00:00\n", "00:00:00\n"}, {{0, 0}}); in TEST()
506 AssertConversion<Time32Type, int32_t>(type, {"01:23:45.1\n", "23:45:43.789\n"}, in TEST()
508 AssertConversion<Time32Type, int32_t>(type, {"N/A\n", "23:59:59.999\n"}, in TEST()
/dports/security/vault/vault-1.8.2/vendor/github.com/apache/arrow/cpp/src/arrow/compute/kernels/
H A Dscalar_set_lookup_test.cc160 CheckIsIn<Time32Type, int32_t>( in TEST_F()
165 CheckIsIn<Time32Type, int32_t>(time32(TimeUnit::SECOND), {2, 1, 5, 1}, in TEST_F()
170 CheckIsIn<Time32Type, int32_t>(time32(TimeUnit::SECOND), {3, 5, 5, 3}, in TEST_F()
176 CheckIsIn<Time32Type, int32_t>(time32(TimeUnit::SECOND), {}, {}, {}, {}, {}, {}); in TEST_F()
196 CheckIsIn<Time32Type, int32_t>(time32(TimeUnit::SECOND), {2, 1, 2, 1}, in TEST_F()
H A Dscalar_cast_test.cc942 CheckCase<Time32Type, int32_t, Time32Type, int32_t>( in TEST_F()
947 CheckCase<Time32Type, int32_t, Time64Type, int64_t>( in TEST_F()
952 CheckCase<Time32Type, int32_t, Time64Type, int64_t>( in TEST_F()
957 CheckCase<Time32Type, int32_t, Time64Type, int64_t>( in TEST_F()
962 CheckCase<Time32Type, int32_t, Time64Type, int64_t>( in TEST_F()
980 ArrayFromVector<Time32Type, int32_t>(time32(TimeUnit::SECOND), is_valid, v7_2, &arr); in TEST_F()
991 CheckCase<Time32Type, int32_t, Time32Type, int32_t>( in TEST_F()
993 CheckCase<Time64Type, int32_t, Time32Type, int32_t>( in TEST_F()
1000 CheckCase<Time64Type, int64_t, Time32Type, int32_t>( in TEST_F()
1002 CheckCase<Time64Type, int64_t, Time32Type, int32_t>( in TEST_F()
[all …]
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/apache/arrow/csharp/src/Apache.Arrow/Ipc/
H A DArrowTypeFlatbufferBuilder.cs58 IArrowTypeVisitor<Time32Type>,
147 public void Visit(Time32Type type) in Visit()
/dports/security/vault/vault-1.8.2/vendor/github.com/apache/arrow/csharp/src/Apache.Arrow/Ipc/
H A DArrowTypeFlatbufferBuilder.cs58 IArrowTypeVisitor<Time32Type>,
146 public void Visit(Time32Type type) in Visit()
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/apache/arrow/cpp/src/gandiva/jni/
H A Dexpression_registry_helper.cc106 std::shared_ptr<arrow::Time32Type> cast_time_32_type = in ArrowToProtobuf()
107 std::dynamic_pointer_cast<arrow::Time32Type>(type); in ArrowToProtobuf()
/dports/databases/arrow/apache-arrow-6.0.1/cpp/src/gandiva/jni/
H A Dexpression_registry_helper.cc106 std::shared_ptr<arrow::Time32Type> cast_time_32_type = in ArrowToProtobuf()
107 std::dynamic_pointer_cast<arrow::Time32Type>(type); in ArrowToProtobuf()
/dports/security/vault/vault-1.8.2/vendor/github.com/apache/arrow/cpp/src/gandiva/jni/
H A Dexpression_registry_helper.cc106 std::shared_ptr<arrow::Time32Type> cast_time_32_type = in ArrowToProtobuf()
107 std::dynamic_pointer_cast<arrow::Time32Type>(type); in ArrowToProtobuf()
/dports/security/vault/vault-1.8.2/vendor/github.com/apache/arrow/cpp/src/arrow/
H A Dtype_fwd.h195 class Time32Type; variable
196 using Time32Array = NumericArray<Time32Type>;
197 using Time32Builder = NumericBuilder<Time32Type>;

12345678