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
修复创建数据集模型名称重复bug
dev-complex-computation
chenzhihang
1 year ago
parent
bf0c565255
commit
caa2f7d3cb
2 changed files
with
2 additions
and
2 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/service/impl/ModelsServiceImpl.java
+1
-1
ruoyi-modules/management-platform/src/main/java/com/ruoyi/platform/service/impl/NewDatasetServiceImpl.java
+ 1
- 1
ruoyi-modules/management-platform/src/main/java/com/ruoyi/platform/service/impl/ModelsServiceImpl.java
View File
@@ -1206,7 +1206,7 @@ public class ModelsServiceImpl implements ModelsService {
}
}
if (modelTopicName != null) {
if (modelTopicName != null
&& modelTopic.equals(modelTopicName)
) {
if (StringUtils.isNotEmpty(modelTagName) && !modelTagName.toLowerCase().equals(modelTag)) {
continue;
}
+ 1
- 1
ruoyi-modules/management-platform/src/main/java/com/ruoyi/platform/service/impl/NewDatasetServiceImpl.java
View File
@@ -532,7 +532,7 @@ public class NewDatasetServiceImpl implements NewDatasetService {
}
}
if (datasetTopicName != null) {
if (datasetTopicName != null
&& datasetTopic.equals(datasetTopicName)
) {
if (StringUtils.isNotEmpty(datasetTagName) && !datasetTagName.toLowerCase().equals(datasetTag)) {
continue;
}
Write
Preview
Loading…
Cancel
Save