Home
last modified time | relevance | path

Searched defs:Type (Results 151 – 175 of 51020) sorted by relevance

12345678910>>...2041

/dports/benchmarks/vegeta/vegeta-12.8.4/vendor/github.com/mailru/easyjson/gen/
H A Ddecoder.go17 func (g *Generator) getDecoderName(t reflect.Type) string {
60 func (g *Generator) genTypeDecoder(t reflect.Type, out string, tags fieldTags, indent int) error {
90 func hasCustomUnmarshaler(t reflect.Type) bool {
289 func (g *Generator) genStructFieldDecoder(t reflect.Type, f reflect.StructField) error {
309 func (g *Generator) genRequiredFieldSet(t reflect.Type, f reflect.StructField) {
319 func (g *Generator) genRequiredFieldCheck(t reflect.Type, f reflect.StructField) {
349 func getStructFields(t reflect.Type) ([]reflect.StructField, error) {
390 func (g *Generator) genDecoder(t reflect.Type) error {
399 func (g *Generator) genSliceArrayDecoder(t reflect.Type) error {
423 func (g *Generator) genStructDecoder(t reflect.Type) error {
[all …]
/dports/benchmarks/ali/ali-0.7.5/vendor/github.com/mailru/easyjson/gen/
H A Ddecoder.go17 func (g *Generator) getDecoderName(t reflect.Type) string {
60 func (g *Generator) genTypeDecoder(t reflect.Type, out string, tags fieldTags, indent int) error {
90 func hasCustomUnmarshaler(t reflect.Type) bool {
289 func (g *Generator) genStructFieldDecoder(t reflect.Type, f reflect.StructField) error {
309 func (g *Generator) genRequiredFieldSet(t reflect.Type, f reflect.StructField) {
319 func (g *Generator) genRequiredFieldCheck(t reflect.Type, f reflect.StructField) {
349 func getStructFields(t reflect.Type) ([]reflect.StructField, error) {
390 func (g *Generator) genDecoder(t reflect.Type) error {
399 func (g *Generator) genSliceArrayDecoder(t reflect.Type) error {
423 func (g *Generator) genStructDecoder(t reflect.Type) error {
[all …]
/dports/textproc/gitlab-elasticsearch-indexer/gitlab-elasticsearch-indexer-ef1440548effec15831eda2d246dacc43233cefb/vendor/github.com/mailru/easyjson/gen/
H A Ddecoder.go17 func (g *Generator) getDecoderName(t reflect.Type) string {
60 func (g *Generator) genTypeDecoder(t reflect.Type, out string, tags fieldTags, indent int) error {
90 func hasCustomUnmarshaler(t reflect.Type) bool {
289 func (g *Generator) genStructFieldDecoder(t reflect.Type, f reflect.StructField) error {
309 func (g *Generator) genRequiredFieldSet(t reflect.Type, f reflect.StructField) {
319 func (g *Generator) genRequiredFieldCheck(t reflect.Type, f reflect.StructField) {
349 func getStructFields(t reflect.Type) ([]reflect.StructField, error) {
390 func (g *Generator) genDecoder(t reflect.Type) error {
399 func (g *Generator) genSliceArrayDecoder(t reflect.Type) error {
423 func (g *Generator) genStructDecoder(t reflect.Type) error {
[all …]
/dports/sysutils/istio/istio-1.6.7/vendor/github.com/mailru/easyjson/gen/
H A Ddecoder.go17 func (g *Generator) getDecoderName(t reflect.Type) string {
60 func (g *Generator) genTypeDecoder(t reflect.Type, out string, tags fieldTags, indent int) error {
90 func hasCustomUnmarshaler(t reflect.Type) bool {
289 func (g *Generator) genStructFieldDecoder(t reflect.Type, f reflect.StructField) error {
309 func (g *Generator) genRequiredFieldSet(t reflect.Type, f reflect.StructField) {
319 func (g *Generator) genRequiredFieldCheck(t reflect.Type, f reflect.StructField) {
349 func getStructFields(t reflect.Type) ([]reflect.StructField, error) {
390 func (g *Generator) genDecoder(t reflect.Type) error {
399 func (g *Generator) genSliceArrayDecoder(t reflect.Type) error {
423 func (g *Generator) genStructDecoder(t reflect.Type) error {
[all …]
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/llgo/irgen/
H A Dpredicates.go19 func isBoolean(typ types.Type) bool {
24 func isInteger(typ types.Type) bool {
29 func isUnsigned(typ types.Type) bool {
34 func isFloat(typ types.Type) bool {
39 func isComplex(typ types.Type) bool {
44 func isString(typ types.Type) bool {
49 func isUntyped(typ types.Type) bool {
54 func isSlice(typ types.Type, bkind types.BasicKind) bool {
/dports/net-mgmt/bosun/bosun-0.9.0-preview/vendor/github.com/prometheus/prometheus/vendor/k8s.io/client-go/util/workqueue/
H A Dqueue.go47 type Type struct { struct
51 queue []t
54 dirty set
60 processing set
62 cond *sync.Cond
64 shuttingDown bool
66 metrics queueMetrics
87 func (q *Type) Add(item interface{}) {
111 func (q *Type) Len() int {
160 func (q *Type) ShutDown() {
[all …]
/dports/net-p2p/go-ethereum/go-ethereum-1.10.14/vendor/github.com/status-im/keycard-go/vendor/github.com/ethereum/go-ethereum/accounts/abi/
H A Dtype.go44 type Type struct { struct
45 Elem *Type
47 Kind reflect.Kind
48 Type reflect.Type member
49 Size int
50 T byte // Our own type checking
52 stringKind string // holds the unparsed string for deriving signatures
174 func (t Type) String() (out string) {
178 func (t Type) pack(v reflect.Value) ([]byte, error) {
207 func (t Type) requiresLengthPrefix() bool {
/dports/www/gitea/gitea-1.16.5/vendor/github.com/goccy/go-json/internal/decoder/
H A Dcompile.go46 func compileToGetDecoderSlowPath(typeptr uintptr, typ *runtime.Type) (Decoder, error) {
131 func isStringTagSupportedType(typ *runtime.Type) bool {
183 func compileInt(typ *runtime.Type, structName, fieldName string) (Decoder, error) {
189 func compileInt8(typ *runtime.Type, structName, fieldName string) (Decoder, error) {
195 func compileInt16(typ *runtime.Type, structName, fieldName string) (Decoder, error) {
201 func compileInt32(typ *runtime.Type, structName, fieldName string) (Decoder, error) {
207 func compileInt64(typ *runtime.Type, structName, fieldName string) (Decoder, error) {
213 func compileUint(typ *runtime.Type, structName, fieldName string) (Decoder, error) {
306 func compileFunc(typ *runtime.Type, strutName, fieldName string) (Decoder, error) {
310 func typeToStructTags(typ *runtime.Type) runtime.StructTags {
[all …]
/dports/net/rclone/rclone-1.57.0/vendor/google.golang.org/genproto/googleapis/actions/sdk/v2/interactionmodel/type/
H A Dtype.pb.go42 type Type struct { struct
43 state protoimpl.MessageState
44 sizeCache protoimpl.SizeCache
45 unknownFields protoimpl.UnknownFields
61 func (x *Type) Reset() {
70 func (x *Type) String() string {
74 func (*Type) ProtoMessage() {}
89 func (*Type) Descriptor() ([]byte, []int) {
93 func (m *Type) GetSubType() isType_SubType {
100 func (x *Type) GetSynonym() *SynonymType {
[all …]
/dports/net/drive/drive-0.4.0/vendor/google.golang.org/genproto/googleapis/actions/sdk/v2/interactionmodel/type/
H A Dtype.pb.go42 type Type struct { struct
43 state protoimpl.MessageState
44 sizeCache protoimpl.SizeCache
45 unknownFields protoimpl.UnknownFields
61 func (x *Type) Reset() {
70 func (x *Type) String() string {
74 func (*Type) ProtoMessage() {}
89 func (*Type) Descriptor() ([]byte, []int) {
93 func (m *Type) GetSubType() isType_SubType {
100 func (x *Type) GetSynonym() *SynonymType {
[all …]
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/workhorse/vendor/google.golang.org/genproto/googleapis/actions/sdk/v2/interactionmodel/type/
H A Dtype.pb.go47 type Type struct { struct
48 state protoimpl.MessageState
49 sizeCache protoimpl.SizeCache
50 unknownFields protoimpl.UnknownFields
66 func (x *Type) Reset() {
75 func (x *Type) String() string {
79 func (*Type) ProtoMessage() {}
94 func (*Type) Descriptor() ([]byte, []int) {
98 func (m *Type) GetSubType() isType_SubType {
105 func (x *Type) GetSynonym() *SynonymType {
[all …]
/dports/www/gohugo/hugo-0.91.2/vendor/google.golang.org/genproto/googleapis/actions/sdk/v2/interactionmodel/type/
H A Dtype.pb.go42 type Type struct { struct
43 state protoimpl.MessageState
44 sizeCache protoimpl.SizeCache
45 unknownFields protoimpl.UnknownFields
61 func (x *Type) Reset() {
70 func (x *Type) String() string {
74 func (*Type) ProtoMessage() {}
89 func (*Type) Descriptor() ([]byte, []int) {
93 func (m *Type) GetSubType() isType_SubType {
100 func (x *Type) GetSynonym() *SynonymType {
[all …]
/dports/www/gitlab-pages/gitlab-pages-f8512edbec4ec83b426c8ca2dda467de424685e4/vendor/google.golang.org/genproto/googleapis/actions/sdk/v2/interactionmodel/type/
H A Dtype.pb.go42 type Type struct { struct
43 state protoimpl.MessageState
44 sizeCache protoimpl.SizeCache
45 unknownFields protoimpl.UnknownFields
61 func (x *Type) Reset() {
70 func (x *Type) String() string {
74 func (*Type) ProtoMessage() {}
89 func (*Type) Descriptor() ([]byte, []int) {
93 func (m *Type) GetSubType() isType_SubType {
100 func (x *Type) GetSynonym() *SynonymType {
[all …]
/dports/net/cloudquery/cloudquery-0.16.0/vendor/google.golang.org/genproto/googleapis/actions/sdk/v2/interactionmodel/type/
H A Dtype.pb.go42 type Type struct { struct
43 state protoimpl.MessageState
44 sizeCache protoimpl.SizeCache
45 unknownFields protoimpl.UnknownFields
61 func (x *Type) Reset() {
70 func (x *Type) String() string {
74 func (*Type) ProtoMessage() {}
89 func (*Type) Descriptor() ([]byte, []int) {
93 func (m *Type) GetSubType() isType_SubType {
100 func (x *Type) GetSynonym() *SynonymType {
[all …]
/dports/net-mgmt/prometheus2/prometheus-2.30.3/vendor/google.golang.org/genproto/googleapis/actions/sdk/v2/interactionmodel/type/
H A Dtype.pb.go42 type Type struct { struct
43 state protoimpl.MessageState
44 sizeCache protoimpl.SizeCache
45 unknownFields protoimpl.UnknownFields
61 func (x *Type) Reset() {
70 func (x *Type) String() string {
74 func (*Type) ProtoMessage() {}
89 func (*Type) Descriptor() ([]byte, []int) {
93 func (m *Type) GetSubType() isType_SubType {
100 func (x *Type) GetSynonym() *SynonymType {
[all …]
/dports/security/xray-core/Xray-core-1.5.0/vendor/google.golang.org/genproto/googleapis/actions/sdk/v2/interactionmodel/type/
H A Dtype.pb.go42 type Type struct { struct
43 state protoimpl.MessageState
44 sizeCache protoimpl.SizeCache
45 unknownFields protoimpl.UnknownFields
61 func (x *Type) Reset() {
70 func (x *Type) String() string {
74 func (*Type) ProtoMessage() {}
89 func (*Type) Descriptor() ([]byte, []int) {
93 func (m *Type) GetSubType() isType_SubType {
100 func (x *Type) GetSynonym() *SynonymType {
[all …]
/dports/net-mgmt/promscale/promscale-0.6.2/vendor/google.golang.org/genproto/googleapis/actions/sdk/v2/interactionmodel/type/
H A Dtype.pb.go47 type Type struct { struct
48 state protoimpl.MessageState
49 sizeCache protoimpl.SizeCache
50 unknownFields protoimpl.UnknownFields
66 func (x *Type) Reset() {
75 func (x *Type) String() string {
79 func (*Type) ProtoMessage() {}
94 func (*Type) Descriptor() ([]byte, []int) {
98 func (m *Type) GetSubType() isType_SubType {
105 func (x *Type) GetSynonym() *SynonymType {
[all …]
/dports/www/grafana8/grafana-8.3.6/vendor/google.golang.org/genproto/googleapis/actions/sdk/v2/interactionmodel/type/
H A Dtype.pb.go42 type Type struct { struct
43 state protoimpl.MessageState
44 sizeCache protoimpl.SizeCache
45 unknownFields protoimpl.UnknownFields
61 func (x *Type) Reset() {
70 func (x *Type) String() string {
74 func (*Type) ProtoMessage() {}
89 func (*Type) Descriptor() ([]byte, []int) {
93 func (m *Type) GetSubType() isType_SubType {
100 func (x *Type) GetSynonym() *SynonymType {
[all …]
/dports/devel/gitlab-shell/gitlab-shell-65b8ec55bebd0aea64ac52b9878bafcc2ad992d3/vendor/google.golang.org/genproto/googleapis/actions/sdk/v2/interactionmodel/type/
H A Dtype.pb.go47 type Type struct { struct
48 state protoimpl.MessageState
49 sizeCache protoimpl.SizeCache
50 unknownFields protoimpl.UnknownFields
66 func (x *Type) Reset() {
75 func (x *Type) String() string {
79 func (*Type) ProtoMessage() {}
94 func (*Type) Descriptor() ([]byte, []int) {
98 func (m *Type) GetSubType() isType_SubType {
105 func (x *Type) GetSynonym() *SynonymType {
[all …]
/dports/sysutils/restic/restic-0.12.1/vendor/google.golang.org/genproto/googleapis/actions/sdk/v2/interactionmodel/type/
H A Dtype.pb.go42 type Type struct { struct
43 state protoimpl.MessageState
44 sizeCache protoimpl.SizeCache
45 unknownFields protoimpl.UnknownFields
61 func (x *Type) Reset() {
70 func (x *Type) String() string {
74 func (*Type) ProtoMessage() {}
89 func (*Type) Descriptor() ([]byte, []int) {
93 func (m *Type) GetSubType() isType_SubType {
100 func (x *Type) GetSynonym() *SynonymType {
[all …]
/dports/www/minio-client/mc-RELEASE.2021-12-10T00-14-28Z/vendor/google.golang.org/genproto/googleapis/actions/sdk/v2/interactionmodel/type/
H A Dtype.pb.go42 type Type struct { struct
43 state protoimpl.MessageState
44 sizeCache protoimpl.SizeCache
45 unknownFields protoimpl.UnknownFields
61 func (x *Type) Reset() {
70 func (x *Type) String() string {
74 func (*Type) ProtoMessage() {}
89 func (*Type) Descriptor() ([]byte, []int) {
93 func (m *Type) GetSubType() isType_SubType {
100 func (x *Type) GetSynonym() *SynonymType {
[all …]
/dports/sysutils/gomplate/gomplate-3.9.0/vendor/google.golang.org/genproto/googleapis/actions/sdk/v2/interactionmodel/type/
H A Dtype.pb.go47 type Type struct { struct
48 state protoimpl.MessageState
49 sizeCache protoimpl.SizeCache
50 unknownFields protoimpl.UnknownFields
66 func (x *Type) Reset() {
75 func (x *Type) String() string {
79 func (*Type) ProtoMessage() {}
94 func (*Type) Descriptor() ([]byte, []int) {
98 func (m *Type) GetSubType() isType_SubType {
105 func (x *Type) GetSynonym() *SynonymType {
[all …]
/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/vendor/google.golang.org/genproto/go-genproto-6486ece9c497/googleapis/actions/sdk/v2/interactionmodel/type/
H A Dtype.pb.go47 type Type struct { struct
48 state protoimpl.MessageState
49 sizeCache protoimpl.SizeCache
50 unknownFields protoimpl.UnknownFields
66 func (x *Type) Reset() {
75 func (x *Type) String() string {
79 func (*Type) ProtoMessage() {}
94 func (*Type) Descriptor() ([]byte, []int) {
98 func (m *Type) GetSubType() isType_SubType {
105 func (x *Type) GetSynonym() *SynonymType {
[all …]
/dports/textproc/gitlab-elasticsearch-indexer/gitlab-elasticsearch-indexer-ef1440548effec15831eda2d246dacc43233cefb/vendor/google.golang.org/genproto/googleapis/actions/sdk/v2/interactionmodel/type/
H A Dtype.pb.go47 type Type struct { struct
48 state protoimpl.MessageState
49 sizeCache protoimpl.SizeCache
50 unknownFields protoimpl.UnknownFields
66 func (x *Type) Reset() {
75 func (x *Type) String() string {
79 func (*Type) ProtoMessage() {}
94 func (*Type) Descriptor() ([]byte, []int) {
98 func (m *Type) GetSubType() isType_SubType {
105 func (x *Type) GetSynonym() *SynonymType {
[all …]
/dports/www/tusd/tusd-1.8.0/vendor/google.golang.org/genproto/googleapis/actions/sdk/v2/interactionmodel/type/
H A Dtype.pb.go42 type Type struct { struct
43 state protoimpl.MessageState
44 sizeCache protoimpl.SizeCache
45 unknownFields protoimpl.UnknownFields
61 func (x *Type) Reset() {
70 func (x *Type) String() string {
74 func (*Type) ProtoMessage() {}
89 func (*Type) Descriptor() ([]byte, []int) {
93 func (m *Type) GetSubType() isType_SubType {
100 func (x *Type) GetSynonym() *SynonymType {
[all …]

12345678910>>...2041