spawn

package
v1.202547.2 Latest Latest
Warning

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

Go to latest
Published: Nov 21, 2025 License: Apache-2.0 Imports: 7 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var File_bazel_spawn_spawn_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type Digest

type Digest struct {
	Hash             string `protobuf:"bytes,1,opt,name=hash,proto3" json:"hash,omitempty"`
	SizeBytes        int64  `protobuf:"varint,2,opt,name=size_bytes,json=sizeBytes,proto3" json:"size_bytes,omitempty"`
	HashFunctionName string `protobuf:"bytes,3,opt,name=hash_function_name,json=hashFunctionName,proto3" json:"hash_function_name,omitempty"`
	// contains filtered or unexported fields
}

func (*Digest) Descriptor deprecated

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

Deprecated: Use Digest.ProtoReflect.Descriptor instead.

func (*Digest) GetHash

func (x *Digest) GetHash() string

func (*Digest) GetHashFunctionName

func (x *Digest) GetHashFunctionName() string

func (*Digest) GetSizeBytes

func (x *Digest) GetSizeBytes() int64

func (*Digest) ProtoMessage

func (*Digest) ProtoMessage()

func (*Digest) ProtoReflect

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

func (*Digest) Reset

func (x *Digest) Reset()

func (*Digest) String

func (x *Digest) String() string

type EnvironmentVariable

type EnvironmentVariable 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 (*EnvironmentVariable) Descriptor deprecated

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

Deprecated: Use EnvironmentVariable.ProtoReflect.Descriptor instead.

func (*EnvironmentVariable) GetName

func (x *EnvironmentVariable) GetName() string

func (*EnvironmentVariable) GetValue

func (x *EnvironmentVariable) GetValue() string

func (*EnvironmentVariable) ProtoMessage

func (*EnvironmentVariable) ProtoMessage()

func (*EnvironmentVariable) ProtoReflect

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

func (*EnvironmentVariable) Reset

func (x *EnvironmentVariable) Reset()

func (*EnvironmentVariable) String

func (x *EnvironmentVariable) String() string

type ExecLogEntry

type ExecLogEntry struct {
	Id uint32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	// Types that are valid to be assigned to Type:
	//
	//	*ExecLogEntry_Invocation_
	//	*ExecLogEntry_File_
	//	*ExecLogEntry_Directory_
	//	*ExecLogEntry_UnresolvedSymlink_
	//	*ExecLogEntry_InputSet_
	//	*ExecLogEntry_Spawn_
	//	*ExecLogEntry_SymlinkAction_
	//	*ExecLogEntry_SymlinkEntrySet_
	//	*ExecLogEntry_RunfilesTree_
	Type isExecLogEntry_Type `protobuf_oneof:"type"`
	// contains filtered or unexported fields
}

func (*ExecLogEntry) Descriptor deprecated

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

Deprecated: Use ExecLogEntry.ProtoReflect.Descriptor instead.

func (*ExecLogEntry) GetDirectory

func (x *ExecLogEntry) GetDirectory() *ExecLogEntry_Directory

func (*ExecLogEntry) GetFile

func (x *ExecLogEntry) GetFile() *ExecLogEntry_File

func (*ExecLogEntry) GetId

func (x *ExecLogEntry) GetId() uint32

func (*ExecLogEntry) GetInputSet

func (x *ExecLogEntry) GetInputSet() *ExecLogEntry_InputSet

func (*ExecLogEntry) GetInvocation

func (x *ExecLogEntry) GetInvocation() *ExecLogEntry_Invocation

func (*ExecLogEntry) GetRunfilesTree

func (x *ExecLogEntry) GetRunfilesTree() *ExecLogEntry_RunfilesTree

func (*ExecLogEntry) GetSpawn

func (x *ExecLogEntry) GetSpawn() *ExecLogEntry_Spawn

func (*ExecLogEntry) GetSymlinkAction

func (x *ExecLogEntry) GetSymlinkAction() *ExecLogEntry_SymlinkAction

func (*ExecLogEntry) GetSymlinkEntrySet

func (x *ExecLogEntry) GetSymlinkEntrySet() *ExecLogEntry_SymlinkEntrySet

func (*ExecLogEntry) GetType

func (x *ExecLogEntry) GetType() isExecLogEntry_Type
func (x *ExecLogEntry) GetUnresolvedSymlink() *ExecLogEntry_UnresolvedSymlink

func (*ExecLogEntry) ProtoMessage

func (*ExecLogEntry) ProtoMessage()

func (*ExecLogEntry) ProtoReflect

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

func (*ExecLogEntry) Reset

func (x *ExecLogEntry) Reset()

func (*ExecLogEntry) String

func (x *ExecLogEntry) String() string

type ExecLogEntry_Directory

type ExecLogEntry_Directory struct {
	Path  string               `protobuf:"bytes,1,opt,name=path,proto3" json:"path,omitempty"`
	Files []*ExecLogEntry_File `protobuf:"bytes,2,rep,name=files,proto3" json:"files,omitempty"`
	// contains filtered or unexported fields
}

func (*ExecLogEntry_Directory) Descriptor deprecated

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

Deprecated: Use ExecLogEntry_Directory.ProtoReflect.Descriptor instead.

func (*ExecLogEntry_Directory) GetFiles

func (x *ExecLogEntry_Directory) GetFiles() []*ExecLogEntry_File

func (*ExecLogEntry_Directory) GetPath

func (x *ExecLogEntry_Directory) GetPath() string

func (*ExecLogEntry_Directory) ProtoMessage

func (*ExecLogEntry_Directory) ProtoMessage()

func (*ExecLogEntry_Directory) ProtoReflect

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

func (*ExecLogEntry_Directory) Reset

func (x *ExecLogEntry_Directory) Reset()

func (*ExecLogEntry_Directory) String

func (x *ExecLogEntry_Directory) String() string

type ExecLogEntry_Directory_

type ExecLogEntry_Directory_ struct {
	Directory *ExecLogEntry_Directory `protobuf:"bytes,4,opt,name=directory,proto3,oneof"`
}

type ExecLogEntry_File

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

func (*ExecLogEntry_File) Descriptor deprecated

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

Deprecated: Use ExecLogEntry_File.ProtoReflect.Descriptor instead.

func (*ExecLogEntry_File) GetDigest

func (x *ExecLogEntry_File) GetDigest() *Digest

func (*ExecLogEntry_File) GetPath

func (x *ExecLogEntry_File) GetPath() string

func (*ExecLogEntry_File) ProtoMessage

func (*ExecLogEntry_File) ProtoMessage()

func (*ExecLogEntry_File) ProtoReflect

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

func (*ExecLogEntry_File) Reset

func (x *ExecLogEntry_File) Reset()

func (*ExecLogEntry_File) String

func (x *ExecLogEntry_File) String() string

type ExecLogEntry_File_

type ExecLogEntry_File_ struct {
	File *ExecLogEntry_File `protobuf:"bytes,3,opt,name=file,proto3,oneof"`
}

type ExecLogEntry_InputSet

type ExecLogEntry_InputSet struct {
	InputIds         []uint32 `protobuf:"varint,5,rep,packed,name=input_ids,json=inputIds,proto3" json:"input_ids,omitempty"`
	TransitiveSetIds []uint32 `protobuf:"varint,4,rep,packed,name=transitive_set_ids,json=transitiveSetIds,proto3" json:"transitive_set_ids,omitempty"`
	// contains filtered or unexported fields
}

func (*ExecLogEntry_InputSet) Descriptor deprecated

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

Deprecated: Use ExecLogEntry_InputSet.ProtoReflect.Descriptor instead.

func (*ExecLogEntry_InputSet) GetInputIds

func (x *ExecLogEntry_InputSet) GetInputIds() []uint32

func (*ExecLogEntry_InputSet) GetTransitiveSetIds

func (x *ExecLogEntry_InputSet) GetTransitiveSetIds() []uint32

func (*ExecLogEntry_InputSet) ProtoMessage

func (*ExecLogEntry_InputSet) ProtoMessage()

func (*ExecLogEntry_InputSet) ProtoReflect

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

func (*ExecLogEntry_InputSet) Reset

func (x *ExecLogEntry_InputSet) Reset()

func (*ExecLogEntry_InputSet) String

func (x *ExecLogEntry_InputSet) String() string

type ExecLogEntry_InputSet_

type ExecLogEntry_InputSet_ struct {
	InputSet *ExecLogEntry_InputSet `protobuf:"bytes,6,opt,name=input_set,json=inputSet,proto3,oneof"`
}

type ExecLogEntry_Invocation

