const google.golang.org/protobuf/encoding/protowire.MaxValidNumber
9 uses
google.golang.org/protobuf/encoding/protowire (current package)
wire.go#L27: MaxValidNumber Number = 1<<29 - 1
wire.go#L36: return MinValidNumber <= n && n < FirstReservedNumber || LastReservedNumber < n && n <= MaxValidNumber
google.golang.org/protobuf/internal/filedesc
desc_list.go#L187: return protowire.MinValidNumber <= n && (n <= protowire.MaxValidNumber || isMessageSet)
google.golang.org/protobuf/internal/impl
codec_map.go#L132: if num > protowire.MaxValidNumber {
codec_map.go#L189: if num > protowire.MaxValidNumber {
decode.go#L108: if n := tag >> 3; n < uint64(protowire.MinValidNumber) || n > uint64(protowire.MaxValidNumber) {
validate.go#L269: if n := tag >> 3; n < uint64(protowire.MinValidNumber) || n > uint64(protowire.MaxValidNumber) {
google.golang.org/protobuf/proto
decode.go#L121: if num > protowire.MaxValidNumber {
decode.go#L218: if num > protowire.MaxValidNumber {
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |