You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- package constants
-
- const (
- UserId = "UserId"
- UserName = "UserName"
- )
-
- const (
- StatusSaved = "Saved"
- StatusDeploying = "Deploying"
- )
- const (
- AdapterTypeCloud = "0"
- AdapterTypeAI = "1"
- AdapterTypeHPC = "2"
- )
-
- // HPCSystemType 超算计算系统类型
- type HPCSystemType string
-
- const (
- HPC_SYSTEM_SLURM HPCSystemType = "slurm"
- HPC_SYSTEM_AC HPCSystemType = "ac"
- )
|