HomeSort by relevance Sort by last modified time
    Searched refs:Scenario (Results 1 - 23 of 23) sorted by null

  /external/caliper/caliper/src/main/java/com/google/caliper/model/
Scenario.java 34 public final class Scenario {
35 static final Scenario DEFAULT = new Scenario();
44 private Scenario() {
50 private Scenario(Builder builder) {
71 } else if (obj instanceof Scenario) {
72 Scenario that = (Scenario) obj;
137 public Scenario build() {
141 return new Scenario(this)
    [all...]
Trial.java 32 * An invocation of a single scenario measured with a single instrument and the results thereof.
42 private Scenario scenario; field in class:Trial
49 this.scenario = Scenario.DEFAULT;
57 this.scenario = builder.scenario;
73 public Scenario scenario() { method in class:Trial
74 return scenario;
114 private Scenario scenario; field in class:Trial.Builder
139 public Builder scenario(Scenario.Builder scenarioBuilder) { method in class:Trial.Builder
143 public Builder scenario(Scenario scenario) { method in class:Trial.Builder
    [all...]
  /external/autotest/server/cros/cfm/configurable_test/
scenario.py 1 class Scenario(object):
3 A scenario with a number of actions to perform.
10 Executes the scenario.
13 the actions in the scenario.
19 return 'Scenario [actions=%s]' % str(self.actions)
configurable_cfm_test_unittest.py 18 scenario=Scenario(
33 scenario=Scenario(
35 RepeatTimes(5, Scenario(
actions_unittest.py 8 from autotest_lib.server.cros.cfm.configurable_test import scenario
111 scenarios = [scenario.Scenario(dummy_action1),
112 scenario.Scenario(dummy_action2)]
127 scenarios1 = [scenario.Scenario(scenario1_action1),
128 scenario.Scenario(scenario1_action2)]
131 scenarios2 = [scenario.Scenario(scenario2_action1)
    [all...]
  /external/grpc-grpc/src/python/grpcio_tests/tests/testing/
_client_application.py 32 class Scenario(enum.Enum):
45 """Outcome of a client application scenario.
48 kind: A Kind value describing the overall kind of scenario execution.
219 Scenario.UNARY_UNARY: _run_unary_unary,
220 Scenario.UNARY_STREAM: _run_unary_stream,
221 Scenario.STREAM_UNARY: _run_stream_unary,
222 Scenario.STREAM_STREAM: _run_stream_stream,
223 Scenario.CONCURRENT_STREAM_UNARY: _run_concurrent_stream_unary,
224 Scenario.CONCURRENT_STREAM_STREAM: _run_concurrent_stream_stream,
225 Scenario.CANCEL_UNARY_UNARY: _run_cancel_unary_unary
    [all...]
_client_test.py 55 _client_application.run, _client_application.Scenario.UNARY_UNARY,
71 _client_application.run, _client_application.Scenario.UNARY_STREAM,
86 _client_application.run, _client_application.Scenario.STREAM_UNARY,
110 _client_application.run, _client_application.Scenario.STREAM_STREAM,
134 _client_application.Scenario.CONCURRENT_STREAM_STREAM,
169 _client_application.Scenario.CANCEL_UNARY_UNARY,
185 _client_application.Scenario.CONCURRENT_STREAM_UNARY,
216 _client_application.run, _client_application.Scenario.STREAM_STREAM,
241 _client_application.run, _client_application.Scenario.UNARY_UNARY,
257 _client_application.run, _client_application.Scenario.STREAM_STREAM
    [all...]
  /external/grpc-grpc/src/php/tests/qps/generated_code/Grpc/Testing/
Scenarios.php 19 * Generated from protobuf field <code>repeated .grpc.testing.Scenario scenarios = 1;</code>
29 * Generated from protobuf field <code>repeated .grpc.testing.Scenario scenarios = 1;</code>
38 * Generated from protobuf field <code>repeated .grpc.testing.Scenario scenarios = 1;</code>
39 * @param \Grpc\Testing\Scenario[]|\Google\Protobuf\Internal\RepeatedField $var
44 $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Grpc\Testing\Scenario::class);
Scenario.php 12 * A single performance scenario: input to qps_json_driver
14 * Generated from protobuf message <code>grpc.testing.Scenario</code>
16 class Scenario extends \Google\Protobuf\Internal\Message
19 * Human readable name for this scenario
73 * Human readable name for this scenario
84 * Human readable name for this scenario
ScenarioResult.php 12 * Results of a single benchmark scenario.
19 * Inputs used to run the scenario.
21 * Generated from protobuf field <code>.grpc.testing.Scenario scenario = 1;</code>
23 private $scenario = null; variable
77 * Inputs used to run the scenario.
79 * Generated from protobuf field <code>.grpc.testing.Scenario scenario = 1;</code>
80 * @return \Grpc\Testing\Scenario
84 return $this->scenario;
97 $this->scenario = $var; variable
    [all...]
  /external/ltp/testcases/kernel/fs/doio/
rwtest 66 -S Scenario Execute an internal scenario.
153 -S) Scenario=$2
221 # Hard-Coded Scenario Specifications
230 case $Scenario in
243 NPE=${Scenario#MPP}
252 FSIZE=${Scenario#places-}
  /external/grpc-grpc/test/cpp/qps/
qps_json_driver.cc 38 "JSON file containing an array of Scenario objects");
40 "JSON string containing an array of Scenario objects");
78 static std::unique_ptr<ScenarioResult> RunAndReport(const Scenario& scenario,
80 std::cerr << "RUNNING SCENARIO: " << scenario.name() << "\n";
82 scenario.client_config(), scenario.num_clients(),
83 scenario.server_config(), scenario.num_servers()
214 const Scenario& scenario = scenarios.scenarios(i); local
218 Scenario* scenario = scenarios.mutable_scenarios(i); local
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
OrderingTest.java 848 Scenario<T> starter = new Scenario<T>((Ordering) ordering, list, emptyArray);
852 private static <T> void verifyScenario(Scenario<T> scenario, int level) {
853 scenario.testCompareTo();
854 scenario.testIsOrdered();
855 scenario.testMinAndMax();
856 scenario.testBinarySearch();
857 scenario.testSortedCopy();
861 verifyScenario(alteration.mutate(scenario), level + 1)
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
OrderingTest.java 882 Scenario<T> starter = new Scenario<T>((Ordering) ordering, list, emptyArray);
886 private static <T> void verifyScenario(Scenario<T> scenario, int level) {
887 scenario.testCompareTo();
888 scenario.testIsOrdered();
889 scenario.testMinAndMax();
890 scenario.testBinarySearch();
891 scenario.testSortedCopy();
895 verifyScenario(alteration.mutate(scenario), level + 1)
    [all...]
  /external/parameter-framework/upstream/tools/clientSimulator/
pfClientSimulator.py 36 from clientsimulator.scenario.Scenario import Scenario
83 Scenario(consoleLogger,
89 logger.info("Scenario execution complete.")
101 parser.add_argument("-s", "--scenario", type=int, default=None, nargs='+',
107 " implicit if neither '--scenario' nor '--interactive' are "
203 if args.scenario is not None:
204 for elem in args.scenario:
206 if (args.scenario is None) or args.no_exit
    [all...]
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
TrialModule.java 26 import com.google.caliper.model.Scenario;
134 .scenario(new Scenario.Builder()
ConsoleOutput.java 22 import com.google.caliper.model.Scenario;
132 Scenario scenario = trial.scenario(); local
133 vmSpecs.add(scenario.vmSpec());
134 benchmarkSpecs.add(scenario.benchmarkSpec());
  /external/parameter-framework/upstream/tools/clientSimulator/clientsimulator/scenario/
Scenario.py 33 class Scenario:
37 to play a complete scenario.
51 :param scenarioFileName: name of file containing scenario description
84 Parse actions from a scenario.
87 :param scenarioFileName: name of file containing scenario description
92 :return: parsed scenario's actions with system-known types
129 # are directly writed in the scenario's file
166 Execute a Scenario
  /external/grpc-grpc/tools/run_tests/
run_performance_tests.py 104 worker_timeout, # workers get restarted after each scenario
114 """Runs one scenario using QPS driver."""
335 Scenario = collections.namedtuple('Scenario', 'jobspec workers name')
365 Scenario(
389 'in the same scenario')
392 print('Warning: Skipping scenario %s as' %
405 print('Warning: Skipping scenario %s as' %
418 scenario = Scenario(
    [all...]
  /external/grpc-grpc/src/csharp/Grpc.IntegrationTesting/
Control.cs 122 new pbr::GeneratedClrTypeInfo(typeof(global::Grpc.Testing.Scenario), global::Grpc.Testing.Scenario.Parser, new[]{ "Name", "ClientConfig", "NumClients", "ServerConfig", "NumServers", "WarmupSeconds", "BenchmarkSeconds", "SpawnLocalWorkerCount" }, null, null, null),
125 new pbr::GeneratedClrTypeInfo(typeof(global::Grpc.Testing.ScenarioResult), global::Grpc.Testing.ScenarioResult.Parser, new[]{ "Scenario", "Latencies", "ClientStats", "ServerStats", "ServerCores", "Summary", "ClientSuccess", "ServerSuccess", "RequestResults" }, null, null, null)
    [all...]
  /external/grpc-grpc/src/ruby/qps/src/proto/grpc/testing/
control_pb.rb 94 add_message "grpc.testing.Scenario" do
105 repeated :scenarios, :message, 1, "grpc.testing.Scenario"
128 optional :scenario, :message, 1, "grpc.testing.Scenario"
175 Scenario = Google::Protobuf::DescriptorPool.generated_pool.lookup("grpc.testing.Scenario").msgclass
  /external/grpc-grpc-java/benchmarks/src/generated/main/java/io/grpc/benchmarks/proto/
Control.java     [all...]
  /external/conscrypt/benchmark-android/
vogar.jar 

Completed in 1509 milliseconds