mirror of
https://github.com/ceph/ceph-csi.git
synced 2025-06-14 18:53:35 +00:00
build: move e2e dependencies into e2e/go.mod
Several packages are only used while running the e2e suite. These packages are less important to update, as the they can not influence the final executable that is part of the Ceph-CSI container-image. By moving these dependencies out of the main Ceph-CSI go.mod, it is easier to identify if a reported CVE affects Ceph-CSI, or only the testing (like most of the Kubernetes CVEs). Signed-off-by: Niels de Vos <ndevos@ibm.com>
This commit is contained in:
committed by
mergify[bot]
parent
15da101b1b
commit
bec6090996
48
e2e/vendor/google.golang.org/protobuf/runtime/protoimpl/impl.go
generated
vendored
Normal file
48
e2e/vendor/google.golang.org/protobuf/runtime/protoimpl/impl.go
generated
vendored
Normal file
@ -0,0 +1,48 @@
|
||||
// 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 protoimpl contains the default implementation for messages
|
||||
// generated by protoc-gen-go.
|
||||
//
|
||||
// WARNING: This package should only ever be imported by generated messages.
|
||||
// The compatibility agreement covers nothing except for functionality needed
|
||||
// to keep existing generated messages operational. Breakages that occur due
|
||||
// to unauthorized usages of this package are not the author's responsibility.
|
||||
package protoimpl
|
||||
|
||||
import (
|
||||
"google.golang.org/protobuf/internal/filedesc"
|
||||
"google.golang.org/protobuf/internal/filetype"
|
||||
"google.golang.org/protobuf/internal/impl"
|
||||
"google.golang.org/protobuf/internal/protolazy"
|
||||
)
|
||||
|
||||
// UnsafeEnabled specifies whether package unsafe can be used.
|
||||
const UnsafeEnabled = impl.UnsafeEnabled
|
||||
|
||||
type (
|
||||
// Types used by generated code in init functions.
|
||||
DescBuilder = filedesc.Builder
|
||||
TypeBuilder = filetype.Builder
|
||||
|
||||
// Types used by generated code to implement EnumType, MessageType, and ExtensionType.
|
||||
EnumInfo = impl.EnumInfo
|
||||
MessageInfo = impl.MessageInfo
|
||||
ExtensionInfo = impl.ExtensionInfo
|
||||
|
||||
// Types embedded in generated messages.
|
||||
MessageState = impl.MessageState
|
||||
SizeCache = impl.SizeCache
|
||||
WeakFields = impl.WeakFields
|
||||
UnknownFields = impl.UnknownFields
|
||||
ExtensionFields = impl.ExtensionFields
|
||||
ExtensionFieldV1 = impl.ExtensionField
|
||||
|
||||
Pointer = impl.Pointer
|
||||
|
||||
LazyUnmarshalInfo = *protolazy.XXX_lazyUnmarshalInfo
|
||||
RaceDetectHookData = impl.RaceDetectHookData
|
||||
)
|
||||
|
||||
var X impl.Export
|
60
e2e/vendor/google.golang.org/protobuf/runtime/protoimpl/version.go
generated
vendored
Normal file
60
e2e/vendor/google.golang.org/protobuf/runtime/protoimpl/version.go
generated
vendored
Normal file
@ -0,0 +1,60 @@
|
||||
// Copyright 2019 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 protoimpl
|
||||
|
||||
import (
|
||||
"google.golang.org/protobuf/internal/version"
|
||||
)
|
||||
|
||||
const (
|
||||
// MaxVersion is the maximum supported version for generated .pb.go files.
|
||||
// It is always the current version of the module.
|
||||
MaxVersion = version.Minor
|
||||
|
||||
// GenVersion is the runtime version required by generated .pb.go files.
|
||||
// This is incremented when generated code relies on new functionality
|
||||
// in the runtime.
|
||||
GenVersion = 20
|
||||
|
||||
// MinVersion is the minimum supported version for generated .pb.go files.
|
||||
// This is incremented when the runtime drops support for old code.
|
||||
MinVersion = 0
|
||||
)
|
||||
|
||||
// EnforceVersion is used by code generated by protoc-gen-go
|
||||
// to statically enforce minimum and maximum versions of this package.
|
||||
// A compilation failure implies either that:
|
||||
// - the runtime package is too old and needs to be updated OR
|
||||
// - the generated code is too old and needs to be regenerated.
|
||||
//
|
||||
// The runtime package can be upgraded by running:
|
||||
//
|
||||
// go get google.golang.org/protobuf
|
||||
//
|
||||
// The generated code can be regenerated by running:
|
||||
//
|
||||
// protoc --go_out=${PROTOC_GEN_GO_ARGS} ${PROTO_FILES}
|
||||
//
|
||||
// Example usage by generated code:
|
||||
//
|
||||
// const (
|
||||
// // Verify that this generated code is sufficiently up-to-date.
|
||||
// _ = protoimpl.EnforceVersion(genVersion - protoimpl.MinVersion)
|
||||
// // Verify that runtime/protoimpl is sufficiently up-to-date.
|
||||
// _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - genVersion)
|
||||
// )
|
||||
//
|
||||
// The genVersion is the current minor version used to generated the code.
|
||||
// This compile-time check relies on negative integer overflow of a uint
|
||||
// being a compilation failure (guaranteed by the Go specification).
|
||||
type EnforceVersion uint
|
||||
|
||||
// This enforces the following invariant:
|
||||
//
|
||||
// MinVersion ≤ GenVersion ≤ MaxVersion
|
||||
const (
|
||||
_ = EnforceVersion(GenVersion - MinVersion)
|
||||
_ = EnforceVersion(MaxVersion - GenVersion)
|
||||
)
|
Reference in New Issue
Block a user