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 (
- TASK_TYPE_CLOUD = 1
- TASK_TYPE_HPC = 2
- TASK_TYPE_AI = 3
- )
-
- // 任务状态
- const (
- TASK_STATUS_SAVED = 1
- TASK_STATUS_INIT = 2
- TASK_STATUS_RUNNING = 3
- TASK_STATUS_FAILED = 4
- TASK_STATUS_END = 5
- TASK_STATUS_UNKNOW = 6
- )
|