analysis_go_proto

package
v0.0.67 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 14, 2024 License: Apache-2.0, NCSA Imports: 7 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	AnalysisResult_Status_name = map[int32]string{
		0: "COMPLETE",
		1: "INCOMPLETE",
		2: "INVALID_REQUEST",
	}
	AnalysisResult_Status_value = map[string]int32{
		"COMPLETE":        0,
		"INCOMPLETE":      1,
		"INVALID_REQUEST": 2,
	}
)

Enum value maps for AnalysisResult_Status.

View Source
var File_kythe_proto_analysis_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type AnalysisOutput

type AnalysisOutput struct {
	Value       []byte          `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
	FinalResult *AnalysisResult `protobuf:"bytes,10,opt,name=final_result,json=finalResult,proto3" json:"final_result,omitempty"`
	// contains filtered or unexported fields
}

func (*AnalysisOutput) Descriptor deprecated

func (*AnalysisOutput) Descriptor() ([]byte, []int)

Deprecated: Use AnalysisOutput.ProtoReflect.Descriptor instead.

func (*AnalysisOutput) GetFinalResult

func (x *AnalysisOutput) GetFinalResult() *AnalysisResult

func (*AnalysisOutput) GetValue

func (x *AnalysisOutput) GetValue() []byte

func (*AnalysisOutput) ProtoMessage

func (*AnalysisOutput) ProtoMessage()

func (*AnalysisOutput) ProtoReflect added in v0.0.49

func (x *AnalysisOutput) ProtoReflect() protoreflect.Message

func (*AnalysisOutput) Reset

func (x *AnalysisOutput) Reset()

func (*AnalysisOutput) String

func (x *AnalysisOutput) String() string

type AnalysisRequest

type AnalysisRequest struct {
	Compilation       *CompilationUnit `protobuf:"bytes,1,opt,name=compilation,proto3" json:"compilation,omitempty"`
	FileDataService   string           `protobuf:"bytes,2,opt,name=file_data_service,json=fileDataService,proto3" json:"file_data_service,omitempty"`
	Revision          string           `protobuf:"bytes,3,opt,name=revision,proto3" json:"revision,omitempty"`
	BuildId           string           `protobuf:"bytes,4,opt,name=build_id,json=buildId,proto3" json:"build_id,omitempty"`
	CompilationDigest string           `protobuf:"bytes,5,opt,name=compilation_digest,json=compilationDigest,proto3" json:"compilation_digest,omitempty"`
	// contains filtered or unexported fields
}

func (*AnalysisRequest) Descriptor deprecated

func (*AnalysisRequest) Descriptor() ([]byte, []int)

Deprecated: Use AnalysisRequest.ProtoReflect.Descriptor instead.

func (*AnalysisRequest) GetBuildId

func (x *AnalysisRequest) GetBuildId() string

func (*AnalysisRequest) GetCompilation

func (x *AnalysisRequest) GetCompilation() *CompilationUnit

func (*AnalysisRequest) GetCompilationDigest added in v0.0.64

func (x *AnalysisRequest) GetCompilationDigest() string

func (*AnalysisRequest) GetFileDataService

func (x *AnalysisRequest) GetFileDataService() string

func (*AnalysisRequest) GetRevision

func (x *AnalysisRequest) GetRevision() string

func (*AnalysisRequest) ProtoMessage

func (*AnalysisRequest) ProtoMessage()

func (*AnalysisRequest) ProtoReflect added in v0.0.49

func (x *AnalysisRequest) ProtoReflect() protoreflect.Message

func (*AnalysisRequest) Reset

func (x *AnalysisRequest) Reset()

func (*AnalysisRequest) String

func (x *AnalysisRequest) String() string

type AnalysisResult

type AnalysisResult struct {
	Status  AnalysisResult_Status `protobuf:"varint,1,opt,name=status,proto3,enum=kythe.proto.AnalysisResult_Status" json:"status,omitempty"`
	Summary string                `protobuf:"bytes,2,opt,name=summary,proto3" json:"summary,omitempty"`
	Details []*anypb.Any          `protobuf:"bytes,3,rep,name=details,proto3" json:"details,omitempty"`
	// contains filtered or unexported fields
}

func (*AnalysisResult) Descriptor deprecated

func (*AnalysisResult) Descriptor() ([]byte, []int)

Deprecated: Use AnalysisResult.ProtoReflect.Descriptor instead.

func (*AnalysisResult) GetDetails added in v0.0.61

func (x *AnalysisResult) GetDetails() []*anypb.Any

func (*AnalysisResult) GetStatus

func (x *AnalysisResult) GetStatus() AnalysisResult_Status

func (*AnalysisResult) GetSummary

func (x *AnalysisResult) GetSummary() string

func (*AnalysisResult) ProtoMessage

func (*AnalysisResult) ProtoMessage()

func (*AnalysisResult) ProtoReflect added in v0.0.49

func (x *AnalysisResult) ProtoReflect() protoreflect.Message

func (*AnalysisResult) Reset

func (x *AnalysisResult) Reset()

func (*AnalysisResult) String

func (x *AnalysisResult) String() string

type AnalysisResult_Status

type AnalysisResult_Status int32
const (
	AnalysisResult_COMPLETE        AnalysisResult_Status = 0
	AnalysisResult_INCOMPLETE      AnalysisResult_Status = 1
	AnalysisResult_INVALID_REQUEST AnalysisResult_Status = 2
)

func (AnalysisResult_Status) Descriptor added in v0.0.49

func (AnalysisResult_Status) Enum added in v0.0.49

func (AnalysisResult_Status) EnumDescriptor deprecated

func (AnalysisResult_Status) EnumDescriptor() ([]byte, []int)

Deprecated: Use AnalysisResult_Status.Descriptor instead.

func (AnalysisResult_Status) Number added in v0.0.49

func (AnalysisResult_Status) String

func (x AnalysisResult_Status) String() string

func (AnalysisResult_Status) Type added in v0.0.49

type BuildMetadata added in v0.0.49

type BuildMetadata struct {
	CommitTimestamp *timestamppb.Timestamp `protobuf:"bytes,1,opt,name=commit_timestamp,json=commitTimestamp,proto3" json:"commit_timestamp,omitempty"`
	// contains filtered or unexported fields
}

func (*BuildMetadata) Descriptor deprecated added in v0.0.49

func (*BuildMetadata) Descriptor() ([]byte, []int)

Deprecated: Use BuildMetadata.ProtoReflect.Descriptor instead.

func (*BuildMetadata) GetCommitTimestamp added in v0.0.49

func (x *BuildMetadata) GetCommitTimestamp() *timestamppb.Timestamp

func (*BuildMetadata) ProtoMessage added in v0.0.49

func (*BuildMetadata) ProtoMessage()

func (*BuildMetadata) ProtoReflect added in v0.0.49

func (x *BuildMetadata) ProtoReflect() protoreflect.Message

func (*BuildMetadata) Reset added in v0.0.49

func (x *BuildMetadata) Reset()

func (*BuildMetadata) String added in v0.0.49

func (x *BuildMetadata) String() string

type CompilationBundle

type CompilationBundle struct {
	Unit  *CompilationUnit `protobuf:"bytes,1,opt,name=unit,proto3" json:"unit,omitempty"`
	Files []*FileData      `protobuf:"bytes,2,rep,name=files,proto3" json:"files,omitempty"`
	// contains filtered or unexported fields
}

func (*CompilationBundle) Descriptor deprecated

func (*CompilationBundle) Descriptor() ([]byte, []int)

Deprecated: Use CompilationBundle.ProtoReflect.Descriptor instead.

func (*CompilationBundle) GetFiles

func (x *CompilationBundle) GetFiles() []*FileData

func (*CompilationBundle) GetUnit

func (x *CompilationBundle) GetUnit() *CompilationUnit

func (*CompilationBundle) ProtoMessage

func (*CompilationBundle) ProtoMessage()

func (*CompilationBundle) ProtoReflect added in v0.0.49

func (x *CompilationBundle) ProtoReflect() protoreflect.Message

func (*CompilationBundle) Reset

func (x *CompilationBundle) Reset()

func (*CompilationBundle) String

func (x *CompilationBundle) String() string

type CompilationUnit

type CompilationUnit struct {
	VName            *storage_go_proto.VName      `protobuf:"bytes,1,opt,name=v_name,json=vName,proto3" json:"v_name,omitempty"`
	RequiredInput    []*CompilationUnit_FileInput `protobuf:"bytes,3,rep,name=required_input,json=requiredInput,proto3" json:"required_input,omitempty"`
	HasCompileErrors bool                         `protobuf:"varint,4,opt,name=has_compile_errors,json=hasCompileErrors,proto3" json:"has_compile_errors,omitempty"`
	Argument         []string                     `protobuf:"bytes,5,rep,name=argument,proto3" json:"argument,omitempty"`
	SourceFile       []string                     `protobuf:"bytes,6,rep,name=source_file,json=sourceFile,proto3" json:"source_file,omitempty"`
	OutputKey        string                       `protobuf:"bytes,7,opt,name=output_key,json=outputKey,proto3" json:"output_key,omitempty"`
	WorkingDirectory string                       `protobuf:"bytes,8,opt,name=working_directory,json=workingDirectory,proto3" json:"working_directory,omitempty"`
	EntryContext     string                       `protobuf:"bytes,9,opt,name=entry_context,json=entryContext,proto3" json:"entry_context,omitempty"`
	Environment      []*CompilationUnit_Env       `protobuf:"bytes,10,rep,name=environment,proto3" json:"environment,omitempty"`
	Details          []*anypb.Any                 `protobuf:"bytes,11,rep,name=details,proto3" json:"details,omitempty"`
	// contains filtered or unexported fields
}

func (*CompilationUnit) Descriptor deprecated

func (*CompilationUnit) Descriptor() ([]byte, []int)

Deprecated: Use CompilationUnit.ProtoReflect.Descriptor instead.

func (*CompilationUnit) GetArgument

func (x *CompilationUnit) GetArgument() []string

func (*CompilationUnit) GetDetails

func (x *CompilationUnit) GetDetails() []*anypb.Any

func (*CompilationUnit) GetEntryContext

func (x *CompilationUnit) GetEntryContext() string

func (*CompilationUnit) GetEnvironment

func (x *CompilationUnit) GetEnvironment() []*CompilationUnit_Env

func (*CompilationUnit) GetHasCompileErrors

func (x *CompilationUnit) GetHasCompileErrors() bool

func (*CompilationUnit) GetOutputKey

func (x *CompilationUnit) GetOutputKey() string

func (*CompilationUnit) GetRequiredInput

func (x *CompilationUnit) GetRequiredInput() []*CompilationUnit_FileInput

func (*CompilationUnit) GetSourceFile

func (x *CompilationUnit) GetSourceFile() []string

func (*CompilationUnit) GetVName

func (x *CompilationUnit) GetVName() *storage_go_proto.VName

func (*CompilationUnit) GetWorkingDirectory

func (x *CompilationUnit) GetWorkingDirectory() string

func (*CompilationUnit) ProtoMessage

func (*CompilationUnit) ProtoMessage()

func (*CompilationUnit) ProtoReflect added in v0.0.49

func (x *CompilationUnit) ProtoReflect() protoreflect.Message

func (*CompilationUnit) Reset

func (x *CompilationUnit) Reset()

func (*CompilationUnit) String

func (x *CompilationUnit) String() string

type CompilationUnit_Env

type CompilationUnit_Env struct {
	Name  string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Value string `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*CompilationUnit_Env) Descriptor deprecated

