Documentation ¶
Index ¶
- Variables
- type Column
- func (*Column) Descriptor() ([]byte, []int)
- func (m *Column) GetBuild() string
- func (m *Column) GetExtra() []string
- func (m *Column) GetStarted() float64
- func (*Column) ProtoMessage()
- func (m *Column) Reset()
- func (m *Column) String() string
- func (m *Column) XXX_DiscardUnknown()
- func (m *Column) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *Column) XXX_Merge(src proto.Message)
- func (m *Column) XXX_Size() int
- func (m *Column) XXX_Unmarshal(b []byte) error
- type Grid
- func (*Grid) Descriptor() ([]byte, []int)
- func (m *Grid) GetColumns() []*Column
- func (m *Grid) GetRows() []*Row
- func (*Grid) ProtoMessage()
- func (m *Grid) Reset()
- func (m *Grid) String() string
- func (m *Grid) XXX_DiscardUnknown()
- func (m *Grid) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *Grid) XXX_Merge(src proto.Message)
- func (m *Grid) XXX_Size() int
- func (m *Grid) XXX_Unmarshal(b []byte) error
- type Metric
- func (*Metric) Descriptor() ([]byte, []int)
- func (m *Metric) GetIndices() []int32
- func (m *Metric) GetName() string
- func (m *Metric) GetValues() []float64
- func (*Metric) ProtoMessage()
- func (m *Metric) Reset()
- func (m *Metric) String() string
- func (m *Metric) XXX_DiscardUnknown()
- func (m *Metric) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *Metric) XXX_Merge(src proto.Message)
- func (m *Metric) XXX_Size() int
- func (m *Metric) XXX_Unmarshal(b []byte) error
- type Row
- func (*Row) Descriptor() ([]byte, []int)
- func (m *Row) GetCellIds() []string
- func (m *Row) GetIcons() []string
- func (m *Row) GetId() string
- func (m *Row) GetMessages() []string
- func (m *Row) GetMetrics() []*Metric
- func (m *Row) GetName() string
- func (m *Row) GetResults() []int32
- func (*Row) ProtoMessage()
- func (m *Row) Reset()
- func (m *Row) String() string
- func (m *Row) XXX_DiscardUnknown()
- func (m *Row) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *Row) XXX_Merge(src proto.Message)
- func (m *Row) XXX_Size() int
- func (m *Row) XXX_Unmarshal(b []byte) error
- type Row_Result
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) GetStarted ¶
func (*Column) ProtoMessage ¶
func (*Column) ProtoMessage()
func (*Column) XXX_DiscardUnknown ¶
func (m *Column) XXX_DiscardUnknown()
func (*Column) XXX_Marshal ¶
func (*Column) XXX_Unmarshal ¶
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) GetColumns ¶
func (*Grid) ProtoMessage ¶
func (*Grid) ProtoMessage()
func (*Grid) XXX_DiscardUnknown ¶
func (m *Grid) XXX_DiscardUnknown()
func (*Grid) XXX_Unmarshal ¶
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) GetIndices ¶
func (*Metric) ProtoMessage ¶
func (*Metric) ProtoMessage()
func (*Metric) XXX_DiscardUnknown ¶
func (m *Metric) XXX_DiscardUnknown()
func (*Metric) XXX_Marshal ¶
func (*Metric) XXX_Unmarshal ¶
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) GetCellIds ¶
func (*Row) GetMessages ¶
func (*Row) GetMetrics ¶
func (*Row) GetResults ¶
func (*Row) ProtoMessage ¶
func (*Row) ProtoMessage()
func (*Row) XXX_DiscardUnknown ¶
func (m *Row) XXX_DiscardUnknown()
func (*Row) XXX_Unmarshal ¶
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
Click to show internal directories.
Click to hide internal directories.