This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
AI开发
Register
Sign In
ci4s
/
ci4sManagement-cloud
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
1
Wiki
evaluate
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
HPC
Browse Source
优化状态更新
pull/227/head
chenzhihang
8 months ago
parent
0a7be4e261
commit
3905841db7
5 changed files
with
5 additions
and
5 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
ruoyi-modules/management-platform/src/main/java/com/ruoyi/platform/scheduling/ActiveLearnInsStatusTask.java
+1
-1
ruoyi-modules/management-platform/src/main/java/com/ruoyi/platform/scheduling/AutoMlInsStatusTask.java
+1
-1
ruoyi-modules/management-platform/src/main/java/com/ruoyi/platform/scheduling/ExperimentInstanceStatusTask.java
+1
-1
ruoyi-modules/management-platform/src/main/java/com/ruoyi/platform/scheduling/MLStatusTask.java
+1
-1
ruoyi-modules/management-platform/src/main/java/com/ruoyi/platform/scheduling/RayInsStatusTask.java
+ 1
- 1
ruoyi-modules/management-platform/src/main/java/com/ruoyi/platform/scheduling/ActiveLearnInsStatusTask.java
View File
@@ -79,7 +79,7 @@ public class ActiveLearnInsStatusTask {
@Scheduled(cron = "0/10 * * * * ?") // / 每30S执行一次
public void executeActiveLearnStatus() {
if (activeLearnIds.
size() == 0
) {
if (activeLearnIds.
isEmpty()
) {
return;
}
// 存储需要更新的实验对象列表
+ 1
- 1
ruoyi-modules/management-platform/src/main/java/com/ruoyi/platform/scheduling/AutoMlInsStatusTask.java
View File
@@ -61,7 +61,7 @@ public class AutoMlInsStatusTask {
@Scheduled(cron = "0/10 * * * * ?") // / 每30S执行一次
public void executeAutoMlStatus() {
if (autoMlIds.
size() == 0
) {
if (autoMlIds.
isEmpty()
) {
return;
}
// 存储需要更新的实验对象列表
+ 1
- 1
ruoyi-modules/management-platform/src/main/java/com/ruoyi/platform/scheduling/ExperimentInstanceStatusTask.java
View File
@@ -143,7 +143,7 @@ public class ExperimentInstanceStatusTask {
@Scheduled(cron = "0/10 * * * * ?") // / 每30S执行一次
public void executeExperimentStatus() throws IOException {
if (experimentIds.
size() == 0
) {
if (experimentIds.
isEmpty()
) {
return;
}
// 存储需要更新的实验对象列表
+ 1
- 1
ruoyi-modules/management-platform/src/main/java/com/ruoyi/platform/scheduling/MLStatusTask.java
View File
@@ -83,7 +83,7 @@ public class MLStatusTask {
@Scheduled(cron = "0/10 * * * * ?") // / 每30S执行一次
public void executeMachineLearn() {
if (machineLearnIds.
size() == 0
) {
if (machineLearnIds.
isEmpty()
) {
return;
}
// 存储需要更新的实验对象列表
+ 1
- 1
ruoyi-modules/management-platform/src/main/java/com/ruoyi/platform/scheduling/RayInsStatusTask.java
View File
@@ -79,7 +79,7 @@ public class RayInsStatusTask {
@Scheduled(cron = "0/10 * * * * ?") // / 每30S执行一次
public void executeRayStatus() {
if (rayIds.
size() == 0
) {
if (rayIds.
isEmpty()
) {
return;
}
// 存储需要更新的实验对象列表
Write
Preview
Loading…
Cancel
Save