Searched full:testing (Results 1 – 25 of 9040) sorted by relevance
12345678910>>...362
29 #include "opencensus/stats/testing/test_utils.h"31 #include "src/proto/grpc/testing/echo.grpc.pb.h"35 namespace testing { namespace42 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 …]
2 # source: src/proto/grpc/testing/control.proto6 require 'src/proto/grpc/testing/payloads_pb'7 require 'src/proto/grpc/testing/stats_pb'9 add_message "grpc.testing.PoissonParams" do12 add_message "grpc.testing.ClosedLoopParams" do14 add_message "grpc.testing.LoadParams" do16 optional :closed_loop, :message, 1, "grpc.testing.ClosedLoopParams"17 optional :poisson, :message, 2, "grpc.testing.PoissonParams"20 add_message "grpc.testing.SecurityParams" do25 add_message "grpc.testing.ChannelArg" do[all …]
2 # source: src/proto/grpc/testing/messages.proto7 add_message "grpc.testing.BoolValue" do10 add_message "grpc.testing.Payload" do11 optional :type, :enum, 1, "grpc.testing.PayloadType"14 add_message "grpc.testing.EchoStatus" do18 add_message "grpc.testing.SimpleRequest" do19 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 …]
3 #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 …]
3 [ -f testing.sh ] && . testing.sh8 #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 …]
3 [ -f testing.sh ] && . testing.sh5 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 …]
6 [ -f testing.sh ] && . testing.sh8 #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 …]
3 [ -f testing.sh ] && . testing.sh5 #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 …]
3 [ -f testing.sh ] && . testing.sh19 #testing "name" "command" "result" "infile" "stdin"21 # Testing operators23 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 …]
6 [ -f testing.sh ] && . testing.sh11 #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 SKIP_HOST=1 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 …]
67 "tools/testing/selftests/breakpoints/step_after_suspend_test.c",76 "tools/testing/selftests/breakpoints/breakpoint_test_arm64.c",81 "tools/testing/selftests/breakpoints/breakpoint_test.c",92 "tools/testing/selftests/capabilities/test_execve.c",93 "tools/testing/selftests/capabilities/validate_cap.c",103 src: "tools/testing/selftests/cpu-hotplug/cpu-on-off-test.sh",113 "tools/testing/selftests/efivarfs/open-unlink.c",114 "tools/testing/selftests/efivarfs/create-read.c",122 src: "tools/testing/selftests/efivarfs/efivarfs.sh",132 "tools/testing/selftests/exec/execveat.c",[all …]
1 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 …]
25 namespace testing {27 class HloMatcher : public ::testing::MatcherInterface<const HloInstruction*> {30 std::vector<::testing::Matcher<const HloInstruction*>> operands) in HloMatcher()34 ::testing::MatchResultListener* listener) const override;40 std::vector<::testing::Matcher<const HloInstruction*>> operands_;51 ::testing::MatchResultListener* listener) const override;62 std::vector<::testing::Matcher<const HloInstruction*>> operands) in HloComparisonMatcher()66 ::testing::MatchResultListener* listener) const override;76 HloGetTupleElementMatcher(::testing::Matcher<const HloInstruction*> operand, in HloGetTupleElementMatcher()82 ::testing::MatchResultListener* listener) const override;[all …]
3 // source: src/proto/grpc/testing/compiler_test.proto27 #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 …]
... com/google/common/util/concurrent/testing/ com/google/common/escape/ com ...
1 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 …]
1 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 …]
12 *!testing::internal::HandleSehExceptionsInMethodIfSupported<testing::Test,void>22 *!testing::internal::HandleSehExceptionsInMethodIfSupported<>32 *!testing::internal::HandleSehExceptionsInMethodIfSupported<>42 *!testing::internal::HandleSehExceptionsInMethodIfSupported<>52 *!testing::internal::HandleSehExceptionsInMethodIfSupported<>60 *!testing::internal::HandleSehExceptionsInMethodIfSupported<>68 *!testing::internal::HandleSehExceptionsInMethodIfSupported<>75 *!testing::internal::HandleSehExceptionsInMethodIfSupported<testing::Test,void>85 *!testing::internal::HandleSehExceptionsInMethodIfSupported<testing::Test,void>102 *!testing::internal::HandleSehExceptionsInMethodIfSupported<>[all …]
1 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 …]
16 package com.google.common.testing;19 return "com.google.common.testing.testModule"; in getModuleName()22 …com.google.common.testing.EqualsTesterTest testCase = new com.google.common.testing.EqualsTesterTe… in testAddEqualObjectWithOArgConstructor()28 …com.google.common.testing.EqualsTesterTest testCase = new com.google.common.testing.EqualsTesterTe… in testAddNullEqualObject()34 …com.google.common.testing.EqualsTesterTest testCase = new com.google.common.testing.EqualsTesterTe… in testAddNullReference()40 …com.google.common.testing.EqualsTesterTest testCase = new com.google.common.testing.EqualsTesterTe… in testAddTwoEqualObjectsAtOnceWithNull()46 …com.google.common.testing.EqualsTesterTest testCase = new com.google.common.testing.EqualsTesterTe… in testEqualityGroups()52 …com.google.common.testing.EqualsTesterTest testCase = new com.google.common.testing.EqualsTesterTe… in testInvalidEqualsIncompatibleClass()58 …com.google.common.testing.EqualsTesterTest testCase = new com.google.common.testing.EqualsTesterTe… in testInvalidEqualsNull()64 …com.google.common.testing.EqualsTesterTest testCase = new com.google.common.testing.EqualsTesterTe… in testInvalidHashCode()[all …]
2 // source: grpc/testing/test.proto4 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 …]
33 "//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 …]
31 typedef ::testing::tuple<cdef_filter_block_func, cdef_filter_block_func,35 class CDEFBlockTest : public ::testing::TestWithParam<cdef_dir_param_t> {120 // If cdef and ref_cdef are the same, we're just testing in test_cdef()188 typedef ::testing::tuple<find_dir_t, find_dir_t> find_dir_param_t;190 class CDEFFindDirTest : public ::testing::TestWithParam<find_dir_param_t> {288 using ::testing::make_tuple;297 ::testing::Combine(::testing::Values(&cdef_filter_block_sse2),298 ::testing::Values(&cdef_filter_block_c),299 ::testing::Values(BLOCK_4X4, BLOCK_4X8, BLOCK_8X4,301 ::testing::Range(0, 16), ::testing::Range(8, 13, 2)));[all …]