1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
var Strings = {
text: {
testName: "Test Name",
score: "Score"
},
json: {
marks: "marks",
samplingStartTimeOffset: "Start sampling",
samplingEndTimeOffset: "End sampling",
samples: "samples",
dataFieldMap: "dataFieldMap",
controller: "controller",
time: "time",
complexity: "complexity",
complexityAverage: "complexityAverage",
frameLength: "frameLength",
smoothedFrameLength: "smoothedFrameLength",
result: "result",
configuration: "configuration",
score: "score",
scoreLowerBound: "scoreLowerBound",
scoreUpperBound: "scoreUpperBound",
bootstrap: "bootstrap",
measurements: {
average: "average",
concern: "concern",
stdev: "stdev",
percent: "percent"
},
regressions: {
startIndex: "startIndex",
endIndex: "endIndex",
segment1: "segment1",
segment2: "segment2",
profile: "profile"
},
profiles: {
slope: "slope",
flat: "flat"
},
results: {
iterations: "iterationsResults",
tests: "testsResults"
}
}
};
|