func (*CompilationUnit_Env) Descriptor() ([]byte, []int)

Deprecated: Use CompilationUnit_Env.ProtoReflect.Descriptor instead.

func (*CompilationUnit_Env) GetName

func (x *CompilationUnit_Env) GetName() string

func (*CompilationUnit_Env) GetValue

func (x *CompilationUnit_Env) GetValue() string

func (*CompilationUnit_Env) ProtoMessage

func (*CompilationUnit_Env) ProtoMessage()

func (*CompilationUnit_Env) ProtoReflect added in v0.0.49

func (x *CompilationUnit_Env) ProtoReflect() protoreflect.Message

func (*CompilationUnit_Env) Reset

func (x *CompilationUnit_Env) Reset()

func (*CompilationUnit_Env) String

func (x *CompilationUnit_Env) String() string

type CompilationUnit_FileInput

type CompilationUnit_FileInput struct {
	VName   *storage_go_proto.VName `protobuf:"bytes,1,opt,name=v_name,json=vName,proto3" json:"v_name,omitempty"`
	Info    *FileInfo               `protobuf:"bytes,2,opt,name=info,proto3" json:"info,omitempty"`
	Details []*anypb.Any            `protobuf:"bytes,4,rep,name=details,proto3" json:"details,omitempty"`
	// contains filtered or unexported fields
}