type ExecLogEntry_Invocation struct {
	HashFunctionName           string `protobuf:"bytes,1,opt,name=hash_function_name,json=hashFunctionName,proto3" json:"hash_function_name,omitempty"`
	WorkspaceRunfilesDirectory string `` /* 141-byte string literal not displayed */
	SiblingRepositoryLayout    bool   `` /* 133-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*ExecLogEntry_Invocation) Descriptor deprecated

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

Deprecated: Use ExecLogEntry_Invocation.ProtoReflect.Descriptor instead.

func (*ExecLogEntry_Invocation) GetHashFunctionName

func (x *ExecLogEntry_Invocation) GetHashFunctionName() string

func (*ExecLogEntry_Invocation) GetSiblingRepositoryLayout

func (x *ExecLogEntry_Invocation) GetSiblingRepositoryLayout() bool

func (*ExecLogEntry_Invocation) GetWorkspaceRunfilesDirectory

func (x *ExecLogEntry_Invocation) GetWorkspaceRunfilesDirectory() string

func (*ExecLogEntry_Invocation) ProtoMessage

func (*ExecLogEntry_Invocation) ProtoMessage()

func (*ExecLogEntry_Invocation) ProtoReflect

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

func (*ExecLogEntry_Invocation) Reset

func (x *ExecLogEntry_Invocation) Reset()

func (*ExecLogEntry_Invocation) String

func (x *ExecLogEntry_Invocation) String() string

type ExecLogEntry_Invocation_

type ExecLogEntry_Invocation_ struct {
	Invocation *ExecLogEntry_Invocation `protobuf:"bytes,2,opt,name=invocation,proto3,oneof"`
}

type ExecLogEntry_Output

type ExecLogEntry_Output struct {

	// Types that are valid to be assigned to Type:
	//
	//	*ExecLogEntry_Output_OutputId
	//	*ExecLogEntry_Output_InvalidOutputPath
	Type isExecLogEntry_Output_Type `protobuf_oneof:"type"`
	// contains filtered or unexported fields
}

func (*ExecLogEntry_Output) Descriptor deprecated

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

Deprecated: Use ExecLogEntry_Output.ProtoReflect.Descriptor instead.

func (*ExecLogEntry_Output) GetInvalidOutputPath

func (x *ExecLogEntry_Output) GetInvalidOutputPath() string

func (*ExecLogEntry_Output) GetOutputId

func (x *ExecLogEntry_Output) GetOutputId() uint32

func (*ExecLogEntry_Output) GetType

func (x *ExecLogEntry_Output) GetType() isExecLogEntry_Output_Type

func (*ExecLogEntry_Output) ProtoMessage

func (*ExecLogEntry_Output) ProtoMessage()

func (*ExecLogEntry_Output) ProtoReflect

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

func (*ExecLogEntry_Output) Reset

func (x *ExecLogEntry_Output) Reset()

func (*ExecLogEntry_Output) String

func (x *ExecLogEntry_Output) String() string

type ExecLogEntry_Output_InvalidOutputPath

type ExecLogEntry_Output_InvalidOutputPath struct {
	InvalidOutputPath string `protobuf:"bytes,4,opt,name=invalid_output_path,json=invalidOutputPath,proto3,oneof"`
}

type ExecLogEntry_Output_OutputId

type ExecLogEntry_Output_OutputId struct {
	OutputId uint32 `protobuf:"varint,5,opt,name=output_id,json=outputId,proto3,oneof"`
}

type ExecLogEntry_RunfilesTree

type ExecLogEntry_RunfilesTree struct {
	Path                   string             `protobuf:"bytes,1,opt,name=path,proto3" json:"path,omitempty"`
	InputSetId             uint32             `protobuf:"varint,2,opt,name=input_set_id,json=inputSetId,proto3" json:"input_set_id,omitempty"`
	SymlinksId             uint32             `protobuf:"varint,3,opt,name=symlinks_id,json=symlinksId,proto3" json:"symlinks_id,omitempty"`
	RootSymlinksId         uint32             `protobuf:"varint,4,opt,name=root_symlinks_id,json=rootSymlinksId,proto3" json:"root_symlinks_id,omitempty"`
	EmptyFiles             []string           `protobuf:"bytes,5,rep,name=empty_files,json=emptyFiles,proto3" json:"empty_files,omitempty"`
	RepoMappingManifest    *ExecLogEntry_File `protobuf:"bytes,6,opt,name=repo_mapping_manifest,json=repoMappingManifest,proto3" json:"repo_mapping_manifest,omitempty"`
	LegacyExternalRunfiles bool               `` /* 130-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*ExecLogEntry_RunfilesTree) Descriptor deprecated

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

Deprecated: Use ExecLogEntry_RunfilesTree.ProtoReflect.Descriptor instead.

func (*ExecLogEntry_RunfilesTree) GetEmptyFiles

func (x *ExecLogEntry_RunfilesTree) GetEmptyFiles() []string

func (*ExecLogEntry_RunfilesTree) GetInputSetId

func (x *ExecLogEntry_RunfilesTree) GetInputSetId() uint32

func (*ExecLogEntry_RunfilesTree) GetLegacyExternalRunfiles

func (x *ExecLogEntry_RunfilesTree) GetLegacyExternalRunfiles() bool

func (*ExecLogEntry_RunfilesTree) GetPath

func (x *ExecLogEntry_RunfilesTree) GetPath() string

func (*ExecLogEntry_RunfilesTree) GetRepoMappingManifest

func (x *ExecLogEntry_RunfilesTree) GetRepoMappingManifest() *ExecLogEntry_File

func (*ExecLogEntry_RunfilesTree) GetRootSymlinksId

func (x *ExecLogEntry_RunfilesTree) GetRootSymlinksId() uint32

func (*ExecLogEntry_RunfilesTree) GetSymlinksId

func (x *ExecLogEntry_RunfilesTree) GetSymlinksId() uint32

func (*ExecLogEntry_RunfilesTree) ProtoMessage

func (*ExecLogEntry_RunfilesTree) ProtoMessage()

func (*ExecLogEntry_RunfilesTree) ProtoReflect

func (*ExecLogEntry_RunfilesTree) Reset

func (x *ExecLogEntry_RunfilesTree) Reset()

func (*ExecLogEntry_RunfilesTree) String

func (x *ExecLogEntry_RunfilesTree) String() string

type ExecLogEntry_RunfilesTree_

type ExecLogEntry_RunfilesTree_ struct {
	RunfilesTree *ExecLogEntry_RunfilesTree `protobuf:"bytes,10,opt,name=runfiles_tree,json=runfilesTree,proto3,oneof"`
}

type ExecLogEntry_Spawn

type ExecLogEntry_Spawn struct {
	Args            []string               `protobuf:"bytes,1,rep,name=args,proto3" json:"args,omitempty"`
	EnvVars         []*EnvironmentVariable `protobuf:"bytes,2,rep,name=env_vars,json=envVars,proto3" json:"env_vars,omitempty"`
	Platform        *Platform              `protobuf:"bytes,3,opt,name=platform,proto3" json:"platform,omitempty"`
	InputSetId      uint32                 `protobuf:"varint,4,opt,name=input_set_id,json=inputSetId,proto3" json:"input_set_id,omitempty"`
	ToolSetId       uint32                 `protobuf:"varint,5,opt,name=tool_set_id,json=toolSetId,proto3" json:"tool_set_id,omitempty"`
	Outputs         []*ExecLogEntry_Output `protobuf:"bytes,6,rep,name=outputs,proto3" json:"outputs,omitempty"`
	TargetLabel     string                 `protobuf:"bytes,7,opt,name=target_label,json=targetLabel,proto3" json:"target_label,omitempty"`
	Mnemonic        string                 `protobuf:"bytes,8,opt,name=mnemonic,proto3" json:"mnemonic,omitempty"`
	ExitCode        int32                  `protobuf:"varint,9,opt,name=exit_code,json=exitCode,proto3" json:"exit_code,omitempty"`
	Status          string                 `protobuf:"bytes,10,opt,name=status,proto3" json:"status,omitempty"`
	Runner          string                 `protobuf:"bytes,11,opt,name=runner,proto3" json:"runner,omitempty"`
	CacheHit        bool                   `protobuf:"varint,12,opt,name=cache_hit,json=cacheHit,proto3" json:"cache_hit,omitempty"`
	Remotable       bool                   `protobuf:"varint,13,opt,name=remotable,proto3" json:"remotable,omitempty"`
	Cacheable       bool                   `protobuf:"varint,14,opt,name=cacheable,proto3" json:"cacheable,omitempty"`
	RemoteCacheable bool                   `protobuf:"varint,15,opt,name=remote_cacheable,json=remoteCacheable,proto3" json:"remote_cacheable,omitempty"`
	Digest          *Digest                `protobuf:"bytes,16,opt,name=digest,proto3" json:"digest,omitempty"`
	TimeoutMillis   int64                  `protobuf:"varint,17,opt,name=timeout_millis,json=timeoutMillis,proto3" json:"timeout_millis,omitempty"`
	Metrics         *SpawnMetrics          `protobuf:"bytes,18,opt,name=metrics,proto3" json:"metrics,omitempty"`
	// contains filtered or unexported fields
}

func (*ExecLogEntry_Spawn) Descriptor deprecated

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

Deprecated: Use ExecLogEntry_Spawn.ProtoReflect.Descriptor instead.

func (*ExecLogEntry_Spawn) GetArgs

func (x *ExecLogEntry_Spawn) GetArgs() []string

func (*ExecLogEntry_Spawn) GetCacheHit

func (x *ExecLogEntry_Spawn) GetCacheHit() bool

func (*ExecLogEntry_Spawn) GetCacheable

func (x *ExecLogEntry_Spawn) GetCacheable() bool

func (*ExecLogEntry_Spawn) GetDigest

func (x *ExecLogEntry_Spawn) GetDigest() *Digest

func (*ExecLogEntry_Spawn) GetEnvVars

func (x *ExecLogEntry_Spawn) GetEnvVars() []*EnvironmentVariable

func (*ExecLogEntry_Spawn) GetExitCode

func (x *ExecLogEntry_Spawn) GetExitCode() int32

func (*ExecLogEntry_Spawn) GetInputSetId

func (x *ExecLogEntry_Spawn) GetInputSetId() uint32

func (*ExecLogEntry_Spawn) GetMetrics

func (x *ExecLogEntry_Spawn) GetMetrics() *SpawnMetrics

func (*ExecLogEntry_Spawn) GetMnemonic

func (x *ExecLogEntry_Spawn) GetMnemonic() string

func (*ExecLogEntry_Spawn) GetOutputs

func (x *ExecLogEntry_Spawn) GetOutputs() []*ExecLogEntry_Output

func (*ExecLogEntry_Spawn) GetPlatform

func (x *ExecLogEntry_Spawn) GetPlatform() *Platform

func (*ExecLogEntry_Spawn) GetRemotable

func (x *ExecLogEntry_Spawn) GetRemotable() bool

func (*ExecLogEntry_Spawn) GetRemoteCacheable

func (x *ExecLogEntry_Spawn) GetRemoteCacheable() bool

func (*ExecLogEntry_Spawn) GetRunner

func (x *ExecLogEntry_Spawn) GetRunner() string

func (*ExecLogEntry_Spawn) GetStatus

func (x *ExecLogEntry_Spawn) GetStatus() string

func (*ExecLogEntry_Spawn) GetTargetLabel

func (x *ExecLogEntry_Spawn) GetTargetLabel() string

func (*ExecLogEntry_Spawn) GetTimeoutMillis

func (x *ExecLogEntry_Spawn) GetTimeoutMillis() int64

func (*ExecLogEntry_Spawn) GetToolSetId

func (x *ExecLogEntry_Spawn) GetToolSetId() uint32

func (*ExecLogEntry_Spawn) ProtoMessage

func (*ExecLogEntry_Spawn) ProtoMessage()

func (*ExecLogEntry_Spawn) ProtoReflect

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

func (*ExecLogEntry_Spawn) Reset

func (x *ExecLogEntry_Spawn) Reset()

func (*ExecLogEntry_Spawn) String

func (x *ExecLogEntry_Spawn) String() string

type ExecLogEntry_Spawn_

type ExecLogEntry_Spawn_ struct {
	Spawn *ExecLogEntry_Spawn `protobuf:"bytes,7,opt,name=spawn,proto3,oneof"`
}

type ExecLogEntry_SymlinkAction

type ExecLogEntry_SymlinkAction struct {
	InputPath   string `protobuf:"bytes,1,opt,name=input_path,json=inputPath,proto3" json:"input_path,omitempty"`
	OutputPath  string `protobuf:"bytes,2,opt,name=output_path,json=outputPath,proto3" json:"output_path,omitempty"`
	TargetLabel string `protobuf:"bytes,3,opt,name=target_label,json=targetLabel,proto3" json:"target_label,omitempty"`
	Mnemonic    string `protobuf:"bytes,4,opt,name=mnemonic,proto3" json:"mnemonic,omitempty"`
	// contains filtered or unexported fields
}

func (*ExecLogEntry_SymlinkAction) Descriptor deprecated

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

Deprecated: Use ExecLogEntry_SymlinkAction.ProtoReflect.Descriptor instead.

func (*ExecLogEntry_SymlinkAction) GetInputPath

func (x *ExecLogEntry_SymlinkAction) GetInputPath() string

func (*ExecLogEntry_SymlinkAction) GetMnemonic

func (x *ExecLogEntry_SymlinkAction) GetMnemonic() string

func (*ExecLogEntry_SymlinkAction) GetOutputPath

func (x *ExecLogEntry_SymlinkAction) GetOutputPath() string

func (*ExecLogEntry_SymlinkAction) GetTargetLabel

func (x *ExecLogEntry_SymlinkAction) GetTargetLabel() string

func (*ExecLogEntry_SymlinkAction) ProtoMessage

func (*ExecLogEntry_SymlinkAction) ProtoMessage()

func (*ExecLogEntry_SymlinkAction) ProtoReflect

func (*ExecLogEntry_SymlinkAction) Reset

func (x *ExecLogEntry_SymlinkAction) Reset()

func (*ExecLogEntry_SymlinkAction) String

func (x *ExecLogEntry_SymlinkAction) String() string

type ExecLogEntry_SymlinkAction_

type ExecLogEntry_SymlinkAction_ struct {
	SymlinkAction *ExecLogEntry_SymlinkAction `protobuf:"bytes,8,opt,name=symlink_action,json=symlinkAction,proto3,oneof"`
}

type ExecLogEntry_SymlinkEntrySet

type ExecLogEntry_SymlinkEntrySet struct {
	DirectEntries    map[string]uint32 `` /* 175-byte string literal not displayed */
	TransitiveSetIds []uint32          `protobuf:"varint,2,rep,packed,name=transitive_set_ids,json=transitiveSetIds,proto3" json:"transitive_set_ids,omitempty"`
	// contains filtered or unexported fields
}

