當前位置: 首頁>>代碼示例>>Golang>>正文


Golang proto.GetBoolExtension函數代碼示例

本文整理匯總了Golang中github.com/gogo/protobuf/proto.GetBoolExtension函數的典型用法代碼示例。如果您正苦於以下問題:Golang GetBoolExtension函數的具體用法?Golang GetBoolExtension怎麽用?Golang GetBoolExtension使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了GetBoolExtension函數的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1: HasUnrecognized

func HasUnrecognized(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool {
	if IsProto3(file) {
		return false
	}
	return proto.GetBoolExtension(message.Options, E_GoprotoUnrecognized, proto.GetBoolExtension(file.Options, E_GoprotoUnrecognizedAll, true))
}
開發者ID:40a,項目名稱:bootkube,代碼行數:6,代碼來源:helper.go

示例2: ImportsGoGoProto

func ImportsGoGoProto(file *google_protobuf.FileDescriptorProto) bool {
	return proto.GetBoolExtension(file.Options, E_GogoprotoImport, true)
}
開發者ID:40a,項目名稱:bootkube,代碼行數:3,代碼來源:helper.go

示例3: IsUnsafeUnmarshaler

func IsUnsafeUnmarshaler(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool {
	return proto.GetBoolExtension(message.Options, E_UnsafeUnmarshaler, proto.GetBoolExtension(file.Options, E_UnsafeUnmarshalerAll, false))
}
開發者ID:40a,項目名稱:bootkube,代碼行數:3,代碼來源:helper.go

示例4: HasExtensionsMap

func HasExtensionsMap(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool {
	return proto.GetBoolExtension(message.Options, E_GoprotoExtensionsMap, proto.GetBoolExtension(file.Options, E_GoprotoExtensionsMapAll, true))
}
開發者ID:40a,項目名稱:bootkube,代碼行數:3,代碼來源:helper.go

示例5: IsProtoSizer

func IsProtoSizer(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool {
	return proto.GetBoolExtension(message.Options, E_Protosizer, proto.GetBoolExtension(file.Options, E_ProtosizerAll, false))
}
開發者ID:40a,項目名稱:bootkube,代碼行數:3,代碼來源:helper.go

示例6: IsEnumStringer

func IsEnumStringer(file *google_protobuf.FileDescriptorProto, enum *google_protobuf.EnumDescriptorProto) bool {
	return proto.GetBoolExtension(enum.Options, E_EnumStringer, proto.GetBoolExtension(file.Options, E_EnumStringerAll, false))
}
開發者ID:40a,項目名稱:bootkube,代碼行數:3,代碼來源:helper.go

示例7: HasPopulate

func HasPopulate(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool {
	return proto.GetBoolExtension(message.Options, E_Populate, proto.GetBoolExtension(file.Options, E_PopulateAll, false))
}
開發者ID:40a,項目名稱:bootkube,代碼行數:3,代碼來源:helper.go

示例8: EnabledGoEnumPrefix

func EnabledGoEnumPrefix(file *google_protobuf.FileDescriptorProto, enum *google_protobuf.EnumDescriptorProto) bool {
	return proto.GetBoolExtension(enum.Options, E_GoprotoEnumPrefix, proto.GetBoolExtension(file.Options, E_GoprotoEnumPrefixAll, true))
}
開發者ID:40a,項目名稱:bootkube,代碼行數:3,代碼來源:helper.go

示例9: HasGoString

func HasGoString(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool {
	return proto.GetBoolExtension(message.Options, E_Gostring, proto.GetBoolExtension(file.Options, E_GostringAll, false))
}
開發者ID:40a,項目名稱:bootkube,代碼行數:3,代碼來源:helper.go

示例10: HasVerboseEqual

func HasVerboseEqual(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool {
	return proto.GetBoolExtension(message.Options, E_VerboseEqual, proto.GetBoolExtension(file.Options, E_VerboseEqualAll, false))
}
開發者ID:40a,項目名稱:bootkube,代碼行數:3,代碼來源:helper.go

示例11: IsUnion

func IsUnion(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool {
	return proto.GetBoolExtension(message.Options, E_Onlyone, proto.GetBoolExtension(file.Options, E_OnlyoneAll, false))
}
開發者ID:40a,項目名稱:bootkube,代碼行數:3,代碼來源:helper.go

示例12: HasGoGetters

func HasGoGetters(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool {
	return proto.GetBoolExtension(message.Options, E_GoprotoGetters, proto.GetBoolExtension(file.Options, E_GoprotoGettersAll, true))
}
開發者ID:40a,項目名稱:bootkube,代碼行數:3,代碼來源:helper.go

示例13: EnabledGoStringer

func EnabledGoStringer(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool {
	return proto.GetBoolExtension(message.Options, E_GoprotoStringer, proto.GetBoolExtension(file.Options, E_GoprotoStringerAll, true))
}
開發者ID:40a,項目名稱:bootkube,代碼行數:3,代碼來源:helper.go

示例14: IsEmbed

func IsEmbed(field *google_protobuf.FieldDescriptorProto) bool {
	return proto.GetBoolExtension(field.Options, E_Embed, false)
}
開發者ID:40a,項目名稱:bootkube,代碼行數:3,代碼來源:helper.go

示例15: HasBenchGen

func HasBenchGen(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool {
	return proto.GetBoolExtension(message.Options, E_Benchgen, proto.GetBoolExtension(file.Options, E_BenchgenAll, false))
}
開發者ID:40a,項目名稱:bootkube,代碼行數:3,代碼來源:helper.go


注:本文中的github.com/gogo/protobuf/proto.GetBoolExtension函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。