func (*CompilationUnit_FileInput) Descriptor deprecated

func (*CompilationUnit_FileInput) Descriptor() ([]byte, []int)

Deprecated: Use CompilationUnit_FileInput.ProtoReflect.Descriptor instead.

func (*CompilationUnit_FileInput) GetDetails

func (x *CompilationUnit_FileInput) GetDetails() []*anypb.Any

func (*CompilationUnit_FileInput) GetInfo

func (x *CompilationUnit_FileInput) GetInfo() *FileInfo

func (*CompilationUnit_FileInput) GetVName

func (*CompilationUnit_FileInput) ProtoMessage

func (*CompilationUnit_FileInput) ProtoMessage()

func (*CompilationUnit_FileInput) ProtoReflect added in v0.0.49

func (*CompilationUnit_FileInput) Reset

func (x *CompilationUnit_FileInput) Reset()

func (*CompilationUnit_FileInput) String

func (x *CompilationUnit_FileInput) String() string

type FileData

type FileData struct {
	Content []byte    `protobuf:"bytes,1,opt,name=content,proto3" json:"content,omitempty"`
	Info    *FileInfo `protobuf:"bytes,2,opt,name=info,proto3" json:"info,omitempty"`
	Missing bool      `protobuf:"varint,3,opt,name=missing,proto3" json:"missing,omitempty"`
	// contains filtered or unexported fields
}

