mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-06-21 08:30:50 +00:00
[Vendor] blevesearch v0.8.1 -> v1.0.7 (#11360)
* Update blevesearch v0.8.1 -> v1.0.7 * make vendor Co-authored-by: zeripath <art27@cantab.net>
This commit is contained in:
parent
a44854c287
commit
fdf750e4d4
255 changed files with 9786 additions and 974 deletions
5
vendor/google.golang.org/protobuf/reflect/protoreflect/proto.go
generated
vendored
5
vendor/google.golang.org/protobuf/reflect/protoreflect/proto.go
generated
vendored
|
@ -22,8 +22,9 @@
|
|||
//
|
||||
// The protobuf descriptor interfaces are not meant to be implemented by
|
||||
// user code since they might need to be extended in the future to support
|
||||
// additions to the protobuf language. Protobuf descriptors can be constructed
|
||||
// using the "google.golang.org/protobuf/reflect/protodesc" package.
|
||||
// additions to the protobuf language.
|
||||
// The "google.golang.org/protobuf/reflect/protodesc" package converts between
|
||||
// google.protobuf.DescriptorProto messages and protobuf descriptors.
|
||||
//
|
||||
//
|
||||
// Go Type Descriptors
|
||||
|
|
13
vendor/google.golang.org/protobuf/reflect/protoreflect/type.go
generated
vendored
13
vendor/google.golang.org/protobuf/reflect/protoreflect/type.go
generated
vendored
|
@ -281,11 +281,19 @@ type FieldDescriptor interface {
|
|||
// It is usually the camel-cased form of the field name.
|
||||
JSONName() string
|
||||
|
||||
// HasPresence reports whether the field distinguishes between unpopulated
|
||||
// and default values.
|
||||
HasPresence() bool
|
||||
|
||||
// IsExtension reports whether this is an extension field. If false,
|
||||
// then Parent and ContainingMessage refer to the same message.
|
||||
// Otherwise, ContainingMessage and Parent likely differ.
|
||||
IsExtension() bool
|
||||
|
||||
// HasOptionalKeyword reports whether the "optional" keyword was explicitly
|
||||
// specified in the source .proto file.
|
||||
HasOptionalKeyword() bool
|
||||
|
||||
// IsWeak reports whether this is a weak field, which does not impose a
|
||||
// direct dependency on the target type.
|
||||
// If true, then Message returns a placeholder type.
|
||||
|
@ -375,6 +383,11 @@ type FieldDescriptors interface {
|
|||
type OneofDescriptor interface {
|
||||
Descriptor
|
||||
|
||||
// IsSynthetic reports whether this is a synthetic oneof created to support
|
||||
// proto3 optional semantics. If true, Fields contains exactly one field
|
||||
// with HasOptionalKeyword specified.
|
||||
IsSynthetic() bool
|
||||
|
||||
// Fields is a list of fields belonging to this oneof.
|
||||
Fields() FieldDescriptors
|
||||
|
||||
|
|
4
vendor/google.golang.org/protobuf/reflect/protoreflect/value.go
generated
vendored
4
vendor/google.golang.org/protobuf/reflect/protoreflect/value.go
generated
vendored
|
@ -114,8 +114,8 @@ type Message interface {
|
|||
// Mutable is a mutating operation and unsafe for concurrent use.
|
||||
Mutable(FieldDescriptor) Value
|
||||
|
||||
// NewField returns a new value for assignable to the field of a given descriptor.
|
||||
// For scalars, this returns the default value.
|
||||
// NewField returns a new value that is assignable to the field
|
||||
// for the given descriptor. For scalars, this returns the default value.
|
||||
// For lists, maps, and messages, this returns a new, empty, mutable value.
|
||||
NewField(FieldDescriptor) Value
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue