Home
last modified time | relevance | path

Searched refs:Testing (Results 1 – 25 of 1053) sorted by relevance

12345678910>>...43

/external/apache-velocity-engine/velocity-engine-core/src/test/resources/configuration/compare/
Doutput.cmp2 Testing order of keys ...
38 Testing retrieval of CSV values ...
46 Testing subset(prefix).getKeys() ...
54 Testing getVector(prefix) ...
62 Testing getString(key) ...
68 Testing getBoolean(key) ...
74 Testing getByte(key) ...
80 Testing getShort(key) ...
86 Testing getInt(key) ...
92 Testing getLong(key) ...
[all …]
/external/grpc-grpc/src/php/tests/interop/
Dinterop_client.php62 $stub->EmptyCall(new Grpc\Testing\EmptyMessage())->wait();
90 $request = new Grpc\Testing\SimpleRequest();
91 $request->setResponseType(Grpc\Testing\PayloadType::COMPRESSABLE);
93 $payload = new Grpc\Testing\Payload();
94 $payload->setType(Grpc\Testing\PayloadType::COMPRESSABLE);
109 hardAssert($payload->getType() === Grpc\Testing\PayloadType::COMPRESSABLE,
128 $falseBoolValue = new Grpc\Testing\BoolValue(['value' => false]);
129 $trueBoolValue = new Grpc\Testing\BoolValue(['value' => true]);
131 $payload = new Grpc\Testing\Payload([
134 $request = new Grpc\Testing\SimpleRequest([
[all …]
Dinterop_server.php21 class TestService extends \Grpc\Testing\TestServiceStub
61 \Grpc\Testing\EmptyMessage $request,
63 ): ?\Grpc\Testing\EmptyMessage {
68 return new \Grpc\Testing\EmptyMessage();
72 \Grpc\Testing\SimpleRequest $request,
74 ): ?\Grpc\Testing\SimpleResponse {
82 $payload = new \Grpc\Testing\Payload([
86 $response = new \Grpc\Testing\SimpleResponse([
96 \Grpc\Testing\SimpleRequest $request,
98 ): ?\Grpc\Testing\SimpleResponse {
[all …]
Dxds_client.php29 extends \Grpc\Testing\XdsUpdateClientConfigureServiceStub
32 \Grpc\Testing\ClientConfigureRequest $request,
34 ): ?\Grpc\Testing\ClientConfigureResponse {
40 \Grpc\Testing\ClientConfigureRequest\RpcType::EMPTY_CALL) {
43 \Grpc\Testing\ClientConfigureRequest\RpcType::UNARY_CALL) {
51 \Grpc\Testing\ClientConfigureRequest\RpcType::EMPTY_CALL) {
54 \Grpc\Testing\ClientConfigureRequest\RpcType::UNARY_CALL) {
72 return new Grpc\Testing\ClientConfigureResponse();
79 extends \Grpc\Testing\LoadBalancerStatsServiceStub
82 \Grpc\Testing\LoadBalancerStatsRequest $request,
[all …]
/external/pytorch/aten/src/ATen/test/
Dvitals.cpp23 TORCH_VITAL_DEFINE(Testing); in TEST()
24 TORCH_VITAL(Testing, Attribute0) << 1; in TEST()
25 TORCH_VITAL(Testing, Attribute1) << "1"; in TEST()
26 TORCH_VITAL(Testing, Attribute2) << 1.0f; in TEST()
27 TORCH_VITAL(Testing, Attribute3) << 1.0; in TEST()
29 TORCH_VITAL(Testing, Attribute4) << t; in TEST()
52 TORCH_VITAL_DEFINE(Testing); in TEST()
53 TORCH_VITAL(Testing, Attribute0) << 1 << " of " << 2; in TEST()
54 TORCH_VITAL(Testing, Attribute1) << 1; in TEST()
55 TORCH_VITAL(Testing, Attribute1) << " of "; in TEST()
[all …]
/external/grpc-grpc/src/php/tests/interop/Grpc/Testing/
DTestServiceStub.php22 namespace Grpc\Testing;
38 \Grpc\Testing\EmptyMessage $request,
40 ): ?\Grpc\Testing\EmptyMessage {
53 \Grpc\Testing\SimpleRequest $request,
55 ): ?\Grpc\Testing\SimpleResponse {
70 \Grpc\Testing\SimpleRequest $request,
72 ): ?\Grpc\Testing\SimpleResponse {
86 \Grpc\Testing\StreamingOutputCallRequest $request,
105 ): ?\Grpc\Testing\StreamingInputCallResponse {
156 \Grpc\Testing\EmptyMessage $request,
[all …]
DXdsUpdateHealthServiceStub.php22 namespace Grpc\Testing;
36 \Grpc\Testing\EmptyMessage $request,
38 ): ?\Grpc\Testing\EmptyMessage {
50 \Grpc\Testing\EmptyMessage $request,
52 ): ?\Grpc\Testing\EmptyMessage {
64 \Grpc\Testing\HookRequest $request,
66 ): ?\Grpc\Testing\HookResponse {
DHookServiceStub.php22 namespace Grpc\Testing;
38 \Grpc\Testing\EmptyMessage $request,
40 ): ?\Grpc\Testing\EmptyMessage {
53 \Grpc\Testing\SetReturnStatusRequest $request,
55 ): ?\Grpc\Testing\EmptyMessage {
68 \Grpc\Testing\EmptyMessage $request,
70 ): ?\Grpc\Testing\EmptyMessage {
DStreamingOutputCallRequest.php5 namespace Grpc\Testing;
74 \GPBMetadata\Src\Proto\Grpc\Testing\Messages::initOnce();
104 GPBUtil::checkEnum($var, \Grpc\Testing\PayloadType::class);
130 …eckRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Grpc\Testing\ResponseParameter…
166 GPBUtil::checkMessage($var, \Grpc\Testing\Payload::class);
202 GPBUtil::checkMessage($var, \Grpc\Testing\EchoStatus::class);
238 GPBUtil::checkMessage($var, \Grpc\Testing\TestOrcaReport::class);
DReconnectServiceStub.php22 namespace Grpc\Testing;
36 \Grpc\Testing\ReconnectParams $request,
38 ): ?\Grpc\Testing\EmptyMessage {
50 \Grpc\Testing\EmptyMessage $request,
52 ): ?\Grpc\Testing\ReconnectInfo {
DLoadBalancerStatsServiceStub.php22 namespace Grpc\Testing;
37 \Grpc\Testing\LoadBalancerStatsRequest $request,
39 ): ?\Grpc\Testing\LoadBalancerStatsResponse {
52 \Grpc\Testing\LoadBalancerAccumulatedStatsRequest $request,
54 ): ?\Grpc\Testing\LoadBalancerAccumulatedStatsResponse {
DTestServiceClient.php22 namespace Grpc\Testing;
46 public function EmptyCall(\Grpc\Testing\EmptyMessage $argument,
61 public function UnaryCall(\Grpc\Testing\SimpleRequest $argument,
78 public function CacheableUnaryCall(\Grpc\Testing\SimpleRequest $argument,
94 public function StreamingOutputCall(\Grpc\Testing\StreamingOutputCallRequest $argument,
152 public function UnimplementedCall(\Grpc\Testing\EmptyMessage $argument,
DSimpleRequest.php5 namespace Grpc\Testing;
124 \GPBMetadata\Src\Proto\Grpc\Testing\Messages::initOnce();
150 GPBUtil::checkEnum($var, \Grpc\Testing\PayloadType::class);
212 GPBUtil::checkMessage($var, \Grpc\Testing\Payload::class);
306 GPBUtil::checkMessage($var, \Grpc\Testing\BoolValue::class);
342 GPBUtil::checkMessage($var, \Grpc\Testing\EchoStatus::class);
378 GPBUtil::checkMessage($var, \Grpc\Testing\BoolValue::class);
466 GPBUtil::checkMessage($var, \Grpc\Testing\TestOrcaReport::class);
/external/libpng/contrib/pngsuite/
DREADME63 Testing basn0g01.png: PASS (524 zero samples)
65 Testing basn0g02.png: PASS (448 zero samples)
67 Testing basn0g04.png: PASS (520 zero samples)
69 Testing basn0g08.png: PASS (3 zero samples)
72 Testing basn0g16.png: PASS (1 zero samples)
75 Testing basn2c08.png: PASS (6 zero samples)
78 Testing basn2c16.png: PASS (592 zero samples)
81 Testing basn3p01.png: PASS (512 zero samples)
83 Testing basn3p02.png: PASS (448 zero samples)
85 Testing basn3p04.png: PASS (544 zero samples)
[all …]
/external/apache-velocity-engine/velocity-engine-core/src/test/resources/configuration/
Dtest-config.properties53 # Testing String retrieval
58 # Testing boolean retrieval
63 # Testing byte retrieval
68 # Testing short retrieval
73 # Testing integer retrieval
78 # Testing long retrieval
83 # Testing float retrieval
88 # Testing double retrieval
93 # Testing escaped commas
/external/grpc-grpc/src/php/tests/qps/generated_code/Grpc/Testing/
DScenarioResult.php5 namespace Grpc\Testing;
97 \GPBMetadata\Src\Proto\Grpc\Testing\Control::initOnce();
121 GPBUtil::checkMessage($var, \Grpc\Testing\Scenario::class);
147 GPBUtil::checkMessage($var, \Grpc\Testing\HistogramData::class);
173 …eckRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Grpc\Testing\ClientStats::clas…
199 …eckRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Grpc\Testing\ServerStats::clas…
251 GPBUtil::checkMessage($var, \Grpc\Testing\ScenarioResultSummary::class);
325 …eckRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Grpc\Testing\RequestResultCoun…
DStreamingOutputCallRequest.php5 namespace Grpc\Testing;
66 \GPBMetadata\Src\Proto\Grpc\Testing\Messages::initOnce();
96 GPBUtil::checkEnum($var, \Grpc\Testing\PayloadType::class);
122 …eckRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Grpc\Testing\ResponseParameter…
148 GPBUtil::checkMessage($var, \Grpc\Testing\Payload::class);
174 GPBUtil::checkMessage($var, \Grpc\Testing\EchoStatus::class);
DTestServiceClient.php22 namespace Grpc\Testing;
46 public function EmptyCall(\Grpc\Testing\EmptyMessage $argument,
61 public function UnaryCall(\Grpc\Testing\SimpleRequest $argument,
78 public function CacheableUnaryCall(\Grpc\Testing\SimpleRequest $argument,
94 public function StreamingOutputCall(\Grpc\Testing\StreamingOutputCallRequest $argument,
152 public function UnimplementedCall(\Grpc\Testing\EmptyMessage $argument,
DSimpleRequest.php5 namespace Grpc\Testing;
116 \GPBMetadata\Src\Proto\Grpc\Testing\Messages::initOnce();
142 GPBUtil::checkEnum($var, \Grpc\Testing\PayloadType::class);
194 GPBUtil::checkMessage($var, \Grpc\Testing\Payload::class);
278 GPBUtil::checkMessage($var, \Grpc\Testing\BoolValue::class);
304 GPBUtil::checkMessage($var, \Grpc\Testing\EchoStatus::class);
330 GPBUtil::checkMessage($var, \Grpc\Testing\BoolValue::class);
DClientConfig.php5 namespace Grpc\Testing;
163 \GPBMetadata\Src\Proto\Grpc\Testing\Control::initOnce();
209 GPBUtil::checkEnum($var, \Grpc\Testing\ClientType::class);
231 GPBUtil::checkMessage($var, \Grpc\Testing\SecurityParams::class);
335 GPBUtil::checkEnum($var, \Grpc\Testing\RpcType::class);
361 GPBUtil::checkMessage($var, \Grpc\Testing\LoadParams::class);
383 GPBUtil::checkMessage($var, \Grpc\Testing\PayloadConfig::class);
405 GPBUtil::checkMessage($var, \Grpc\Testing\HistogramParams::class);
501 …eckRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Grpc\Testing\ChannelArg::class…
DPayloadConfig.php5 namespace Grpc\Testing;
30 \GPBMetadata\Src\Proto\Grpc\Testing\Payloads::initOnce();
50 GPBUtil::checkMessage($var, \Grpc\Testing\ByteBufferParams::class);
72 GPBUtil::checkMessage($var, \Grpc\Testing\SimpleProtoParams::class);
94 GPBUtil::checkMessage($var, \Grpc\Testing\ComplexProtoParams::class);
/external/grpc-grpc/src/php/tests/qps/
Dclient.php72 $proxystub = new Grpc\Testing\ProxyClientServiceClient($proxy_address, $proxystubopts);
73 list($config, $status) = $proxystub->GetConfig(new Grpc\Testing\PBVoid())->wait();
99 $stub = new Grpc\Testing\BenchmarkServiceClient(
101 $req = new Grpc\Testing\SimpleRequest();
103 $req->setResponseType(Grpc\Testing\PayloadType::COMPRESSABLE);
105 $payload = new Grpc\Testing\Payload();
106 $payload->setType(Grpc\Testing\PayloadType::COMPRESSABLE);
122 $histogram_result = new Grpc\Testing\HistogramData;
124 if ($config->getRpcType() == Grpc\Testing\RpcType::UNARY) {
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/filter/
DIgnoreCreatorProp1317Test.java11 static class Testing { class in IgnoreCreatorProp1317Test
17 public Testing() {} in Testing() method in IgnoreCreatorProp1317Test.Testing
20 public Testing(String ignore, String notIgnore) { in Testing() method in IgnoreCreatorProp1317Test.Testing
45 Testing testing = new Testing("shouldBeIgnored", "notIgnore"); in testThatJsonIgnoreWorksWithConstructorProperties()
/external/swiftshader/third_party/SPIRV-Tools/test/
Dext_inst.non_semantic_test.cpp34 %1 = OpExtInstImport "NonSemantic.Testing.ExtInst" in TEST_F()
41 %8 = OpExtInstImport "NonSemantic.Testing.AnotherUnknownExtInstSet" in TEST_F()
61 %1 = OpExtInstImport "NonSemantic.Testing.ExtInst" in TEST_F()
71 %1 = OpExtInstImport "NonSemantic.Testing.ExtInst" in TEST_F()
81 %1 = OpExtInstImport "NonSemantic.Testing.ExtInst" in TEST_F()
/external/angle/third_party/spirv-tools/src/test/
Dext_inst.non_semantic_test.cpp34 %1 = OpExtInstImport "NonSemantic.Testing.ExtInst" in TEST_F()
41 %8 = OpExtInstImport "NonSemantic.Testing.AnotherUnknownExtInstSet" in TEST_F()
60 %1 = OpExtInstImport "NonSemantic.Testing.ExtInst" in TEST_F()
70 %1 = OpExtInstImport "NonSemantic.Testing.ExtInst" in TEST_F()
80 %1 = OpExtInstImport "NonSemantic.Testing.ExtInst" in TEST_F()

12345678910>>...43