func (*FileData) Descriptor deprecated

func (*FileData) Descriptor() ([]byte, []int)

Deprecated: Use FileData.ProtoReflect.Descriptor instead.

func (*FileData) GetContent

func (x *FileData) GetContent() []byte

func (*FileData) GetInfo

func (x *FileData) GetInfo() *FileInfo

func (*FileData) GetMissing

func (x *FileData) GetMissing() bool

func (*FileData) ProtoMessage

func (*FileData) ProtoMessage()

func (*FileData) ProtoReflect added in v0.0.49

func (x *FileData) ProtoReflect() protoreflect.Message

func (*FileData) Reset

func (x *FileData) Reset()

func (*FileData) String

func (x *FileData) String() string

type FileInfo

type FileInfo struct {
	Path   string `protobuf:"bytes,1,opt,name=path,proto3" json:"path,omitempty"`
	Digest string `protobuf:"bytes,2,opt,name=digest,proto3" json:"digest,omitempty"`
	// contains filtered or unexported fields
}

func (*FileInfo) Descriptor deprecated

func (*FileInfo) Descriptor() ([]byte, []int)

Deprecated: Use FileInfo.ProtoReflect.Descriptor instead.

func (*FileInfo) GetDigest

func (x *FileInfo) GetDigest() string

func (*FileInfo) GetPath

func (x *FileInfo) GetPath() string

func (*FileInfo) ProtoMessage

func (*FileInfo) ProtoMessage()

func (*FileInfo) ProtoReflect added in v0.0.49

func (x *FileInfo) ProtoReflect() protoreflect.Message

func (*FileInfo) Reset

func (x *FileInfo) Reset()

func (*FileInfo) String

func (x *FileInfo) String() string

type FilesRequest

type FilesRequest struct {
	Files []*FileInfo `protobuf:"bytes,1,rep,name=files,proto3" json:"files,omitempty"`
	// contains filtered or unexported fields
}

func (*FilesRequest) Descriptor deprecated

func (*FilesRequest) Descriptor() ([]byte, []int)

Deprecated: Use FilesRequest.ProtoReflect.Descriptor instead.

func (*FilesRequest) GetFiles

func (x *FilesRequest) GetFiles() []*FileInfo

func (*FilesRequest) ProtoMessage

func (*FilesRequest) ProtoMessage()

func (*FilesRequest) ProtoReflect added in v0.0.49

func (x *FilesRequest) ProtoReflect() protoreflect.Message

func (*FilesRequest) Reset

func (x *FilesRequest) Reset()

func (*FilesRequest) String

func (x *FilesRequest) String() string

type IndexedCompilation

type IndexedCompilation struct {
	Unit  *CompilationUnit          `protobuf:"bytes,1,opt,name=unit,proto3" json:"unit,omitempty"`
	Index *IndexedCompilation_Index `protobuf:"bytes,2,opt,name=index,proto3" json:"index,omitempty"`
	// contains filtered or unexported fields
}

func (*IndexedCompilation) Descriptor deprecated

