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
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sören Henning
theodolite
Merge requests
!276
Partially fixed IntelliJ warnings (
#361
)
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Partially fixed IntelliJ warnings (
#361
)
stu207811/theodolite_fork:Kotlin-Warning-Fixes
into
main
Overview
3
Commits
11
Pipelines
4
Changes
7
Merged
Christopher Konkel
requested to merge
stu207811/theodolite_fork:Kotlin-Warning-Fixes
into
main
2 years ago
Overview
3
Commits
11
Pipelines
4
Changes
7
Expand
Partially addressing
#361
and fixed more straight-forward IntelliJ warnings.
Edited
2 years ago
by
Christopher Konkel
0
0
Merge request reports
Compare
main
version 8
9ac8dbd1
2 years ago
version 7
346faae3
2 years ago
version 6
38f6a7b7
2 years ago
version 5
80662c35
2 years ago
version 4
80662c35
2 years ago
version 3
07f33824
2 years ago
version 2
1a115488
2 years ago
version 1
c46b0d65
2 years ago
main (base)
and
latest version
latest version
da527845
11 commits,
2 years ago
version 8
9ac8dbd1
11 commits,
2 years ago
version 7
346faae3
10 commits,
2 years ago
version 6
38f6a7b7
10 commits,
2 years ago
version 5
80662c35
11 commits,
2 years ago
version 4
80662c35
11 commits,
2 years ago
version 3
07f33824
10 commits,
2 years ago
version 2
1a115488
9 commits,
2 years ago
version 1
c46b0d65
11 commits,
2 years ago
7 files
+
12
−
9
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
7
Search (e.g. *.vue) (Ctrl+P)
theodolite/src/main/kotlin/rocks/theodolite/kubernetes/operator/BenchmarkStateChecker.kt
+
2
−
2
Options
@@ -195,9 +195,9 @@ class BenchmarkStateChecker(
}
private
fun
<
K
,
V
>
Map
<
K
,
V
>.
containsMatchLabels
(
matchLabels
:
Map
<
V
,
V
>):
Boolean
{
private
fun
<
K
,
V
>
Map
<
K
,
V
>.
containsMatchLabels
(
matchLabels
:
Map
<
K
,
V
>):
Boolean
{
for
(
kv
in
matchLabels
)
{
if
(
kv
.
value
!=
this
[
kv
.
key
as
K
])
{
if
(
kv
.
value
!=
this
[
kv
.
key
])
{
return
false
}
}
Loading