mirror of
https://git.mirrors.martin98.com/https://github.com/ceph/ceph-csi.git
synced 2025-08-16 05:35:57 +08:00
![dependabot[bot]](/assets/img/avatar_default.png)
Bumps the k8s-dependencies group in /e2e with 3 updates: [k8s.io/apimachinery](https://github.com/kubernetes/apimachinery), [k8s.io/cloud-provider](https://github.com/kubernetes/cloud-provider) and [k8s.io/pod-security-admission](https://github.com/kubernetes/pod-security-admission). Updates `k8s.io/apimachinery` from 0.32.3 to 0.33.0 - [Commits](https://github.com/kubernetes/apimachinery/compare/v0.32.3...v0.33.0) Updates `k8s.io/cloud-provider` from 0.32.3 to 0.33.0 - [Commits](https://github.com/kubernetes/cloud-provider/compare/v0.32.3...v0.33.0) Updates `k8s.io/pod-security-admission` from 0.32.3 to 0.33.0 - [Commits](https://github.com/kubernetes/pod-security-admission/compare/v0.32.3...v0.33.0) --- updated-dependencies: - dependency-name: k8s.io/apimachinery dependency-version: 0.33.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: k8s-dependencies - dependency-name: k8s.io/cloud-provider dependency-version: 0.33.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: k8s-dependencies - dependency-name: k8s.io/pod-security-admission dependency-version: 0.33.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: k8s-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
23 lines
621 B
Go
23 lines
621 B
Go
package utilities
|
|
|
|
// OpCode is an opcode of compiled path patterns.
|
|
type OpCode int
|
|
|
|
// These constants are the valid values of OpCode.
|
|
const (
|
|
// OpNop does nothing
|
|
OpNop = OpCode(iota)
|
|
// OpPush pushes a component to stack
|
|
OpPush
|
|
// OpLitPush pushes a component to stack if it matches to the literal
|
|
OpLitPush
|
|
// OpPushM concatenates the remaining components and pushes it to stack
|
|
OpPushM
|
|
// OpConcatN pops N items from stack, concatenates them and pushes it back to stack
|
|
OpConcatN
|
|
// OpCapture pops an item and binds it to the variable
|
|
OpCapture
|
|
// OpEnd is the least positive invalid opcode.
|
|
OpEnd
|
|
)
|