func (*IndexedCompilation) Descriptor() ([]byte, []int)

Deprecated: Use IndexedCompilation.ProtoReflect.Descriptor instead.

func (*IndexedCompilation) GetIndex

func (*IndexedCompilation) GetUnit

func (x *IndexedCompilation) GetUnit() *CompilationUnit

func (*IndexedCompilation) ProtoMessage

func (*IndexedCompilation) ProtoMessage()

func (*IndexedCompilation) ProtoReflect added in v0.0.49

func (x *IndexedCompilation) ProtoReflect() protoreflect.Message

func (*IndexedCompilation) Reset

func (x *IndexedCompilation) Reset()

func (*IndexedCompilation) String

func (x *IndexedCompilation) String() string

type IndexedCompilation_Index

type IndexedCompilation_Index struct {
	Revisions []string `protobuf:"bytes,1,rep,name=revisions,proto3" json:"revisions,omitempty"`
	// contains filtered or unexported fields
}

func (*IndexedCompilation_Index) Descriptor deprecated

func (*IndexedCompilation_Index) Descriptor() ([]byte, []int)

Deprecated: Use IndexedCompilation_Index.ProtoReflect.Descriptor instead.

func (*IndexedCompilation_Index) GetRevisions

func (x *IndexedCompilation_Index) GetRevisions() []string

func (*IndexedCompilation_Index) ProtoMessage

func (*IndexedCompilation_Index) ProtoMessage()

func (*IndexedCompilation_Index) ProtoReflect added in v0.0.49

func (x *IndexedCompilation_Index) ProtoReflect() protoreflect.Message

func (*IndexedCompilation_Index) Reset

func (x *IndexedCompilation_Index) Reset()

func (*IndexedCompilation_Index) String

func (x *IndexedCompilation_Index) String() string

type KzipInfo added in v0.0.31

type KzipInfo struct {
	Corpora            map[string]*KzipInfo_CorpusInfo `` /* 155-byte string literal not displayed */
	Size               int64                           `protobuf:"varint,4,opt,name=size,proto3" json:"size,omitempty"`
	AbsolutePaths      []string                        `protobuf:"bytes,6,rep,name=absolute_paths,json=absolutePaths,proto3" json:"absolute_paths,omitempty"`
	CriticalKzipErrors []string                        `protobuf:"bytes,5,rep,name=critical_kzip_errors,json=criticalKzipErrors,proto3" json:"critical_kzip_errors,omitempty"`
	// contains filtered or unexported fields
}

func (*KzipInfo) Descriptor deprecated added in v0.0.31

func (*KzipInfo) Descriptor() ([]byte, []int)

Deprecated: Use KzipInfo.ProtoReflect.Descriptor instead.

func (*KzipInfo) GetAbsolutePaths added in v0.0.53

func (x *KzipInfo) GetAbsolutePaths() []string

func (*KzipInfo) GetCorpora added in v0.0.31

func (x *KzipInfo) GetCorpora() map[string]*KzipInfo_CorpusInfo

func (*KzipInfo) GetCriticalKzipErrors added in v0.0.32

func (x *KzipInfo) GetCriticalKzipErrors() []string

func (*KzipInfo) GetSize added in v0.0.32

func (x *KzipInfo) GetSize() int64

func (*KzipInfo) ProtoMessage added in v0.0.31

func (*KzipInfo) ProtoMessage()

func (*KzipInfo) ProtoReflect added in v0.0.49

func (x *KzipInfo) ProtoReflect() protoreflect.Message

func (*KzipInfo) Reset added in v0.0.31

func (x *KzipInfo) Reset()

func (*KzipInfo) String added in v0.0.31

func (x *KzipInfo) String() string

type KzipInfo_CorpusInfo added in v0.0.31

