Home
last modified time | relevance | path

Searched refs:testDuration (Results 1 – 25 of 414) sorted by relevance

12345678910>>...17

/dports/security/vault/vault-1.8.2/vendor/github.com/apple/foundationdb/fdbserver/workloads/
H A DIncrement.actor.cpp29 double testDuration, transactionsPerSecond, minExpectedTransactionsPerSecond; member
40 testDuration = getOption( options, LiteralStringRef("testDuration"), 10.0 ); in Increment()
56 … incrementClient( cx->clone(), this, actorCount / transactionsPerSecond ), testDuration, Void()) ); in start()
57 return delay(testDuration); in start()
74 …m.push_back( PerfMetric( "Read rows/simsec (approx)", transactions.getValue() * 3 / testDuration, … in getMetrics()
75 …m.push_back( PerfMetric( "Write rows/simsec (approx)", transactions.getValue() * 4 / testDuration,… in getMetrics()
137 …if (self->transactions.getMetric().value() < self->testDuration * self->minExpectedTransactionsPer… in incrementCheck()
138 ….2f", self->transactions.getMetric().value() / (self->transactionsPerSecond * self->testDuration))) in incrementCheck()
140 .detail("MinTransactionsExpected", self->testDuration * self->minExpectedTransactionsPerSecond) in incrementCheck()
141 .detail("TransactionGoal", self->transactionsPerSecond * self->testDuration); in incrementCheck()
H A DBulkLoad.actor.cpp29 double testDuration; member
40 testDuration = getOption( options, LiteralStringRef("testDuration"), 10.0 ); in BulkLoadWorkload()
51 clients.push_back( timeout( bulkLoadClient( cx, this, clientId, c ), testDuration, Void() ) ); in start()
64 m.push_back( PerfMetric( "Transactions/sec", transactions.getValue() / testDuration, false ) ); in getMetrics()
65 …Metric( "Write rows/sec", transactions.getValue() * writesPerTransaction / testDuration, false ) ); in getMetrics()
66 double keysPerSecond = transactions.getValue() * writesPerTransaction / testDuration; in getMetrics()
H A DCycle.actor.cpp29 double testDuration, transactionsPerSecond, minExpectedTransactionsPerSecond; member
41 testDuration = getOption( options, LiteralStringRef("testDuration"), 10.0 ); in CycleWorkload()
57 cycleClient( cx->clone(), this, actorCount / transactionsPerSecond ), testDuration, Void()) ); in start()
58 return delay(testDuration); in start()
75 …m.push_back( PerfMetric( "Read rows/simsec (approx)", transactions.getValue() * 3 / testDuration, … in getMetrics()
76 …m.push_back( PerfMetric( "Write rows/simsec (approx)", transactions.getValue() * 4 / testDuration,… in getMetrics()
166 …if (self->transactions.getMetric().value() < self->testDuration * self->minExpectedTransactionsPer… in cycleCheck()
167 ….2f", self->transactions.getMetric().value() / (self->transactionsPerSecond * self->testDuration))) in cycleCheck()
169 .detail("MinTransactionsExpected", self->testDuration * self->minExpectedTransactionsPerSecond) in cycleCheck()
170 .detail("TransactionGoal", self->transactionsPerSecond * self->testDuration); in cycleCheck()
H A DWatchAndWait.actor.cpp33 double testDuration; member
41 testDuration = getOption( options, LiteralStringRef("testDuration"), 600.0 ); in WatchAndWaitWorkload()
90 double duration = testDuration; in getMetrics()
102 …TraceEvent("WatchAndWaitExpect").detail("Duration", self->testDuration).detail("ExpectedCount", (e… in _start()
107 wait( delay( self->testDuration )); // || waitForAll( watches ) in _start()
108 TraceEvent("WatchAndWaitEnd").detail("Duration", self->testDuration); in _start()
H A DTimeKeeperCorrectness.actor.cpp28 double testDuration; member
32 testDuration = getOption( options, LiteralStringRef("testDuration"), 20.0 ); in TimeKeeperCorrectnessWorkload()
50 while (now() - start > self->testDuration) { in _start()
99 if (allItems.size() < self->testDuration / SERVER_KNOBS->TIME_KEEPER_DELAY) { in _check()
101 .detail("Expected", self->testDuration / SERVER_KNOBS->TIME_KEEPER_DELAY) in _check()
H A DLowLatency.actor.cpp30 double testDuration; member
39 testDuration = getOption( options, LiteralStringRef("testDuration"), 600.0 ); in LowLatencyWorkload()
79 if( now() - testStart > self->testDuration ) in _start()
94 double duration = testDuration; in getMetrics()
H A DRandomClogging.actor.cpp29 double testDuration; member
37 testDuration = getOption( options, LiteralStringRef("testDuration"), 10.0 ); in RandomCloggingWorkload()
49 testDuration, Void() ); in start()
73 state double workloadEnd = now() + self->testDuration; in clogClient()
89 state double workloadEnd = now() + self->testDuration; in swizzleClogClient()
H A DMetricLogging.actor.cpp30 double testDuration; member
42 testDuration = getOption( options, LiteralStringRef("testDuration"), 10.0 ); in MetricLoggingWorkload()
77 …clients.push_back( timeout( MetricLoggingClient( cx, this, clientId, c ), testDuration, Void() ) ); in start()
88 m.push_back( PerfMetric( "Changes/sec", changes.getValue() / testDuration, false ) ); in getMetrics()
H A DRollback.actor.cpp32 double meanDelay, clogDuration, testDuration; member
40 testDuration = getOption( options, LiteralStringRef("testDuration"), 10.0 ); in RollbackWorkload()
51 testDuration, Void() ); in start()
115 …wait( ::delay( g_random->random01()*std::max(0.0, self->testDuration - self->clogDuration*13.0) ) … in rollbackFailureWorker()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/test/jdk/jdk/jfr/api/consumer/recordingstream/
H A DTestMaxAge.java44 Duration testDuration = Duration.ofMillis(1234567); in main() local
46 r.setMaxAge(testDuration); in main()
52 if (testDuration.equals(d)) { in main()
56 …ntln("Max age not set, was " + d.toMillis() + " ms , but expected " + testDuration.toMillis() + " … in main()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/test/jdk/jdk/jfr/api/consumer/recordingstream/
H A DTestMaxAge.java44 Duration testDuration = Duration.ofMillis(1234567); in main() local
46 r.setMaxAge(testDuration); in main()
52 if (testDuration.equals(d)) { in main()
56 …ntln("Max age not set, was " + d.toMillis() + " ms , but expected " + testDuration.toMillis() + " … in main()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/test/jdk/jdk/jfr/api/consumer/recordingstream/
H A DTestMaxAge.java44 Duration testDuration = Duration.ofMillis(1234567); in main() local
46 r.setMaxAge(testDuration); in main()
52 if (testDuration.equals(d)) { in main()
56 …ntln("Max age not set, was " + d.toMillis() + " ms , but expected " + testDuration.toMillis() + " … in main()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/test/jdk/jdk/jfr/api/consumer/recordingstream/
H A DTestMaxAge.java42 Duration testDuration = Duration.ofMillis(1234567); in main() local
44 r.setMaxAge(testDuration); in main()
50 if (testDuration.equals(d)) { in main()
54 …ntln("Max age not set, was " + d.toMillis() + " ms , but expected " + testDuration.toMillis() + " … in main()
/dports/sysutils/istio/istio-1.6.7/pkg/cmd/
H A Dflag_test.go107 var testDuration time.Duration
108 flag.DurationVar(&testDuration, "testduration", defaultDuration, "test duration flag")
123 if testDuration != defaultDuration {
124 t.Errorf("%s: pflag parse error. Actual %d, Expected %d", testName, testDuration, defaultDuration)
/dports/devel/pycharm-pro/pycharm-2020.2.3/plugins/python/helpers/pycharm/teamcity/
H A Dmessages.py152 def testFinished(self, testName, testDuration=None, flowId=None): argument
153 if testDuration is not None:
154 duration_ms = testDuration.days * 86400000 + \
155 testDuration.seconds * 1000 + \
156 int(testDuration.microseconds / 1000)
161 def test(self, testName, captureStandardOutput=None, testDuration=None, flowId=None): argument
163 …testName=testName, captureStandardOutput=captureStandardOutput, testDuration=testDuration, flowId=…
H A Dcontext_managers.py29 def test(messages, testName, captureStandardOutput=None, flowId=None, testDuration=None): argument
32 messages.testFinished(testName=testName, testDuration=testDuration, flowId=flowId)
/dports/security/vault/vault-1.8.2/vault/
H A Dha_test.go21 testDuration = time.Second
22 testTimeout = 10 * testDuration
49 for time.Now().Sub(start) < testDuration {
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/test/hotspot/gtest/
H A DconcurrentTestRunner.inline.hpp47 JavaTestThread(doneArg), runnable(runnableArg), testDuration(testDurationArg) {} in UnitTestThread()
51 long stopTime = os::javaTimeMillis() + testDuration; in main_run()
58 const long testDuration; member in UnitTestThread
/dports/net/ns3/ns-allinone-3.35/ns-3.35/src/lte/test/
H A Dlte-test-rlc-am-e2e.cc80 TestCase::TestDuration testDuration; in LteRlcAmE2eTestSuite() local
83 testDuration = TestCase::QUICK; in LteRlcAmE2eTestSuite()
87 testDuration = TestCase::EXTENSIVE; in LteRlcAmE2eTestSuite()
91 testDuration = TestCase::TAKES_FOREVER; in LteRlcAmE2eTestSuite()
93 …TestCase (new LteRlcAmE2eTestCase (name.str (), runs[s], losses[l], bulkSduArrival), testDuration); in LteRlcAmE2eTestSuite()
/dports/devel/pycharm-pro/pycharm-2020.2.3/plugins/python/helpers/pycharm/
H A D_jb_runner_tools.py190 def testFinished(self, testName, testDuration=None, flowId=None, is_suite=False): argument
201 if testDuration is not None:
202 duration_ms = testDuration.days * 86400000 + \
203 testDuration.seconds * 1000 + \
204 int(testDuration.microseconds / 1000)
217 self.testFinished(testName, testDuration)
/dports/math/hs-Agda/Agda-2.6.2/_cabal_deps/time-compat-1.9.3/test/main/Test/Calendar/
H A DDuration.hs2 ( testDuration
46 testDuration :: TestTree
47 testDuration = testGroup "CalendarDiffDays" [testAddDiff, testDiffs] function
/dports/lang/purescript/purescript-0.14.5/_cabal_deps/time-compat-1.9.6/test/main/Test/Calendar/
H A DDuration.hs2 ( testDuration
45 testDuration :: TestTree
46 testDuration = testGroup "CalendarDiffDays" [testAddDiff, testDiffs] function
/dports/games/hedgewars-server/hedgewars-src-1.0.0/gameServer/_cabal_deps/time-compat-1.9.3/test/main/Test/Calendar/
H A DDuration.hs2 ( testDuration
46 testDuration :: TestTree
47 testDuration = testGroup "CalendarDiffDays" [testAddDiff, testDiffs] function
/dports/converters/hs-aeson-pretty/aeson-pretty-0.8.8/_cabal_deps/time-compat-1.9.3/test/main/Test/Calendar/
H A DDuration.hs2 ( testDuration
46 testDuration :: TestTree
47 testDuration = testGroup "CalendarDiffDays" [testAddDiff, testDiffs] function
/dports/lang/ghc/ghc-8.10.7/libraries/time/test/main/Test/Calendar/
H A DDuration.hs2 ( testDuration
45 testDuration :: TestTree
46 testDuration = testGroup "CalendarDiffDays" [testAddDiff, testDiffs] function

12345678910>>...17