func (*ExecLogEntry_SymlinkEntrySet) Descriptor deprecated

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

Deprecated: Use ExecLogEntry_SymlinkEntrySet.ProtoReflect.Descriptor instead.

func (*ExecLogEntry_SymlinkEntrySet) GetDirectEntries

func (x *ExecLogEntry_SymlinkEntrySet) GetDirectEntries() map[string]uint32

func (*ExecLogEntry_SymlinkEntrySet) GetTransitiveSetIds

func (x *ExecLogEntry_SymlinkEntrySet) GetTransitiveSetIds() []uint32

func (*ExecLogEntry_SymlinkEntrySet) ProtoMessage

func (*ExecLogEntry_SymlinkEntrySet) ProtoMessage()

func (*ExecLogEntry_SymlinkEntrySet) ProtoReflect

func (*ExecLogEntry_SymlinkEntrySet) Reset

func (x *ExecLogEntry_SymlinkEntrySet) Reset()

func (*ExecLogEntry_SymlinkEntrySet) String

type ExecLogEntry_SymlinkEntrySet_

type ExecLogEntry_SymlinkEntrySet_ struct {
	SymlinkEntrySet *ExecLogEntry_SymlinkEntrySet `protobuf:"bytes,9,opt,name=symlink_entry_set,json=symlinkEntrySet,proto3,oneof"`
}
type ExecLogEntry_UnresolvedSymlink struct {
	Path       string `protobuf:"bytes,1,opt,name=path,proto3" json:"path,omitempty"`
	TargetPath string `protobuf:"bytes,2,opt,name=target_path,json=targetPath,proto3" json:"target_path,omitempty"`
	// contains filtered or unexported fields
}