type KzipInfo_CorpusInfo struct {
	LanguageRequiredInputs map[string]*KzipInfo_CorpusInfo_Inputs `` /* 217-byte string literal not displayed */
	LanguageSources        map[string]*KzipInfo_CorpusInfo_Inputs `` /* 194-byte string literal not displayed */
	LanguageCuInfo         map[string]*KzipInfo_CorpusInfo_CUInfo `` /* 193-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*KzipInfo_CorpusInfo) Descriptor deprecated added in v0.0.31

func (*KzipInfo_CorpusInfo) Descriptor() ([]byte, []int)

Deprecated: Use KzipInfo_CorpusInfo.ProtoReflect.Descriptor instead.

func (*KzipInfo_CorpusInfo) GetLanguageCuInfo added in v0.0.62

func (x *KzipInfo_CorpusInfo) GetLanguageCuInfo() map[string]*KzipInfo_CorpusInfo_CUInfo

func (*KzipInfo_CorpusInfo) GetLanguageRequiredInputs added in v0.0.32

func (x *KzipInfo_CorpusInfo) GetLanguageRequiredInputs() map[string]*KzipInfo_CorpusInfo_Inputs

func (*KzipInfo_CorpusInfo) GetLanguageSources added in v0.0.32

func (x *KzipInfo_CorpusInfo) GetLanguageSources() map[string]*KzipInfo_CorpusInfo_Inputs

func (*KzipInfo_CorpusInfo) ProtoMessage added in v0.0.31

func (*KzipInfo_CorpusInfo) ProtoMessage()

func (*KzipInfo_CorpusInfo) ProtoReflect added in v0.0.49

func (x *KzipInfo_CorpusInfo) ProtoReflect() protoreflect.Message

func (*KzipInfo_CorpusInfo) Reset added in v0.0.31

func (x *KzipInfo_CorpusInfo) Reset()

func (*KzipInfo_CorpusInfo) String added in v0.0.31

func (x *KzipInfo_CorpusInfo) String() string

type KzipInfo_CorpusInfo_CUInfo added in v0.0.62

type KzipInfo_CorpusInfo_CUInfo struct {
	Count            int32           `protobuf:"varint,1,opt,name=count,proto3" json:"count,omitempty"`
	JavaVersionCount map[int32]int32 `` /* 201-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*KzipInfo_CorpusInfo_CUInfo) Descriptor deprecated added in v0.0.62

func (*KzipInfo_CorpusInfo_CUInfo) Descriptor() ([]byte, []int)

Deprecated: Use KzipInfo_CorpusInfo_CUInfo.ProtoReflect.Descriptor instead.

func (*KzipInfo_CorpusInfo_CUInfo) GetCount added in v0.0.62

func (x *KzipInfo_CorpusInfo_CUInfo) GetCount() int32

func (*KzipInfo_CorpusInfo_CUInfo) GetJavaVersionCount added in v0.0.62

func (x *KzipInfo_CorpusInfo_CUInfo) GetJavaVersionCount() map[int32]int32

func (*KzipInfo_CorpusInfo_CUInfo) ProtoMessage added in v0.0.62

func (*KzipInfo_CorpusInfo_CUInfo) ProtoMessage()

func (*KzipInfo_CorpusInfo_CUInfo) ProtoReflect added in v0.0.62

func (*KzipInfo_CorpusInfo_CUInfo) Reset added in v0.0.62

func (x *KzipInfo_CorpusInfo_CUInfo) Reset()

func (*KzipInfo_CorpusInfo_CUInfo) String added in v0.0.62

func (x *KzipInfo_CorpusInfo_CUInfo) String() string

type KzipInfo_CorpusInfo_Inputs added in v0.0.62

type KzipInfo_CorpusInfo_Inputs struct {
	Count int32 `protobuf:"varint,1,opt,name=count,proto3" json:"count,omitempty"`
	// contains filtered or unexported fields
}

func (*KzipInfo_CorpusInfo_Inputs) Descriptor deprecated added in v0.0.62

func (*KzipInfo_CorpusInfo_Inputs) Descriptor() ([]byte, []int)

Deprecated: Use KzipInfo_CorpusInfo_Inputs.ProtoReflect.Descriptor instead.

func (*KzipInfo_CorpusInfo_Inputs) GetCount added in v0.0.62

func (x *KzipInfo_CorpusInfo_Inputs) GetCount() int32

func (*KzipInfo_CorpusInfo_Inputs) ProtoMessage added in v0.0.62

func (*KzipInfo_CorpusInfo_Inputs) ProtoMessage()

func (*KzipInfo_CorpusInfo_Inputs) ProtoReflect added in v0.0.62

func (*KzipInfo_CorpusInfo_Inputs) Reset added in v0.0.62

func (x *KzipInfo_CorpusInfo_Inputs) Reset()

func (*KzipInfo_CorpusInfo_Inputs) String added in v0.0.62

func (x *KzipInfo_CorpusInfo_Inputs) String() string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL