Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
279 Bytes
package swogrp
// ClusterState represents the current state of the SWO cluster.
type ClusterState int
const (
ClusterStateUnknown ClusterState = iota
ClusterStateResetting
ClusterStateIdle
ClusterStateSyncing
ClusterStatePausing
ClusterStateExecuting
ClusterStateDone
)