state

package
v0.0.0-...-084b0cb Latest Latest
Warning

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

Go to latest
Published: Feb 24, 2022 License: Apache-2.0 Imports: 3 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var Row_Result_name = map[int32]string{
	0:  "NO_RESULT",
	1:  "PASS",
	2:  "PASS_WITH_ERRORS",
	3:  "PASS_WITH_SKIPS",
	4:  "RUNNING",
	12: "FAIL",
	13: "FLAKY",
}
View Source
var Row_Result_value = map[string]int32{
	"NO_RESULT":        0,
	"PASS":             1,
	"PASS_WITH_ERRORS": 2,
	"PASS_WITH_SKIPS":  3,
	"RUNNING":          4,
	"FAIL":             12,
	"FLAKY":            13,
}

Functions

This section is empty.

Types

type Column

type Column struct {
	Build                string   `protobuf:"bytes,1,opt,name=build,proto3" json:"build,omitempty"`
	Started              float64  `protobuf:"fixed64,3,opt,name=started,proto3" json:"started,omitempty"`
	Extra                []string `protobuf:"bytes,4,rep,name=extra,proto3" json:"extra,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*Column) Descriptor

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

func (*Column) GetBuild

func (m *Column) GetBuild() string

func (*Column) GetExtra

func (m *Column) GetExtra() []string

func (*Column) GetStarted

func (m *Column) GetStarted() float64

func (*Column) ProtoMessage

func (*Column) ProtoMessage()

func (*Column) Reset

func (m *Column) Reset()

func (*Column) String

func (m *Column) String() string

func (*Column) XXX_DiscardUnknown

func (m *Column) XXX_DiscardUnknown()

func (*Column) XXX_Marshal

func (m *Column) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Column) XXX_Merge

func (dst *Column) XXX_Merge(src proto.Message)

func (*Column) XXX_Size

func (m *Column) XXX_Size() int

func (*Column) XXX_Unmarshal

func (m *Column) XXX_Unmarshal(b []byte) error

type Grid

type Grid struct {
	Columns              []*Column `protobuf:"bytes,1,rep,name=columns,proto3" json:"columns,omitempty"`
	Rows                 []*Row    `protobuf:"bytes,2,rep,name=rows,proto3" json:"rows,omitempty"`
	XXX_NoUnkeyedLiteral struct{}  `json:"-"`
	XXX_unrecognized     []byte    `json:"-"`
	XXX_sizecache        int32     `json:"-"`
}

func (*Grid) Descriptor

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

func (*Grid) GetColumns

func (m *Grid) GetColumns() []*Column

func (*Grid) GetRows

func (m *Grid) GetRows() []*Row

func (*Grid) ProtoMessage

func (*Grid) ProtoMessage()

func (*Grid) Reset

func (m *Grid) Reset()

func (*Grid) String

func (m *Grid) String() string

func (*Grid) XXX_DiscardUnknown

func (m *Grid) XXX_DiscardUnknown()

func (*Grid) XXX_Marshal

func (m *Grid) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Grid) XXX_Merge

func (dst *Grid) XXX_Merge(src proto.Message)

func (*Grid) XXX_Size

func (m *Grid) XXX_Size() int

func (*Grid) XXX_Unmarshal

func (m *Grid) XXX_Unmarshal(b []byte) error

type Metric

type Metric struct {
	Name                 string    `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Indices              []int32   `protobuf:"varint,2,rep,packed,name=indices,proto3" json:"indices,omitempty"`
	Values               []float64 `protobuf:"fixed64,3,rep,packed,name=values,proto3" json:"values,omitempty"`
	XXX_NoUnkeyedLiteral struct{}  `json:"-"`
	XXX_unrecognized     []byte    `json:"-"`
	XXX_sizecache        int32     `json:"-"`
}

func (*Metric) Descriptor

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

func (*Metric) GetIndices

func (m *Metric) GetIndices() []int32

func (*Metric) GetName

func (m *Metric) GetName() string

func (*Metric) GetValues

func (m *Metric) GetValues() []float64

func (*Metric) ProtoMessage

func (*Metric) ProtoMessage()

func (*Metric) Reset

func (m *Metric) Reset()

func (*Metric) String

func (m *Metric) String() string

func (*Metric) XXX_DiscardUnknown

func (m *Metric) XXX_DiscardUnknown()

func (*Metric) XXX_Marshal

func (m *Metric) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Metric) XXX_Merge

func (dst *Metric) XXX_Merge(src proto.Message)

func (*Metric) XXX_Size

func (m *Metric) XXX_Size() int

func (*Metric) XXX_Unmarshal

func (m *Metric) XXX_Unmarshal(b []byte) error

type Row

type Row struct {
	Name                 string    `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Id                   string    `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
	Results              []int32   `protobuf:"varint,3,rep,packed,name=results,proto3" json:"results,omitempty"`
	CellIds              []string  `protobuf:"bytes,4,rep,name=cell_ids,json=cellIds,proto3" json:"cell_ids,omitempty"`
	Messages             []string  `protobuf:"bytes,5,rep,name=messages,proto3" json:"messages,omitempty"`
	Metrics              []*Metric `protobuf:"bytes,8,rep,name=metrics,proto3" json:"metrics,omitempty"`
	Icons                []string  `protobuf:"bytes,9,rep,name=icons,proto3" json:"icons,omitempty"`
	XXX_NoUnkeyedLiteral struct{}  `json:"-"`
	XXX_unrecognized     []byte    `json:"-"`
	XXX_sizecache        int32     `json:"-"`
}

func (*Row) Descriptor

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

func (*Row) GetCellIds

func (m *Row) GetCellIds() []string

func (*Row) GetIcons

func (m *Row) GetIcons() []string

func (*Row) GetId

func (m *Row) GetId() string

func (*Row) GetMessages

func (m *Row) GetMessages() []string

func (*Row) GetMetrics

func (m *Row) GetMetrics() []*Metric

func (*Row) GetName

func (m *Row) GetName() string

func (*Row) GetResults

func (m *Row) GetResults() []int32

func (*Row) ProtoMessage

func (*Row) ProtoMessage()

func (*Row) Reset

func (m *Row) Reset()

func (*Row) String

func (m *Row) String() string

func (*Row) XXX_DiscardUnknown

func (m *Row) XXX_DiscardUnknown()

func (*Row) XXX_Marshal

func (m *Row) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Row) XXX_Merge

func (dst *Row) XXX_Merge(src proto.Message)

func (*Row) XXX_Size

func (m *Row) XXX_Size() int

func (*Row) XXX_Unmarshal

func (m *Row) XXX_Unmarshal(b []byte) error

type Row_Result

type Row_Result int32
const (
	Row_NO_RESULT        Row_Result = 0
	Row_PASS             Row_Result = 1
	Row_PASS_WITH_ERRORS Row_Result = 2
	Row_PASS_WITH_SKIPS  Row_Result = 3
	Row_RUNNING          Row_Result = 4
	Row_FAIL             Row_Result = 12
	Row_FLAKY            Row_Result = 13
)

func (Row_Result) EnumDescriptor

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

func (Row_Result) String

func (x Row_Result) String() string

Jump to

Keyboard shortcuts

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