func (*ExecLogEntry_UnresolvedSymlink) Descriptor deprecated

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

Deprecated: Use ExecLogEntry_UnresolvedSymlink.ProtoReflect.Descriptor instead.

func (*ExecLogEntry_UnresolvedSymlink) GetPath

func (*ExecLogEntry_UnresolvedSymlink) GetTargetPath

func (x *ExecLogEntry_UnresolvedSymlink) GetTargetPath() string

func (*ExecLogEntry_UnresolvedSymlink) ProtoMessage

func (*ExecLogEntry_UnresolvedSymlink) ProtoMessage()

func (*ExecLogEntry_UnresolvedSymlink) ProtoReflect

func (*ExecLogEntry_UnresolvedSymlink) Reset

func (x *ExecLogEntry_UnresolvedSymlink) Reset()

func (*ExecLogEntry_UnresolvedSymlink) String

type ExecLogEntry_UnresolvedSymlink_ struct {
	UnresolvedSymlink *ExecLogEntry_UnresolvedSymlink `protobuf:"bytes,5,opt,name=unresolved_symlink,json=unresolvedSymlink,proto3,oneof"`
}

type File

type File struct {
	Path              string  `protobuf:"bytes,1,opt,name=path,proto3" json:"path,omitempty"`
	SymlinkTargetPath string  `protobuf:"bytes,4,opt,name=symlink_target_path,json=symlinkTargetPath,proto3" json:"symlink_target_path,omitempty"`
	Digest            *Digest `protobuf:"bytes,2,opt,name=digest,proto3" json:"digest,omitempty"`
	IsTool            bool    `protobuf:"varint,3,opt,name=is_tool,json=isTool,proto3" json:"is_tool,omitempty"`
	// contains filtered or unexported fields
}

func (*File) Descriptor deprecated

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

Deprecated: Use File.ProtoReflect.Descriptor instead.

func (*File) GetDigest

func (x *File) GetDigest() *Digest

func (*File) GetIsTool

func (x *File) GetIsTool() bool

func (*File) GetPath

func (x *File) GetPath() string

func (*File) GetSymlinkTargetPath

func (x *File) GetSymlinkTargetPath() string

func (*File) ProtoMessage

func (*File) ProtoMessage()

func (*File) ProtoReflect

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

func (*File) Reset

func (x *File) Reset()

func (*File) String

func (x *File) String() string

type Platform

type Platform struct {
	Properties []*Platform_Property `protobuf:"bytes,1,rep,name=properties,proto3" json:"properties,omitempty"`
	// contains filtered or unexported fields
}

func (*Platform) Descriptor deprecated

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

Deprecated: Use Platform.ProtoReflect.Descriptor instead.

func (*Platform) GetProperties

func (x *Platform) GetProperties() []*Platform_Property

func (*Platform) ProtoMessage

func (*Platform) ProtoMessage()

func (*Platform) ProtoReflect

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

func (*Platform) Reset

func (x *Platform) Reset()

func (*Platform) String

func (x *Platform) String() string

type Platform_Property

type Platform_Property 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 (*Platform_Property) Descriptor deprecated

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

Deprecated: Use Platform_Property.ProtoReflect.Descriptor instead.

func (*Platform_Property) GetName

func (x *Platform_Property) GetName() string

func (*Platform_Property) GetValue

func (x *Platform_Property) GetValue() string

func (*Platform_Property) ProtoMessage

func (*Platform_Property) ProtoMessage()

func (*Platform_Property) ProtoReflect

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

func (*Platform_Property) Reset

func (x *Platform_Property) Reset()

func (*Platform_Property) String

func (x *Platform_Property) String() string

type SpawnExec

type SpawnExec struct {
	CommandArgs          []string               `protobuf:"bytes,1,rep,name=command_args,json=commandArgs,proto3" json:"command_args,omitempty"`
	EnvironmentVariables []*EnvironmentVariable `protobuf:"bytes,2,rep,name=environment_variables,json=environmentVariables,proto3" json:"environment_variables,omitempty"`
	Platform             *Platform              `protobuf:"bytes,3,opt,name=platform,proto3" json:"platform,omitempty"`
	Inputs               []*File                `protobuf:"bytes,4,rep,name=inputs,proto3" json:"inputs,omitempty"`
	ListedOutputs        []string               `protobuf:"bytes,5,rep,name=listed_outputs,json=listedOutputs,proto3" json:"listed_outputs,omitempty"`
	Remotable            bool                   `protobuf:"varint,6,opt,name=remotable,proto3" json:"remotable,omitempty"`
	Cacheable            bool                   `protobuf:"varint,7,opt,name=cacheable,proto3" json:"cacheable,omitempty"`
	TimeoutMillis        int64                  `protobuf:"varint,8,opt,name=timeout_millis,json=timeoutMillis,proto3" json:"timeout_millis,omitempty"`
	Mnemonic             string                 `protobuf:"bytes,10,opt,name=mnemonic,proto3" json:"mnemonic,omitempty"`
	ActualOutputs        []*File                `protobuf:"bytes,11,rep,name=actual_outputs,json=actualOutputs,proto3" json:"actual_outputs,omitempty"`
	Runner               string                 `protobuf:"bytes,12,opt,name=runner,proto3" json:"runner,omitempty"`
	CacheHit             bool                   `protobuf:"varint,13,opt,name=cache_hit,json=cacheHit,proto3" json:"cache_hit,omitempty"`
	Status               string                 `protobuf:"bytes,14,opt,name=status,proto3" json:"status,omitempty"`
	ExitCode             int32                  `protobuf:"varint,15,opt,name=exit_code,json=exitCode,proto3" json:"exit_code,omitempty"`
	RemoteCacheable      bool                   `protobuf:"varint,16,opt,name=remote_cacheable,json=remoteCacheable,proto3" json:"remote_cacheable,omitempty"`
	TargetLabel          string                 `protobuf:"bytes,18,opt,name=target_label,json=targetLabel,proto3" json:"target_label,omitempty"`
	Digest               *Digest                `protobuf:"bytes,19,opt,name=digest,proto3" json:"digest,omitempty"`
	Metrics              *SpawnMetrics          `protobuf:"bytes,20,opt,name=metrics,proto3" json:"metrics,omitempty"`
	// contains filtered or unexported fields
}

func (*SpawnExec) Descriptor deprecated

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

Deprecated: Use SpawnExec.ProtoReflect.Descriptor instead.

func (*SpawnExec) GetActualOutputs

func (x *SpawnExec) GetActualOutputs() []*File

func (*SpawnExec) GetCacheHit

func (x *SpawnExec) GetCacheHit() bool

func (*SpawnExec) GetCacheable

func (x *SpawnExec) GetCacheable() bool

func (*SpawnExec) GetCommandArgs

func (x *SpawnExec) GetCommandArgs() []string

func (*SpawnExec) GetDigest

func (x *SpawnExec) GetDigest() *Digest

func (*SpawnExec) GetEnvironmentVariables

func (x *SpawnExec) GetEnvironmentVariables() []*EnvironmentVariable

func (*SpawnExec) GetExitCode

func (x *SpawnExec) GetExitCode() int32

func (*SpawnExec) GetInputs

func (x *SpawnExec) GetInputs() []*File

func (*SpawnExec) GetListedOutputs

func (x *SpawnExec) GetListedOutputs() []string

func (*SpawnExec) GetMetrics

func (x *SpawnExec) GetMetrics() *SpawnMetrics

func (*SpawnExec) GetMnemonic

func (x *SpawnExec) GetMnemonic() string

func (*SpawnExec) GetPlatform

func (x *SpawnExec) GetPlatform() *Platform

func (*SpawnExec) GetRemotable

func (x *SpawnExec) GetRemotable() bool

func (*SpawnExec) GetRemoteCacheable

func (x *SpawnExec) GetRemoteCacheable() bool

func (*SpawnExec) GetRunner

func (x *SpawnExec) GetRunner() string

func (*SpawnExec) GetStatus

func (x *SpawnExec) GetStatus() string

func (*SpawnExec) GetTargetLabel

func (x *SpawnExec) GetTargetLabel() string

func (*SpawnExec) GetTimeoutMillis

func (x *SpawnExec) GetTimeoutMillis() int64

func (*SpawnExec) ProtoMessage

func (*SpawnExec) ProtoMessage()

func (*SpawnExec) ProtoReflect

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

func (*SpawnExec) Reset

func (x *SpawnExec) Reset()

func (*SpawnExec) String

func (x *SpawnExec) String() string

type SpawnMetrics

