Home
last modified time | relevance | path

Searched defs:TestStruct (Results 1 – 25 of 582) sorted by relevance

12345678910>>...24

/dports/devel/fbthrift/fbthrift-2021.12.27.00/thrift/lib/hs/tests/if/
H A Dhs_test.thrift24 struct TestStruct { struct
26 2: byte f_byte;
27 3: double f_double;
28 4: i16 f_i16 = 5;
29 5: i32 f_i32;
30 6: i64 f_i64;
31 7: float f_float;
32 8: list<i16> f_list;
34 10: string f_string;
35 11: set<byte> f_set;
[all …]
/dports/sysutils/docker-registry/distribution-2.7.1/vendor/github.com/denverdino/aliyungo/aliyungo-a747050bb1ba/util/
H A Dencoding_test.go39 type TestStruct struct { struct
40 Format string
41 Version string
42 AccessKeyId string
43 Timestamp time.Time
44 Empty string
50 StructArray []SubStruct
51 SubStruct SubStruct
52 test TestString
53 tests []TestString
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Memory/tests/Binary/
H A DBinaryReaderUnitTests.cs470 public short S0;
471 public int I0;
472 public long L0;
473 public ushort US0;
474 public uint UI0;
475 public ulong UL0;
476 public short S1;
477 public int I1;
478 public long L1;
480 public uint UI1;
[all …]
/dports/security/vault/vault-1.8.2/vendor/github.com/denverdino/aliyungo/util/
H A Dencoding_test.go39 type TestStruct struct { struct
40 Format string
41 Version string
42 AccessKeyId string
43 Timestamp time.Time
44 Empty string
49 StructArray []SubStruct
50 SubStruct SubStruct
51 test TestString
52 tests []TestString
[all …]
/dports/net/storj/storj-1.45.3/vendor/storj.io/private/cfgstruct/
H A Dbind_test.go17 type TestStruct struct { struct
18 String string `default:"dev"`
19 Bool bool `releaseDefault:"false" devDefault:"true"`
21 Int int `default:"2"`
22 Uint64 uint64 `default:"3" releaseDefault:"2"`
23 Uint uint `default:"0" devDefault:"2"`
24 Float64 float64 `default:"5.5" testDefault:"1"`
25 Size memory.Size `default:"0"`
26 Duration time.Duration `default:"1h" testDefault:"$TESTINTERVAL"`
29 Struct struct {
[all …]
/dports/net/nncp/nncp-8.0.2/src/vendor/github.com/hjson/hjson-go/
H A Dencode_test.go8 type TestStruct struct { struct
9 A int
10 B uint
11 C string `json:"S"`
12 D string `json:",omitempty"`
13 E string `json:"-"`
14 F string `json:"-,"`
15 G string `json:"H,omitempty"`
16 U int `json:",omitempty"`
17 V uint `json:",omitempty"`
[all …]
/dports/multimedia/neolink/neolink-cf54129/cargo-crates/validator_derive-0.10.1/tests/
H A Dmust_match.rs10 struct TestStruct { in can_validate_valid_must_match() struct
12 val: String, in can_validate_valid_must_match()
13 val2: String, in can_validate_valid_must_match()
24 struct TestStruct { in not_matching_fails_validation() struct
26 val: String, in not_matching_fails_validation()
27 val2: String, in not_matching_fails_validation()
46 struct TestStruct { in can_specify_code_for_must_match() struct
48 val: String, in can_specify_code_for_must_match()
49 val2: String, in can_specify_code_for_must_match()
66 val: String, in can_specify_message_for_must_match()
[all …]
H A Drange.rs10 struct TestStruct { in can_validate_range_ok() struct
12 val: usize, in can_validate_range_ok()
23 struct TestStruct { in value_out_of_range_fails_validation() struct
25 val: usize, in value_out_of_range_fails_validation()
41 struct TestStruct { in can_specify_code_for_range() struct
43 val: usize, in can_specify_code_for_range()
61 struct TestStruct { in can_specify_message_for_range() struct
63 val: usize, in can_specify_message_for_range()
81 struct TestStruct { in can_pass_reference_as_validate() struct
83 num_field: u32, in can_pass_reference_as_validate()
H A Dlength.rs10 struct TestStruct { in can_validate_length_ok() struct
12 val: String, in can_validate_length_ok()
23 struct TestStruct { in value_out_of_length_fails_validation() struct
25 val: String, in value_out_of_length_fails_validation()
44 struct TestStruct { in can_specify_code_for_length() struct
46 val: String, in can_specify_code_for_length()
61 struct TestStruct { in can_specify_message_for_length() struct
63 val: String, in can_specify_message_for_length()
H A Dphone.rs11 struct TestStruct { in can_validate_phone_ok() struct
13 val: String, in can_validate_phone_ok()
25 struct TestStruct { in bad_phone_fails_validation() struct
27 val: String, in bad_phone_fails_validation()
44 struct TestStruct { in can_specify_code_for_phone() struct
46 val: String, in can_specify_code_for_phone()
63 struct TestStruct { in can_specify_message_for_phone() struct
65 val: String, in can_specify_message_for_phone()
H A Dcredit_card.rs11 struct TestStruct { in can_validate_valid_card_number() struct
13 val: String, in can_validate_valid_card_number()
25 struct TestStruct { in bad_credit_card_fails_validation() struct
27 val: String, in bad_credit_card_fails_validation()
45 struct TestStruct { in can_specify_code_for_credit_card() struct
47 val: String, in can_specify_code_for_credit_card()
63 struct TestStruct { in can_specify_message_for_credit_card() struct
65 val: String, in can_specify_message_for_credit_card()
H A Dnon_control.rs11 struct TestStruct { in can_validate_utf8_ok() struct
13 val: String, in can_validate_utf8_ok()
25 struct TestStruct { in utf8_with_control_fails_validation() struct
27 val: String, in utf8_with_control_fails_validation()
44 struct TestStruct { in can_specify_code_for_non_control_character() struct
46 val: String, in can_specify_code_for_non_control_character()
63 struct TestStruct { in can_specify_message_for_non_control_character() struct
65 val: String, in can_specify_message_for_non_control_character()
H A Durl.rs10 struct TestStruct { in can_validate_url_ok() struct
12 val: String, in can_validate_url_ok()
23 struct TestStruct { in bad_url_fails_validation() struct
25 val: String, in bad_url_fails_validation()
42 struct TestStruct { in can_specify_code_for_url() struct
44 val: String, in can_specify_code_for_url()
61 struct TestStruct { in can_specify_message_for_url() struct
63 val: String, in can_specify_message_for_url()
H A Dcontains.rs10 struct TestStruct { in can_validate_contains_ok() struct
12 val: String, in can_validate_contains_ok()
23 struct TestStruct { in value_not_containing_needle_fails_validation() struct
25 val: String, in value_not_containing_needle_fails_validation()
43 struct TestStruct { in can_specify_code_for_contains() struct
45 val: String, in can_specify_code_for_contains()
60 struct TestStruct { in can_specify_message_for_contains() struct
62 val: String, in can_specify_message_for_contains()
H A Demail.rs10 struct TestStruct { in can_validate_valid_email() struct
12 val: String, in can_validate_valid_email()
23 struct TestStruct { in bad_email_fails_validation() struct
25 val: String, in bad_email_fails_validation()
42 struct TestStruct { in can_specify_code_for_email() struct
44 val: String, in can_specify_code_for_email()
59 struct TestStruct { in can_specify_message_for_email() struct
61 val: String, in can_specify_message_for_email()
/dports/devel/fbthrift/fbthrift-2021.12.27.00/thrift/lib/cpp2/test/frozen2/view_helper/
H A Dview_helper.thrift24 struct TestStruct { struct
25 1: i32 i32Field;
26 2: string strField;
27 3: double doubleField;
28 4: bool boolField;
29 5: list<string> listField;
30 6: map<i32, string> mapField;
31 7: TestEnum enumField;
/dports/devel/awless/awless-0.1.11/aws/spec/
H A Dsetters_test.go676 type TestStruct struct { struct
677 …gRequired *string `awsName:"CloudStringRequired" awsType:"awsstr" templateName:"fstringrequired"`
678 FieldString *string `awsName:"CloudString" awsType:"awsstr" templateName:"fstring"`
679 FieldInt64 *int64 `awsName:"CloudInt64" awsType:"awsint64" templateName:"fint"`
680 FieldBool *bool `awsName:"Embedded.CloudBool" awsType:"awsbool" templateName:"fbool"`
681 …ngSlice []*string `awsName:"CloudStringSlice" awsType:"awsstringslice" templateName:"fstrslice"`
682 NilField *string `awsName:"CloudNilString" awsType:"awsstr" templateName:"fnilstring"`
683 …ld *int64 `awsName:"CloudField1,CloudField2" awsType:"awsint64" templateName:"fmultistring"`
686 func (ts *TestStruct) Validate_FieldStringRequired() (err error) {
693 func (ts *TestStruct) Validate_FieldString() (err error) {
[all …]
/dports/devel/llvm70/llvm-7.0.1.src/tools/clang/test/OpenMP/
H A Dordered_doacross_codegen.cpp78 struct TestStruct { struct
87 TestStruct() { in TestStruct() argument
/dports/net/goreplay/goreplay-1.2.0/vendor/github.com/mattbaird/elastigo/elastigo-2fe47fd29e4b/lib/
H A Dindicesputmapping_test.go51 type TestStruct struct { struct
52 Id string `json:"id" elastic:"index:not_analyzed"`
53 DontIndex string `json:"dontIndex" elastic:"index:no"`
55 Omitted string `json:"-"`
56 NoJson string `elastic:"type:string"`
57 unexported string
59 Embedded
60 Inner InnerStruct `json:"inner"`
61 InnerP *InnerStruct `json:"pointer_to_inner"`
62 InnerS []InnerStruct `json:"slice_of_inner"`
[all …]
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/clang/test/OpenMP/
H A Dordered_doacross_codegen.cpp89 struct TestStruct { struct
98 TestStruct() { in TestStruct() function
/dports/devel/llvm10/llvm-10.0.1.src/tools/clang/test/OpenMP/
H A Dordered_doacross_codegen.cpp89 struct TestStruct { struct
98 TestStruct() { in TestStruct() argument
/dports/devel/llvm90/llvm-9.0.1.src/tools/clang/test/OpenMP/
H A Dordered_doacross_codegen.cpp89 struct TestStruct { struct
98 TestStruct() { in TestStruct() function
/dports/devel/llvm80/llvm-8.0.1.src/tools/clang/test/OpenMP/
H A Dordered_doacross_codegen.cpp89 struct TestStruct { struct
98 TestStruct() { in TestStruct() argument
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/clang/test/OpenMP/
H A Dordered_doacross_codegen.cpp153 struct TestStruct { struct
162 TestStruct() { in TestStruct() argument
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/clang/test/OpenMP/
H A Dordered_doacross_codegen.cpp153 struct TestStruct { struct
162 TestStruct() { in TestStruct() argument

12345678910>>...24