mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-19 18:02:01 +00:00
1. Updated etcd/protobuf/grpc dependencies: echo " hack/pin-dependency.sh github.com/golang/protobuf latest hack/pin-dependency.sh google.golang.org/protobuf latest hack/pin-dependency.sh go.etcd.io/etcd/api/v3 v3.5.0-rc.0 hack/pin-dependency.sh go.etcd.io/etcd/client/v3 v3.5.0-rc.0 hack/pin-dependency.sh go.etcd.io/etcd/client/pkg/v3 v3.5.0-rc.0 hack/pin-dependency.sh go.etcd.io/etcd/pkg/v3 v3.5.0-rc.0 hack/pin-dependency.sh go.etcd.io/etcd/server/v3 v3.5.0-rc.0 hack/pin-dependency.sh go.etcd.io/etcd/tests/v3 v3.5.0-rc.0 hack/pin-dependency.sh google.golang.org/grpc latest " | bash 2. Linted transitive dependencies until versions are clean: hack/lint-dependencies.sh | grep " hack/pin-dependency.sh" | bash 3. Linted dependencies until dropped versions are clean: hack/lint-dependencies.sh | grep "dropreplace" | bash 4. Updated vendor and internal modules: hack/update-vendor.sh hack/update-internal-modules.sh Repeated steps 2-4 until clean
44 lines
1.4 KiB
Go
44 lines
1.4 KiB
Go
// Copyright 2018 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package proto
|
|
|
|
import (
|
|
"google.golang.org/protobuf/internal/errors"
|
|
"google.golang.org/protobuf/reflect/protoreflect"
|
|
)
|
|
|
|
// Message is the top-level interface that all messages must implement.
|
|
// It provides access to a reflective view of a message.
|
|
// Any implementation of this interface may be used with all functions in the
|
|
// protobuf module that accept a Message, except where otherwise specified.
|
|
//
|
|
// This is the v2 interface definition for protobuf messages.
|
|
// The v1 interface definition is "github.com/golang/protobuf/proto".Message.
|
|
//
|
|
// To convert a v1 message to a v2 message,
|
|
// use "github.com/golang/protobuf/proto".MessageV2.
|
|
// To convert a v2 message to a v1 message,
|
|
// use "github.com/golang/protobuf/proto".MessageV1.
|
|
type Message = protoreflect.ProtoMessage
|
|
|
|
// Error matches all errors produced by packages in the protobuf module.
|
|
//
|
|
// That is, errors.Is(err, Error) reports whether an error is produced
|
|
// by this module.
|
|
var Error error
|
|
|
|
func init() {
|
|
Error = errors.Error
|
|
}
|
|
|
|
// MessageName returns the full name of m.
|
|
// If m is nil, it returns an empty string.
|
|
func MessageName(m Message) protoreflect.FullName {
|
|
if m == nil {
|
|
return ""
|
|
}
|
|
return m.ProtoReflect().Descriptor().FullName()
|
|
}
|