type SpawnMetrics struct {
	TotalTime           *durationpb.Duration   `protobuf:"bytes,1,opt,name=total_time,json=totalTime,proto3" json:"total_time,omitempty"`
	ParseTime           *durationpb.Duration   `protobuf:"bytes,2,opt,name=parse_time,json=parseTime,proto3" json:"parse_time,omitempty"`
	NetworkTime         *durationpb.Duration   `protobuf:"bytes,3,opt,name=network_time,json=networkTime,proto3" json:"network_time,omitempty"`
	FetchTime           *durationpb.Duration   `protobuf:"bytes,4,opt,name=fetch_time,json=fetchTime,proto3" json:"fetch_time,omitempty"`
	QueueTime           *durationpb.Duration   `protobuf:"bytes,5,opt,name=queue_time,json=queueTime,proto3" json:"queue_time,omitempty"`
	SetupTime           *durationpb.Duration   `protobuf:"bytes,6,opt,name=setup_time,json=setupTime,proto3" json:"setup_time,omitempty"`
	UploadTime          *durationpb.Duration   `protobuf:"bytes,7,opt,name=upload_time,json=uploadTime,proto3" json:"upload_time,omitempty"`
	ExecutionWallTime   *durationpb.Duration   `protobuf:"bytes,8,opt,name=execution_wall_time,json=executionWallTime,proto3" json:"execution_wall_time,omitempty"`
	ProcessOutputsTime  *durationpb.Duration   `protobuf:"bytes,9,opt,name=process_outputs_time,json=processOutputsTime,proto3" json:"process_outputs_time,omitempty"`
	RetryTime           *durationpb.Duration   `protobuf:"bytes,10,opt,name=retry_time,json=retryTime,proto3" json:"retry_time,omitempty"`
	InputBytes          int64                  `protobuf:"varint,11,opt,name=input_bytes,json=inputBytes,proto3" json:"input_bytes,omitempty"`
	InputFiles          int64                  `protobuf:"varint,12,opt,name=input_files,json=inputFiles,proto3" json:"input_files,omitempty"`
	MemoryEstimateBytes int64                  `protobuf:"varint,13,opt,name=memory_estimate_bytes,json=memoryEstimateBytes,proto3" json:"memory_estimate_bytes,omitempty"`
	InputBytesLimit     int64                  `protobuf:"varint,14,opt,name=input_bytes_limit,json=inputBytesLimit,proto3" json:"input_bytes_limit,omitempty"`
	InputFilesLimit     int64                  `protobuf:"varint,15,opt,name=input_files_limit,json=inputFilesLimit,proto3" json:"input_files_limit,omitempty"`
	OutputBytesLimit    int64                  `protobuf:"varint,16,opt,name=output_bytes_limit,json=outputBytesLimit,proto3" json:"output_bytes_limit,omitempty"`
	OutputFilesLimit    int64                  `protobuf:"varint,17,opt,name=output_files_limit,json=outputFilesLimit,proto3" json:"output_files_limit,omitempty"`
	MemoryBytesLimit    int64                  `protobuf:"varint,18,opt,name=memory_bytes_limit,json=memoryBytesLimit,proto3" json:"memory_bytes_limit,omitempty"`
	TimeLimit           *durationpb.Duration   `protobuf:"bytes,19,opt,name=time_limit,json=timeLimit,proto3" json:"time_limit,omitempty"`
	StartTime           *timestamppb.Timestamp `protobuf:"bytes,20,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"`
	// contains filtered or unexported fields
}

func (*SpawnMetrics) Descriptor deprecated

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

Deprecated: Use SpawnMetrics.ProtoReflect.Descriptor instead.

func (*SpawnMetrics) GetExecutionWallTime

func (x *SpawnMetrics) GetExecutionWallTime() *durationpb.Duration

func (*SpawnMetrics) GetFetchTime

func (x *SpawnMetrics) GetFetchTime() *durationpb.Duration

func (*SpawnMetrics) GetInputBytes

func (x *SpawnMetrics) GetInputBytes() int64

func (*SpawnMetrics) GetInputBytesLimit

func (x *SpawnMetrics) GetInputBytesLimit() int64

func (*SpawnMetrics) GetInputFiles

func (x *SpawnMetrics) GetInputFiles() int64

func (*SpawnMetrics) GetInputFilesLimit

func (x *SpawnMetrics) GetInputFilesLimit() int64

func (*SpawnMetrics) GetMemoryBytesLimit

func (x *SpawnMetrics) GetMemoryBytesLimit() int64

func (*SpawnMetrics) GetMemoryEstimateBytes

func (x *SpawnMetrics) GetMemoryEstimateBytes() int64

func (*SpawnMetrics) GetNetworkTime

func (x *SpawnMetrics) GetNetworkTime() *durationpb.Duration

func (*SpawnMetrics) GetOutputBytesLimit

func (x *SpawnMetrics) GetOutputBytesLimit() int64

func (*SpawnMetrics) GetOutputFilesLimit

func (x *SpawnMetrics) GetOutputFilesLimit() int64

func (*SpawnMetrics) GetParseTime

func (x *SpawnMetrics) GetParseTime() *durationpb.Duration

func (*SpawnMetrics) GetProcessOutputsTime

func (x *SpawnMetrics) GetProcessOutputsTime() *durationpb.Duration

func (*SpawnMetrics) GetQueueTime

func (x *SpawnMetrics) GetQueueTime() *durationpb.Duration

func (*SpawnMetrics) GetRetryTime

func (x *SpawnMetrics) GetRetryTime() *durationpb.Duration

func (*SpawnMetrics) GetSetupTime

func (x *SpawnMetrics) GetSetupTime() *durationpb.Duration

func (*SpawnMetrics) GetStartTime

func (x *SpawnMetrics) GetStartTime() *timestamppb.Timestamp

func (*SpawnMetrics) GetTimeLimit

func (x *SpawnMetrics) GetTimeLimit() *durationpb.Duration

func (*SpawnMetrics) GetTotalTime

func (x *SpawnMetrics) GetTotalTime() *durationpb.Duration

func (*SpawnMetrics) GetUploadTime

func (x *SpawnMetrics) GetUploadTime() *durationpb.Duration

func (*SpawnMetrics) ProtoMessage

func (*SpawnMetrics) ProtoMessage()

func (*SpawnMetrics) ProtoReflect

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

func (*SpawnMetrics) Reset

func (x *SpawnMetrics) Reset()

func (*SpawnMetrics) String

func (x *SpawnMetrics) String() string

Jump to

Keyboard shortcuts

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