You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let sensor_idx = event_idx % baseline_entities_count;
693
694
let timestamp = start_timestamp + ((event_idx asf64)* event_interval_ms).round()asu64;
694
-
let value = 20 + sensor_idxasi64*10;
695
+
let value = 20 + i64::try_from(sensor_idx).expect("sensor index fits in i64")*10;
695
696
events.push(RDFEvent::new(
696
697
timestamp,
697
698
&sensor_iri(sensor_idx),
@@ -832,6 +833,7 @@ GROUP BY ?sensor
832
833
)
833
834
}
834
835
836
+
#[allow(clippy::too_many_arguments)]
835
837
fnrun_single_comparison(
836
838
parser:&JanusQLParser,
837
839
prepared:&PreparedStorage,
@@ -902,6 +904,7 @@ fn run_single_comparison(
902
904
Ok(comparison)
903
905
}
904
906
907
+
#[allow(clippy::too_many_arguments)]
905
908
fnrun_baseline_variant(
906
909
parser:&JanusQLParser,
907
910
prepared:&PreparedStorage,
@@ -997,9 +1000,10 @@ fn run_baseline_variant(
997
1000
let observed_rows = parse_live_rows(&collected)?;
998
1001
log_stage(verbose,"baseline","done");
999
1002
letmut window_semantics_note = if live_replay.mode == LiveReplayMode::Realtime{
1000
-
Some(format!(
1003
+
Some(
1001
1004
"Realtime replay reports emitted windows separately from full windows; the first emission is the initial warm-up window and full windows follow at the logical duration horizon."
1002
-
))
1005
+
.to_string(),
1006
+
)
1003
1007
}else{
1004
1008
None
1005
1009
};
@@ -1120,6 +1124,7 @@ fn run_baseline_variant(
1120
1124
Ok(VariantRunData{ metrics })
1121
1125
}
1122
1126
1127
+
#[allow(clippy::too_many_arguments)]
1123
1128
fnrun_live_only_variant(
1124
1129
prepared:&PreparedStorage,
1125
1130
live_replay:&ResolvedLiveReplayConfig,
@@ -1181,9 +1186,10 @@ fn run_live_only_variant(
1181
1186
let observed_rows = parse_live_rows(&collected)?;
1182
1187
log_stage(verbose,"live_only","done");
1183
1188
letmut window_semantics_note = if live_replay.mode == LiveReplayMode::Realtime{
1184
-
Some(format!(
1189
+
Some(
1185
1190
"Realtime replay reports emitted windows separately from full windows; the first emission is the initial warm-up window and full windows follow at the logical duration horizon."
0 commit comments