Home
last modified time | relevance | path

Searched full:testing (Results 1 – 25 of 12044) sorted by relevance

12345678910>>...482

/external/tensorflow/tensorflow/lite/testing/
Dgenerate_examples_lib.py21 bazel run //tensorflow/lite/testing:generate_examples
41 from tensorflow.lite.testing.op_tests.abs import make_abs_tests
42 from tensorflow.lite.testing.op_tests.add_n import make_add_n_tests
43 from tensorflow.lite.testing.op_tests.arg_min_max import make_arg_min_max_tests
44 from tensorflow.lite.testing.op_tests.atan2 import make_atan2_tests
45 from tensorflow.lite.testing.op_tests.batch_to_space_nd import make_batch_to_space_nd_tests
46 from tensorflow.lite.testing.op_tests.batchmatmul import make_batchmatmul_tests
47 from tensorflow.lite.testing.op_tests.binary_op import make_add_tests, make_div_tests, make_sub_tes…
48 from tensorflow.lite.testing.op_tests.broadcast_args import make_broadcast_args_tests
49 from tensorflow.lite.testing.op_tests.broadcast_gradient_args import make_broadcast_gradient_args_t…
[all …]
/external/grpc-grpc/test/cpp/ext/filters/census/
Dstats_plugin_end2end_test.cc29 #include "opencensus/stats/testing/test_utils.h"
31 #include "src/proto/grpc/testing/echo.grpc.pb.h"
35 namespace testing { namespace
42 using ::opencensus::stats::testing::TestUtils;
59 class StatsPluginEnd2EndTest : public ::testing::Test {
89 const std::string client_method_name_ = "grpc.testing.EchoTestService/Echo";
90 const std::string server_method_name_ = "grpc.testing.EchoTestService/Echo";
144 ::testing::UnorderedElementsAre(::testing::Pair( in TEST_F()
145 ::testing::ElementsAre(client_method_name_), 17))); in TEST_F()
147 ::testing::UnorderedElementsAre(::testing::Pair( in TEST_F()
[all …]
/external/grpc-grpc/src/ruby/qps/src/proto/grpc/testing/
Dcontrol_pb.rb2 # source: src/proto/grpc/testing/control.proto
6 require 'src/proto/grpc/testing/payloads_pb'
7 require 'src/proto/grpc/testing/stats_pb'
9 add_message "grpc.testing.PoissonParams" do
12 add_message "grpc.testing.ClosedLoopParams" do
14 add_message "grpc.testing.LoadParams" do
16 optional :closed_loop, :message, 1, "grpc.testing.ClosedLoopParams"
17 optional :poisson, :message, 2, "grpc.testing.PoissonParams"
20 add_message "grpc.testing.SecurityParams" do
25 add_message "grpc.testing.ChannelArg" do
[all …]
Dmessages_pb.rb2 # source: src/proto/grpc/testing/messages.proto
7 add_message "grpc.testing.BoolValue" do
10 add_message "grpc.testing.Payload" do
11 optional :type, :enum, 1, "grpc.testing.PayloadType"
14 add_message "grpc.testing.EchoStatus" do
18 add_message "grpc.testing.SimpleRequest" do
19 optional :response_type, :enum, 1, "grpc.testing.PayloadType"
21 optional :payload, :message, 3, "grpc.testing.Payload"
24 optional :response_compressed, :message, 6, "grpc.testing.BoolValue"
25 optional :response_status, :message, 7, "grpc.testing.EchoStatus"
[all …]
/external/toybox/tests/
Dsh.test35 # Testing shell corner cases _within_ a shell script is kind of hard.
37 [ -f testing.sh ] && . testing.sh
41 #testing "name" "command" "result" "infile" "stdin"
64 testing '-c "" exit status 0' '$SH -c "" && echo $?' '0\n' '' ''
65 testing '-c args' "\$SH -c 'echo \$0,\$1,\$2,\$3' one two three four five" \
67 testing '-c args2' "\$SH -c 'echo \${10}' a b c d e f g h i j k l" "k\n" "" ""
68 testing '-c arg split' \
71 testing '-c arg split2' \
74 testing '-c arg count' "$SH -c 'echo \$#' 9 8 7 6 1 2 3 4" "7\n" "" ""
75 testing "exec3" '$C -c "{ exec readlink /proc/self/fd/0;} < /proc/self/exe"' \
[all …]
Dexpr.test3 [ -f testing.sh ] && . testing.sh
5 testing "integer" "expr 5" "5\n" "" ""
6 testing "integer negative" "expr -5" "-5\n" "" ""
7 testing "string" "expr astring" "astring\n" "" ""
8 testing "addition" "expr 1 + 3" "4\n" "" ""
9 testing "5 + 6 * 3" "expr 5 + 6 \* 3" "23\n" "" ""
10 testing "( 5 + 6 ) * 3" "expr \( 5 + 6 \) \* 3" "33\n" "" ""
11 testing ">" "expr 3 \> 2" "1\n" "" ""
12 testing "* / same priority" "expr 4 \* 3 / 2" "6\n" "" ""
13 testing "/ * same priority" "expr 3 / 2 \* 4" "4\n" "" ""
[all …]
Dfind.test3 [ -f testing.sh ] && . testing.sh
19 #testing "name" "command" "result" "infile" "stdin"
21 # Testing operators
23 testing "-type l -a -type d -o -type p" \
25 testing "-type l -type d -o -type p" "find dir -type l -type d -o -type p" \
27 testing "-type l -o -type d -a -type p" \
29 testing "-type l -o -type d -type p" "find dir -type l -o -type d -type p" \
31 testing "-type l ( -type d -o -type l )" \
33 testing "extra parentheses" \
36 testing "( -type p -o -type d ) -type p" \
[all …]
Dseq.test3 [ -f testing.sh ] && . testing.sh
5 #testing "name" "command" "result" "infile" "stdin"
7 testing "(exit with error)" "seq 2> /dev/null || echo yes" "yes\n" "" ""
8 testing "(exit with error)" "seq 1 2 3 4 2> /dev/null || echo yes" \
10 testing "one argument" "seq 3" "1\n2\n3\n" "" ""
11 testing "two arguments" "seq 5 7" "5\n6\n7\n" "" ""
12 testing "two arguments reversed" "seq 7 5" "" "" ""
13 testing "two arguments equal" "seq 3 3" "3\n" "" ""
14 testing "two arguments equal, arbitrary negative step" "seq 1 -15 1" \
16 testing "two arguments equal, arbitrary positive step" "seq 1 +15 1" \
[all …]
Ddd.test6 [ -f testing.sh ] && . testing.sh
11 #testing "name" "command" "result" "infile" "stdin"
14 testing "count=2" "dd if=input count=2 ibs=1 $opt" "hi" "high\n" ""
15 testing "count= 2" "dd if=input 'count= 2' ibs=1 $opt" "hi" "high\n" ""
16 toyonly testing "count=0x2" "dd if=input 'count=0x2' ibs=1 $opt" "hi" \
18 testing "count=-2" "dd if=input 'count=-2' ibs=1 2>/dev/null || echo errored" "errored\n" "" ""
20 testing "if=(file)" "dd if=input $opt" "I WANT\n" "I WANT\n" ""
21 testing "of=(file)" "dd of=file $opt && cat file" "I WANT\n" "" "I WANT\n"
22 testing "if=file of=file" "dd if=input of=foo $opt && cat foo && rm -f foo" \
24 testing "if=file | dd of=file" "dd if=input $opt | dd of=foo $opt &&
[all …]
Dxargs.test3 [ -f testing.sh ] && . testing.sh
5 #testing "name" "command" "result" "infile" "stdin"
7 testing "xargs" "xargs && echo yes" "hello\nyes\n" "" "hello"
8 testing "spaces" "xargs" \
11 testing "-n 0" "xargs -n 0 2>/dev/null || echo ok" "ok\n" \
13 testing "-n 1" "xargs -n 1" "one\n" "" "one\n"
14 testing "-n 2" "xargs -n 2" "one two\nthree\n" "" "one \ntwo\n three"
15 testing "-n exact match" "xargs -n 3" "one two three\n" "" "one two three"
16 testing "xargs2" "xargs -n2" "one two\nthree four\nfive\n" "" \
18 testing "-s too long" "xargs -s 9 echo 2>/dev/null; echo \$?" \
[all …]
/external/tensorflow/tensorflow/compiler/xla/service/
Dhlo_matchers.h28 namespace testing {
30 class HloMatcher : public ::testing::MatcherInterface<const HloInstruction*> {
33 std::vector<::testing::Matcher<const HloInstruction*>> operands) in HloMatcher()
37 ::testing::MatchResultListener* listener) const override;
43 std::vector<::testing::Matcher<const HloInstruction*>> operands_;
54 ::testing::MatchResultListener* listener) const override;
65 std::vector<::testing::Matcher<const HloInstruction*>> operands) in HloComparisonMatcher()
69 ::testing::MatchResultListener* listener) const override;
79 HloGetTupleElementMatcher(::testing::Matcher<const HloInstruction*> operand, in HloGetTupleElementMatcher()
85 ::testing::MatchResultListener* listener) const override;
[all …]
/external/rust/crates/grpcio-sys/grpc/test/core/security/
Drbac_translator_test.cc56 ::testing::StartsWith("Failed to parse SDK authorization policy.")); in TEST()
182 ::testing::ElementsAre(::testing::Pair( in TEST()
184 ::testing::AllOf( in TEST()
185 ::testing::Field( in TEST()
187 ::testing::Field(&Rbac::Permission::type, in TEST()
189 ::testing::Field( in TEST()
191 ::testing::Field(&Rbac::Principal::type, in TEST()
212 ::testing::ElementsAre(::testing::Pair( in TEST()
214 ::testing::AllOf( in TEST()
215 ::testing::Field( in TEST()
[all …]
/external/linux-kselftest/
DAndroid.bp108 srcs: ["tools/testing/selftests/filesystems/binderfs/binderfs_test.c"],
117 "tools/testing/selftests/breakpoints/step_after_suspend_test.c",
129 "tools/testing/selftests/breakpoints/breakpoint_test_arm64.c",
134 "tools/testing/selftests/breakpoints/breakpoint_test.c",
139 "tools/testing/selftests/breakpoints/breakpoint_test.c",
150 "tools/testing/selftests/capabilities/test_execve.c",
151 "tools/testing/selftests/capabilities/validate_cap.c",
161 src: "tools/testing/selftests/cpu-hotplug/cpu-on-off-test.sh",
171 "tools/testing/selftests/efivarfs/open-unlink.c",
172 "tools/testing/selftests/efivarfs/create-read.c",
[all …]
/external/grpc-grpc/src/ruby/pb/src/proto/grpc/testing/
Dmessages_pb.rb2 # source: src/proto/grpc/testing/messages.proto
7 add_message "grpc.testing.BoolValue" do
10 add_message "grpc.testing.Payload" do
11 optional :type, :enum, 1, "grpc.testing.PayloadType"
14 add_message "grpc.testing.EchoStatus" do
18 add_message "grpc.testing.SimpleRequest" do
19 optional :response_type, :enum, 1, "grpc.testing.PayloadType"
21 optional :payload, :message, 3, "grpc.testing.Payload"
24 optional :response_compressed, :message, 6, "grpc.testing.BoolValue"
25 optional :response_status, :message, 7, "grpc.testing.EchoStatus"
[all …]
/external/grpc-grpc-java/interop-testing/src/generated/main/grpc/io/grpc/testing/integration/
DTestServiceGrpc.java1 package io.grpc.testing.integration;
26 comments = "Source: grpc/testing/test.proto")
31 public static final String SERVICE_NAME = "grpc.testing.TestService";
34 private static volatile io.grpc.MethodDescriptor<io.grpc.testing.integration.EmptyProtos.Empty,
35 io.grpc.testing.integration.EmptyProtos.Empty> getEmptyCallMethod;
39 requestType = io.grpc.testing.integration.EmptyProtos.Empty.class,
40 responseType = io.grpc.testing.integration.EmptyProtos.Empty.class,
42 public static io.grpc.MethodDescriptor<io.grpc.testing.integration.EmptyProtos.Empty,
43 io.grpc.testing.integration.EmptyProtos.Empty> getEmptyCallMethod() { in getEmptyCallMethod()
44 …io.grpc.MethodDescriptor<io.grpc.testing.integration.EmptyProtos.Empty, io.grpc.testing.integratio… in getEmptyCallMethod()
[all …]
/external/grpc-grpc/test/cpp/codegen/
Dcompiler_test_golden3 // source: src/proto/grpc/testing/compiler_test.proto
27 #include "src/proto/grpc/testing/compiler_test.pb.h"
49 namespace testing {
59 return "grpc.testing.ServiceA";
65 …MethodA1(::grpc::ClientContext* context, const ::grpc::testing::Request& request, ::grpc::testing:…
66 …ResponseReaderInterface< ::grpc::testing::Response>> AsyncMethodA1(::grpc::ClientContext* context,…
67 …return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::grpc::testing::Response>>(As…
69 …onseReaderInterface< ::grpc::testing::Response>> PrepareAsyncMethodA1(::grpc::ClientContext* conte…
70 …return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::grpc::testing::Response>>(Pr…
77 …::grpc::ClientWriterInterface< ::grpc::testing::Request>> MethodA2(::grpc::ClientContext* context,…
[all …]
/external/libaom/test/
Dcdef_test.cc39 class CDEFBlockTest : public ::testing::TestWithParam<cdef_dir_param_t> {
146 // If cdef and ref_cdef are the same, we're just testing in test_cdef()
214 class CDEFFindDirTest : public ::testing::TestWithParam<find_dir_param_t> {
305 : public ::testing::TestWithParam<find_dir_dual_param_t> {
467 ::testing::Combine(::testing::ValuesIn(kCdefFilterFuncSse2),
468 ::testing::ValuesIn(kCdefFilterFuncC),
469 ::testing::Values(BLOCK_4X4, BLOCK_4X8, BLOCK_8X4,
471 ::testing::Range(0, 16), ::testing::Values(8)));
474 ::testing::Combine(::testing::ValuesIn(kCdefFilterHighbdFuncSse2),
475 ::testing::ValuesIn(kCdefFilterHighbdFuncC),
[all …]
/external/grpc-grpc-java/compiler/src/testNano/golden/
DTestService.java.txt1 package io.grpc.testing.compiler.nano;
27 comments = "Source: grpc/testing/compiler/test.proto")
32 public static final String SERVICE_NAME = "grpc.testing.compiler.TestService";
37 private static volatile io.grpc.MethodDescriptor<io.grpc.testing.compiler.nano.Test.SimpleRequest,
38 io.grpc.testing.compiler.nano.Test.SimpleResponse> getUnaryCallMethod;
40 public static io.grpc.MethodDescriptor<io.grpc.testing.compiler.nano.Test.SimpleRequest,
41 io.grpc.testing.compiler.nano.Test.SimpleResponse> getUnaryCallMethod() {
42 …io.grpc.MethodDescriptor<io.grpc.testing.compiler.nano.Test.SimpleRequest, io.grpc.testing.compile…
47 …io.grpc.MethodDescriptor.<io.grpc.testing.compiler.nano.Test.SimpleRequest, io.grpc.testing.compil…
50 "grpc.testing.compiler.TestService", "UnaryCall"))
[all …]
/external/grpc-grpc-java/compiler/src/test/golden/
DTestService.java.txt1 package io.grpc.testing.compiler;
25 comments = "Source: grpc/testing/compiler/test.proto")
30 public static final String SERVICE_NAME = "grpc.testing.compiler.TestService";
33 private static volatile io.grpc.MethodDescriptor<io.grpc.testing.compiler.Test.SimpleRequest,
34 io.grpc.testing.compiler.Test.SimpleResponse> getUnaryCallMethod;
38 requestType = io.grpc.testing.compiler.Test.SimpleRequest.class,
39 responseType = io.grpc.testing.compiler.Test.SimpleResponse.class,
41 public static io.grpc.MethodDescriptor<io.grpc.testing.compiler.Test.SimpleRequest,
42 io.grpc.testing.compiler.Test.SimpleResponse> getUnaryCallMethod() {
43 …io.grpc.MethodDescriptor<io.grpc.testing.compiler.Test.SimpleRequest, io.grpc.testing.compiler.Tes…
[all …]
/external/grpc-grpc-java/compiler/src/testLite/golden/
DTestService.java.txt1 package io.grpc.testing.compiler;
25 comments = "Source: grpc/testing/compiler/test.proto")
30 public static final String SERVICE_NAME = "grpc.testing.compiler.TestService";
33 private static volatile io.grpc.MethodDescriptor<io.grpc.testing.compiler.Test.SimpleRequest,
34 io.grpc.testing.compiler.Test.SimpleResponse> getUnaryCallMethod;
38 requestType = io.grpc.testing.compiler.Test.SimpleRequest.class,
39 responseType = io.grpc.testing.compiler.Test.SimpleResponse.class,
41 public static io.grpc.MethodDescriptor<io.grpc.testing.compiler.Test.SimpleRequest,
42 io.grpc.testing.compiler.Test.SimpleResponse> getUnaryCallMethod() {
43 …io.grpc.MethodDescriptor<io.grpc.testing.compiler.Test.SimpleRequest, io.grpc.testing.compiler.Tes…
[all …]
/external/flac/test/
Dpicture.ok4 testing grabbag__picture_parse_specification("")... OK (failed as expected, error: error opening pi…
5 testing grabbag__picture_parse_specification("||||")... OK (failed as expected: error opening pictu…
6 testing grabbag__picture_parse_specification("|image/gif|||")... OK (failed as expected: error open…
7 testing grabbag__picture_parse_specification("|image/gif|desc|320|0.gif")... OK (failed as expected…
8 testing grabbag__picture_parse_specification("|image/gif|desc|320x240|0.gif")... OK (failed as expe…
9 testing grabbag__picture_parse_specification("|image/gif|desc|320x240x9|")... OK (failed as expecte…
10 testing grabbag__picture_parse_specification("|image/gif|desc|320x240x9/2345|0.gif")... OK (failed …
11 testing grabbag__picture_parse_specification("1|-->|desc|32x24x9|0.gif")... OK (failed as expected:…
12 testing grabbag__picture_parse_specification("|-->|desc||http://blah.blah.blah/z.gif")... OK (faile…
13 testing grabbag__picture_parse_specification("|-->|desc|320x240x9|http://blah.blah.blah/z.gif")... …
[all …]
/external/grpc-grpc-java/testing-proto/src/generated/main/grpc/io/grpc/testing/protobuf/
DSimpleServiceGrpc.java1 package io.grpc.testing.protobuf;
25 comments = "Source: io/grpc/testing/protobuf/simpleservice.proto")
30 public static final String SERVICE_NAME = "grpc.testing.SimpleService";
33 private static volatile io.grpc.MethodDescriptor<io.grpc.testing.protobuf.SimpleRequest,
34 io.grpc.testing.protobuf.SimpleResponse> getUnaryRpcMethod;
38 requestType = io.grpc.testing.protobuf.SimpleRequest.class,
39 responseType = io.grpc.testing.protobuf.SimpleResponse.class,
41 public static io.grpc.MethodDescriptor<io.grpc.testing.protobuf.SimpleRequest,
42 io.grpc.testing.protobuf.SimpleResponse> getUnaryRpcMethod() { in getUnaryRpcMethod()
43 …io.grpc.MethodDescriptor<io.grpc.testing.protobuf.SimpleRequest, io.grpc.testing.protobuf.SimpleRe… in getUnaryRpcMethod()
[all …]
/external/cronet/net/third_party/quiche/src/quiche/http2/adapter/
Dnghttp2_test_utils.cc16 const testing::Matcher<int> flags) in FrameHeaderMatcher()
20 testing::MatchResultListener* listener) const { in Match()
53 const testing::Matcher<int> flags_;
58 public testing::MatcherInterface<const nghttp2_frame_hd*> {
61 const testing::Matcher<int> flags) in PointerToFrameHeaderMatcher()
65 testing::MatchResultListener* listener) const override { in MatchAndExplain()
80 public testing::MatcherInterface<const nghttp2_frame_hd&> {
83 const testing::Matcher<int> flags) in ReferenceToFrameHeaderMatcher()
87 testing::MatchResultListener* listener) const override { in MatchAndExplain()
100 class DataMatcher : public testing::MatcherInterface<const nghttp2_frame*> {
[all …]
/external/grpc-grpc-java/interop-testing/src/generated/main/java/io/grpc/testing/integration/
DTest.java2 // source: grpc/testing/test.proto
4 package io.grpc.testing.integration;
26 "\n\027grpc/testing/test.proto\022\014grpc.testing\032" +
27 "\030grpc/testing/empty.proto\032\033grpc/testing/" +
29 "all\022\023.grpc.testing.Empty\032\023.grpc.testing." +
30 "Empty\022F\n\tUnaryCall\022\033.grpc.testing.Simple" +
31 "Request\032\034.grpc.testing.SimpleResponse\022O\n" +
32 "\022CacheableUnaryCall\022\033.grpc.testing.Simpl" +
33 "eRequest\032\034.grpc.testing.SimpleResponse\022l" +
34 "\n\023StreamingOutputCall\022(.grpc.testing.Str" +
[all …]
/external/grpc-grpc/test/cpp/end2end/
DBUILD33 "//src/proto/grpc/testing:echo_proto",
49 "//src/proto/grpc/testing:echo_messages_proto",
50 "//src/proto/grpc/testing:echo_proto",
51 "//src/proto/grpc/testing/duplicate:echo_duplicate_proto",
71 "//src/proto/grpc/testing:echo_messages_proto",
72 "//src/proto/grpc/testing:echo_proto",
73 "//src/proto/grpc/testing/duplicate:echo_duplicate_proto",
92 "//src/proto/grpc/testing:echo_messages_proto",
93 "//src/proto/grpc/testing:echo_proto",
94 "//src/proto/grpc/testing/duplicate:echo_duplicate_proto",
[all …]

12345678910>>...482