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
!74
Make Benchmark Trend Slop Threshold configureable
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Make Benchmark Trend Slop Threshold configureable
stu202077/theodolite:feature/configureSlopThreshold
into
master
Overview
2
Commits
2
Pipelines
0
Changes
9
Merged
Björn Vonheiden
requested to merge
stu202077/theodolite:feature/configureSlopThreshold
into
master
4 years ago
Overview
2
Commits
2
Pipelines
0
Changes
9
Expand
Implements
#121 (closed)
0
0
Merge request reports
Compare
master
version 2
22fcb484
4 years ago
version 1
76866d67
4 years ago
master (base)
and
latest version
latest version
87767ea9
2 commits,
4 years ago
version 2
22fcb484
1 commit,
4 years ago
version 1
76866d67
1 commit,
4 years ago
9 files
+
62
−
37
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
9
Search (e.g. *.vue) (Ctrl+P)
execution/lib/cli_parser.py
+
5
−
0
Options
@@ -136,6 +136,11 @@ def benchmark_parser(description):
@@ -136,6 +136,11 @@ def benchmark_parser(description):
metavar
=
'
<strategy>
'
,
metavar
=
'
<strategy>
'
,
default
=
os
.
environ
.
get
(
'
SEARCH_STRATEGY
'
,
'
default
'
),
default
=
os
.
environ
.
get
(
'
SEARCH_STRATEGY
'
,
'
default
'
),
help
=
'
The benchmarking search strategy. Can be set to default, linear-search or binary-search
'
)
help
=
'
The benchmarking search strategy. Can be set to default, linear-search or binary-search
'
)
parser
.
add_argument
(
'
--threshold
'
,
type
=
int
,
metavar
=
'
<threshold>
'
,
default
=
os
.
environ
.
get
(
'
THRESHOLD
'
,
2000
),
help
=
'
The threshold for the trend slop that the search strategies use to determine that a load could be handled
'
)
return
parser
return
parser
Loading