Home
last modified time | relevance | path

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

12345678910>>...301

/third_party/grpc/tools/bazelify_tests/
Ddockerimage_current_versions.bzl17 It makes the info from testing docker image *.current_version files
22 …ake_aarch64-linux.current_version": "docker://us-docker.pkg.dev/grpc-testing/testing-images-public…
23 …rake_arm64-darwin.current_version": "docker://us-docker.pkg.dev/grpc-testing/testing-images-public…
24 …ke_x64-mingw-ucrt.current_version": "docker://us-docker.pkg.dev/grpc-testing/testing-images-public…
25 …/rake_x64-mingw32.current_version": "docker://us-docker.pkg.dev/grpc-testing/testing-images-public…
26 …ck/rake_x86-linux.current_version": "docker://us-docker.pkg.dev/grpc-testing/testing-images-public…
27 …/rake_x86-mingw32.current_version": "docker://us-docker.pkg.dev/grpc-testing/testing-images-public…
28 …ake_x86_64-darwin.current_version": "docker://us-docker.pkg.dev/grpc-testing/testing-images-public…
29 …rake_x86_64-linux.current_version": "docker://us-docker.pkg.dev/grpc-testing/testing-images-public…
30 …aarch64_cross_x64.current_version": "docker://us-docker.pkg.dev/grpc-testing/testing-images-public…
[all …]
/third_party/grpc/src/php/tests/interop/GPBMetadata/Src/Proto/Grpc/Testing/
DTest.php3 # source: src/proto/grpc/testing/test.proto
5 namespace GPBMetadata\Src\Proto\Grpc\Testing;
17 \GPBMetadata\Src\Proto\Grpc\Testing\PBEmpty::initOnce();
18 \GPBMetadata\Src\Proto\Grpc\Testing\Messages::initOnce();
22 !src/proto/grpc/testing/test.proto grpc.testing%src/proto/grpc/testing/messages.proto2�
24 EmptyCall.grpc.testing.EmptyMessage.grpc.testing.EmptyMessageF
25 UnaryCall.grpc.testing.SimpleRequest.grpc.testing.SimpleResponseO
26 CacheableUnaryCall.grpc.testing.SimpleRequest.grpc.testing.SimpleResponsel
27 StreamingOutputCall(.grpc.testing.StreamingOutputCallRequest).grpc.testing.StreamingOutputCallRe…
28 StreamingInputCall\'.grpc.testing.StreamingInputCallRequest(.grpc.testing.StreamingInputCallResp…
[all …]
DMessages.php3 # source: src/proto/grpc/testing/messages.proto
5 namespace GPBMetadata\Src\Proto\Grpc\Testing;
20 %src/proto/grpc/testing/messages.proto grpc.testing"
24 type (2.grpc.testing.PayloadType
33 response_type (2.grpc.testing.PayloadType
36 payload ( 2.grpc.testing.Payload
40 response_compressed ( 2.grpc.testing.BoolValue1
41 response_status ( 2.grpc.testing.EchoStatus2
42 expect_compressed ( 2.grpc.testing.BoolValue
46 orca_per_query_report ( 2.grpc.testing.TestOrcaReport"�
[all …]
/third_party/grpc/src/ruby/pb/src/proto/grpc/testing/
Dtest_pb.rb3 # source: src/proto/grpc/testing/test.proto
7 require 'src/proto/grpc/testing/empty_pb'
8 require 'src/proto/grpc/testing/messages_pb'
11testing/test.proto\x12\x0cgrpc.testing\x1a\"src/proto/grpc/testing/empty.proto\x1a%src/proto/grpc/
17 module Testing module
Dmessages_pb.rb3 # source: src/proto/grpc/testing/messages.proto
8testing/messages.proto\x12\x0cgrpc.testing\"\x1a\n\tBoolValue\x12\r\n\x05value\x18\x01 \x01(\x08\"…
14 module Testing module
15 …BoolValue = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("grpc.testing.BoolValue").msg…
16 …Payload = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("grpc.testing.Payload").msgclass
17 …EchoStatus = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("grpc.testing.EchoStatus").m…
18 …SimpleRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("grpc.testing.SimpleReque…
19 …SimpleResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("grpc.testing.SimpleResp…
20 …Request = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("grpc.testing.StreamingInputCal…
21 …esponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("grpc.testing.StreamingInputCal…
[all …]
Dtest_services_pb.rb2 # Source: src/proto/grpc/testing/test.proto for package 'grpc.testing'
23 require 'src/proto/grpc/testing/test_pb'
26 module Testing module
36 self.service_name = 'grpc.testing.TestService'
39 rpc :EmptyCall, ::Grpc::Testing::Empty, ::Grpc::Testing::Empty
41 rpc :UnaryCall, ::Grpc::Testing::SimpleRequest, ::Grpc::Testing::SimpleResponse
45 rpc :CacheableUnaryCall, ::Grpc::Testing::SimpleRequest, ::Grpc::Testing::SimpleResponse
48 …rpc :StreamingOutputCall, ::Grpc::Testing::StreamingOutputCallRequest, stream(::Grpc::Testing::Str…
51 …rpc :StreamingInputCall, stream(::Grpc::Testing::StreamingInputCallRequest), ::Grpc::Testing::Stre…
55 …rpc :FullDuplexCall, stream(::Grpc::Testing::StreamingOutputCallRequest), stream(::Grpc::Testing::…
[all …]
/third_party/toybox/tests/
Dsed.test3 #testing "name" "command" "result" "infile" "stdin"
5 testing 'as cat' 'sed ""' "one\ntwo\nthree" "" "one\ntwo\nthree"
7 SKIP_HOST=1 testing 'sed - - twice' 'sed "" - -' "hello\n" "" "hello\n"
8 testing '-n' 'sed -n ""' "" "" "one\ntwo\nthree"
9 testing '-n p' 'sed -n p' "one\ntwo\nthree" "" "one\ntwo\nthree"
10 testing 'explicit pattern' 'sed -e p -n' "one\ntwo\nthree" "" \
14 testing '' 'sed -n 1p' "one\n" "" "one\ntwo\nthree"
15 testing '' 'sed 2p' "one\ntwo\ntwo\nthree" "" "one\ntwo\nthree"
16 testing '' 'sed -n 2p' "two\n" "" "one\ntwo\nthree"
17 testing '-n $p' 'sed -n \$p' "three" "" "one\ntwo\nthree"
[all …]
Dgrep.test3 [ -f testing.sh ] && . testing.sh
8 #testing "name" "command" "result" "infile" "stdin"
10 testing "-c" "grep -c 123 input" "3\n" "123\ncount 123\n123\nfasdfasdf" ""
15 testing "-l" "grep -l test foo foo2 foo3" "foo\nfoo2\n" "" ""
18 testing "-q" "grep -q test input && echo yes" "yes\n" "this is a test\n" ""
19 testing "-E" "grep -E '[0-9]' input" "1234123asdfas123123\n1\n" \
21 testing "-e" "grep -e '[0-9]' input" "1234123asdfas123123\n1\n" \
23 testing "-e -e" "grep -e one -e two -e three input" \
25 testing "-F" "grep -F is input" "this is test\nthis is test2\n" \
31 testing "-H" "grep -H is foo foo2 foo3" "foo:this is test\nfoo:this is test2\nfoo2:hello this is te…
[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 …]
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 …]
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 …]
Dprintf.test6 [ -f testing.sh ] && . testing.sh
8 #testing "name" "command" "result" "infile" "stdin"
13 testing "text" "$PRINTF TEXT" "TEXT" "" ""
14 testing "escapes" "$PRINTF 'one\ntwo\n\v\t\r\f\e\b\athree'" \
16 testing "%b escapes" "$PRINTF %b 'one\ntwo\n\v\t\r\f\e\b\athree'" \
18 testing "null" "$PRINTF 'x\0y' | od -An -tx1" ' 78 00 79\n' "" ""
19 testing "trailing slash" "$PRINTF 'abc\'" 'abc\' "" ""
20 testing "octal" "$PRINTF ' \1\002\429\045x'" ' \001\002"9%x' "" ""
21 testing "not octal" "$PRINTF '\9'" '\9' "" ""
22 testing "hex" "$PRINTF 'A\x1b\x2B\x3Q\xa' | od -An -tx1" \
[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 …]
Dreadlink.test3 [ -f testing.sh ] && . testing.sh
5 #testing "name" "command" "result" "infile" "stdin"
9 testing "missing" "readlink notfound || echo yes" "yes\n" "" ""
14 testing "file" "readlink file || echo yes" "yes\n" "" ""
15 testing "-f dir" "readlink -f ." "$APWD\n" "" ""
16 testing "-f missing" "readlink -f notfound" "$APWD/notfound\n" "" ""
19 testing "link" "readlink link" "notfound\n" "" ""
20 testing "links" "readlink link link" "notfound\nnotfound\n" "" ""
21 testing "link->missing" "readlink -f link" "$APWD/notfound\n" "" ""
23 testing "stays relative" "readlink link" "../../\n" "" ""
[all …]
Dtail.test3 [ -f testing.sh ] && . testing.sh
5 #testing "name" "command" "result" "infile" "stdin"
9 testing "tail" "tail && echo yes" "oneyes\n" "" "one"
10 testing "file" "tail file1" \
12 testing "-n in bounds" "tail -n 3 file1" "nine\nten\neleven\n" "" ""
13 testing "-n out of bounds" "tail -n 999 file1" "$BIGTEST" "" ""
14 testing "-n+ in bounds" "tail -n +3 file1" \
16 testing "-n+ outof bounds" "tail -n +999 file1" "" "" ""
17 testing "-c in bounds" "tail -c 27 file1" \
19 testing "-c out of bounds" "tail -c 999 file1" "$BIGTEST" "" ""
[all …]
/third_party/grpc/src/ruby/qps/src/proto/grpc/testing/
Dmessages_pb.rb3 # source: src/proto/grpc/testing/messages.proto
8testing/messages.proto\x12\x0cgrpc.testing\"\x1a\n\tBoolValue\x12\r\n\x05value\x18\x01 \x01(\x08\"…
14 module Testing module
15 …BoolValue = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("grpc.testing.BoolValue").msg…
16 …Payload = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("grpc.testing.Payload").msgclass
17 …EchoStatus = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("grpc.testing.EchoStatus").m…
18 …SimpleRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("grpc.testing.SimpleReque…
19 …SimpleResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("grpc.testing.SimpleResp…
20 …Request = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("grpc.testing.StreamingInputCal…
21 …esponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("grpc.testing.StreamingInputCal…
[all …]
Dcontrol_pb.rb3 # source: src/proto/grpc/testing/control.proto
7 require 'src/proto/grpc/testing/payloads_pb'
8 require 'src/proto/grpc/testing/stats_pb'
12testing/control.proto\x12\x0cgrpc.testing\x1a%src/proto/grpc/testing/payloads.proto\x1a\"src/proto…
18 module Testing module
19 …PoissonParams = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("grpc.testing.PoissonPara…
20 …ClosedLoopParams = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("grpc.testing.ClosedLo…
21 …LoadParams = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("grpc.testing.LoadParams").m…
22 …SecurityParams = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("grpc.testing.SecurityPa…
23 …ChannelArg = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("grpc.testing.ChannelArg").m…
[all …]
/third_party/grpc/test/cpp/ext/filters/census/
Dstats_plugin_end2end_test.cc32 #include "opencensus/stats/testing/test_utils.h"
39 #include "src/proto/grpc/testing/echo.grpc.pb.h"
44 namespace testing { namespace
51 using ::opencensus::stats::testing::TestUtils;
106 ::testing::UnorderedElementsAre(::testing::Pair( in TEST_F()
107 ::testing::ElementsAre(client_method_name_, TEST_TAG_VALUE), 17))); in TEST_F()
110 ::testing::UnorderedElementsAre(::testing::Pair( in TEST_F()
111 ::testing::ElementsAre(server_method_name_), 17))); in TEST_F()
115 ::testing::Pair(::testing::ElementsAre("OK", TEST_TAG_VALUE), 1), in TEST_F()
116 ::testing::Pair(::testing::ElementsAre("CANCELLED", TEST_TAG_VALUE), 1), in TEST_F()
[all …]
/third_party/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 {
61 return "grpc.testing.ServiceA";
67 …MethodA1(::grpc::ClientContext* context, const ::grpc::testing::Request& request, ::grpc::testing:…
68 …ResponseReaderInterface< ::grpc::testing::Response>> AsyncMethodA1(::grpc::ClientContext* context,…
69 …return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::grpc::testing::Response>>(As…
71 …onseReaderInterface< ::grpc::testing::Response>> PrepareAsyncMethodA1(::grpc::ClientContext* conte…
72 …return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::grpc::testing::Response>>(Pr…
79 …::grpc::ClientWriterInterface< ::grpc::testing::Request>> MethodA2(::grpc::ClientContext* context,…
[all …]
Dcompiler_test_mock_golden3 // source: src/proto/grpc/testing/compiler_test.proto
8 #include "src/proto/grpc/testing/compiler_test.pb.h"
9 #include "src/proto/grpc/testing/compiler_test.grpc.pb.h"
15 namespace testing {
19 …::Status(::grpc::ClientContext* context, const ::grpc::testing::Request& request, ::grpc::testing:…
20 …ntAsyncResponseReaderInterface< ::grpc::testing::Response>*(::grpc::ClientContext* context, const …
21 …ntAsyncResponseReaderInterface< ::grpc::testing::Response>*(::grpc::ClientContext* context, const …
22 …aw, ::grpc::ClientWriterInterface< ::grpc::testing::Request>*(::grpc::ClientContext* context, ::gr…
23 …:grpc::ClientAsyncWriterInterface< ::grpc::testing::Request>*(::grpc::ClientContext* context, ::gr…
24 …:grpc::ClientAsyncWriterInterface< ::grpc::testing::Request>*(::grpc::ClientContext* context, ::gr…
[all …]
/third_party/grpc/src/php/tests/interop/Grpc/Testing/
DTestServiceStub.php22 namespace Grpc\Testing;
32 * @param \Grpc\Testing\EmptyMessage $request client request
34 * @return \Grpc\Testing\EmptyMessage for response data, null if if error occurred
38 \Grpc\Testing\EmptyMessage $request,
40 ): ?\Grpc\Testing\EmptyMessage {
47 * @param \Grpc\Testing\SimpleRequest $request client request
49 * @return \Grpc\Testing\SimpleResponse for response data, null if if error occurred
53 \Grpc\Testing\SimpleRequest $request,
55 ): ?\Grpc\Testing\SimpleResponse {
64 * @param \Grpc\Testing\SimpleRequest $request client request
[all …]
/third_party/protobuf/third_party/abseil-cpp/absl/log/internal/
Dtest_matchers.h42 // `::testing::EndsWith`) need help to match `absl::string_view`.
43 ::testing::Matcher<absl::string_view> AsString(
44 const ::testing::Matcher<const std::string&>& str_matcher);
47 ::testing::Matcher<const absl::LogEntry&> SourceFilename(
48 const ::testing::Matcher<absl::string_view>& source_filename);
49 ::testing::Matcher<const absl::LogEntry&> SourceBasename(
50 const ::testing::Matcher<absl::string_view>& source_basename);
55 ::testing::Matcher<const absl::LogEntry&> SourceLine(
56 const ::testing::Matcher<int>& source_line);
57 ::testing::Matcher<const absl::LogEntry&> Prefix(
[all …]
/third_party/mindspore/mindspore-src/source/tests/st/ops/gpu/
Dtest_repeat_elements_op.py49 np.testing.assert_array_equal(np_out, ms_out)
61 np.testing.assert_array_equal(np_out, ms_out)
65 np.testing.assert_array_equal(np_out, ms_out)
77 np.testing.assert_array_equal(np_out, ms_out)
89 np.testing.assert_array_equal(np_out, ms_out)
101 np.testing.assert_array_equal(np_out, ms_out)
105 np.testing.assert_array_equal(np_out, ms_out)
117 np.testing.assert_array_equal(np_out, ms_out)
121 np.testing.assert_array_equal(np_out, ms_out)
133 np.testing.assert_array_equal(np_out, ms_out)
[all …]
/third_party/grpc/src/php/tests/qps/generated_code/Grpc/Testing/
DTestServiceClient.php22 namespace Grpc\Testing;
41 * @param \Grpc\Testing\EmptyMessage $argument input argument
44 * @return \Grpc\Testing\EmptyMessage
46 public function EmptyCall(\Grpc\Testing\EmptyMessage $argument,
48 return $this->_simpleRequest('/grpc.testing.TestService/EmptyCall',
50 ['\Grpc\Testing\EmptyMessage', 'decode'],
56 * @param \Grpc\Testing\SimpleRequest $argument input argument
59 * @return \Grpc\Testing\SimpleResponse
61 public function UnaryCall(\Grpc\Testing\SimpleRequest $argument,
63 return $this->_simpleRequest('/grpc.testing.TestService/UnaryCall',
[all …]

12345678910>>...301