spotless 적용
This commit is contained in:
@@ -137,9 +137,9 @@ public class MapSheetLearnRepositoryImpl implements MapSheetLearnRepositoryCusto
|
||||
systemMetricEntity.memused,
|
||||
systemMetricEntity.kbmemused,
|
||||
gpuMetricEntity.gpuUtil
|
||||
//gpuMetricEntity.gpuMemUsed,
|
||||
//gpuMetricEntity.gpuMemTotal
|
||||
))
|
||||
// gpuMetricEntity.gpuMemUsed,
|
||||
// gpuMetricEntity.gpuMemTotal
|
||||
))
|
||||
.from(systemMetricEntity)
|
||||
.leftJoin(gpuMetricEntity)
|
||||
.on(
|
||||
|
||||
@@ -774,7 +774,8 @@ public class TrainingDataLabelRepositoryImpl extends QuerydslRepositorySupport
|
||||
try {
|
||||
// 최소 하나의 년도는 제공되어야 함
|
||||
if (beforeYear == null && afterYear == null) {
|
||||
throw new IllegalArgumentException("At least one year parameter (beforeYear or afterYear) must be provided");
|
||||
throw new IllegalArgumentException(
|
||||
"At least one year parameter (beforeYear or afterYear) must be provided");
|
||||
}
|
||||
|
||||
String beforeCogUrl = null;
|
||||
@@ -805,7 +806,8 @@ public class TrainingDataLabelRepositoryImpl extends QuerydslRepositorySupport
|
||||
}
|
||||
|
||||
// 제공된 년도에 대해 하나도 찾지 못한 경우에만 예외 발생
|
||||
if ((beforeYear != null && beforeCogUrl == null) && (afterYear != null && afterCogUrl == null)) {
|
||||
if ((beforeYear != null && beforeCogUrl == null)
|
||||
&& (afterYear != null && afterCogUrl == null)) {
|
||||
throw new RuntimeException(
|
||||
"COG images not found for mapSheetNum: "
|
||||
+ mapSheetNum
|
||||
|
||||
@@ -778,7 +778,8 @@ public class TrainingDataReviewRepositoryImpl extends QuerydslRepositorySupport
|
||||
try {
|
||||
// 최소 하나의 년도는 제공되어야 함
|
||||
if (beforeYear == null && afterYear == null) {
|
||||
throw new IllegalArgumentException("At least one year parameter (beforeYear or afterYear) must be provided");
|
||||
throw new IllegalArgumentException(
|
||||
"At least one year parameter (beforeYear or afterYear) must be provided");
|
||||
}
|
||||
|
||||
String beforeCogUrl = null;
|
||||
@@ -809,7 +810,8 @@ public class TrainingDataReviewRepositoryImpl extends QuerydslRepositorySupport
|
||||
}
|
||||
|
||||
// 제공된 년도에 대해 하나도 찾지 못한 경우에만 예외 발생
|
||||
if ((beforeYear != null && beforeCogUrl == null) && (afterYear != null && afterCogUrl == null)) {
|
||||
if ((beforeYear != null && beforeCogUrl == null)
|
||||
&& (afterYear != null && afterCogUrl == null)) {
|
||||
throw new RuntimeException(
|
||||
"COG images not found for mapSheetNum: "
|
||||
+ mapSheetNum
|
||||
|
||||
Reference in New Issue
Block a user