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
!113
Resolve "Add KDocs for all classes, interfaces, public methods"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Resolve "Add KDocs for all classes, interfaces, public methods"
stu203404/theodolite:140-add-kdoc
into
theodolite-kotlin
Overview
0
Commits
12
Pipelines
0
Changes
48
Closed
Lorenz Boguhn
requested to merge
stu203404/theodolite:140-add-kdoc
into
theodolite-kotlin
3 years ago
Overview
0
Commits
12
Pipelines
0
Changes
48
Expand
Closes
#140 (closed)
0
0
Merge request reports
Compare
theodolite-kotlin
theodolite-kotlin (base)
and
latest version
latest version
33477c18
12 commits,
3 years ago
48 files
+
650
−
58
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
48
Search (e.g. *.vue) (Ctrl+P)
theodolite-quarkus/src/main/kotlin/theodolite/benchmark/Benchmark.kt
+
12
−
0
Options
@@ -5,8 +5,20 @@ import theodolite.util.ConfigurationOverride
import
theodolite.util.LoadDimension
import
theodolite.util.Resource
/**
* A Benchmark contains:
* - The resources to be benchmarked.
* - The [Resource]s that can be scaled for the benchmark.
* - The [LoadDimension]s that can be scaled the benchmark.
* - additional infrastructure configurations.
*/
@RegisterForReflection
interface
Benchmark
{
/**
* Builds a Deployment that can be deployed.
* @return a BenchmarkDeployment.
*/
fun
buildDeployment
(
load
:
LoadDimension
,
res
:
Resource
,
Loading