Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
theodolite
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sören Henning
theodolite
Commits
bc864352
Commit
bc864352
authored
Jan 7, 2022
by
Sören Henning
Browse files
Options
Downloads
Patches
Plain Diff
Fix checkstyle issue
parent
f6160d33
Branches
Branches containing commit
Tags
Tags containing commit
1 merge request
!208
Add benchmark implementations for Hazelcast Jet
Pipeline
#5863
passed
Jan 7, 2022
Stage: build
Stage: test
Stage: check
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
theodolite-benchmarks/uc4-hazelcastjet/src/main/java/theodolite/uc4/application/Uc4PipelineBuilder.java
+1
-1
1 addition, 1 deletion
...n/java/theodolite/uc4/application/Uc4PipelineBuilder.java
with
1 addition
and
1 deletion
theodolite-benchmarks/uc4-hazelcastjet/src/main/java/theodolite/uc4/application/Uc4PipelineBuilder.java
+
1
−
1
View file @
bc864352
...
@@ -208,7 +208,7 @@ public class Uc4PipelineBuilder {
...
@@ -208,7 +208,7 @@ public class Uc4PipelineBuilder {
// Transformed Data
// Transformed Data
String
[]
groupList
=
groups
.
toArray
(
String
[]::
new
);
String
[]
groupList
=
groups
.
toArray
(
String
[]::
new
);
SensorGroupKey
[]
newKeyList
=
new
SensorGroupKey
[
groupList
.
length
];
SensorGroupKey
[]
newKeyList
=
new
SensorGroupKey
[
groupList
.
length
];
List
<
Entry
<
SensorGroupKey
,
Double
>>
newEntryList
=
new
ArrayList
<
Entry
<
SensorGroupKey
,
Double
>
>();
List
<
Entry
<
SensorGroupKey
,
Double
>>
newEntryList
=
new
ArrayList
<>();
for
(
int
i
=
0
;
i
<
groupList
.
length
;
i
++)
{
for
(
int
i
=
0
;
i
<
groupList
.
length
;
i
++)
{
newKeyList
[
i
]
=
new
SensorGroupKey
(
keyGroupId
,
groupList
[
i
]);
newKeyList
[
i
]
=
new
SensorGroupKey
(
keyGroupId
,
groupList
[
i
]);
newEntryList
.
add
(
Util
.
entry
(
newKeyList
[
i
],
valueInW
));
newEntryList
.
add
(
Util
.
entry
(
newKeyList
[
i
],
valueInW
));
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
sign in
to comment