mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-12-15 16:30:55 +01:00
002c028f22
vmctl: support of the remote read protocol Signed-off-by: hagen1778 <roman@victoriametrics.com> Co-authored-by: hagen1778 <roman@victoriametrics.com>
27 lines
663 B
Go
27 lines
663 B
Go
// Code generated by "stringer -type Op -trimprefix Op"; DO NOT EDIT.
|
|
|
|
package syntax
|
|
|
|
import "strconv"
|
|
|
|
const (
|
|
_Op_name_0 = "NoMatchEmptyMatchLiteralCharClassAnyCharNotNLAnyCharBeginLineEndLineBeginTextEndTextWordBoundaryNoWordBoundaryCaptureStarPlusQuestRepeatConcatAlternate"
|
|
_Op_name_1 = "opPseudo"
|
|
)
|
|
|
|
var (
|
|
_Op_index_0 = [...]uint8{0, 7, 17, 24, 33, 45, 52, 61, 68, 77, 84, 96, 110, 117, 121, 125, 130, 136, 142, 151}
|
|
)
|
|
|
|
func (i Op) String() string {
|
|
switch {
|
|
case 1 <= i && i <= 19:
|
|
i -= 1
|
|
return _Op_name_0[_Op_index_0[i]:_Op_index_0[i+1]]
|
|
case i == 128:
|
|
return _Op_name_1
|
|
default:
|
|
return "Op(" + strconv.FormatInt(int64(i), 10) + ")"
|
|
}
|
|
}
|