Home
last modified time | relevance | path

Searched refs:Grpc (Results 1 – 25 of 589) sorted by relevance

12345678910>>...24

/third_party/grpc/src/php/tests/unit_tests/
DEndToEndTest.php23 $this->server = new Grpc\Server([]);
25 $this->channel = new Grpc\Channel('localhost:'.$this->port, [
39 $deadline = Grpc\Timeval::infFuture();
41 $call = new Grpc\Call($this->channel,
46 Grpc\OP_SEND_INITIAL_METADATA => [],
47 Grpc\OP_SEND_CLOSE_FROM_CLIENT => true,
58 Grpc\OP_SEND_INITIAL_METADATA => [],
59 Grpc\OP_SEND_STATUS_FROM_SERVER => [
61 'code' => Grpc\STATUS_OK,
64 Grpc\OP_RECV_CLOSE_ON_SERVER => true,
[all …]
DChannelTest.php35 $this->channel = new Grpc\Channel('localhost:50000',
36 ['credentials' => Grpc\ChannelCredentials::createInsecure()]);
42 $channel = new Grpc\Channel('localhost:50033',
43 ['credentials' => \Grpc\ChannelCredentials::createSsl()]);
49 $xdsCreds = \Grpc\ChannelCredentials::createXds(
50 \Grpc\ChannelCredentials::createSsl()
56 $xdsCreds = \Grpc\ChannelCredentials::createXds(
57 \Grpc\ChannelCredentials::createInsecure()
64 $xdsCreds = \Grpc\ChannelCredentials::createXds(null);
69 $xdsCreds = \Grpc\ChannelCredentials::createXds("invalid-type");
[all …]
DTimevalTest.php32 $this->time = new Grpc\Timeval(1234);
39 $this->time = new Grpc\Timeval(-123);
46 $this->time = new Grpc\Timeval(0);
53 $this->time = new Grpc\Timeval(0123);
60 $this->time = new Grpc\Timeval(0x1A);
67 $this->time = new Grpc\Timeval(123.456);
70 $timeFromInt = new Grpc\Timeval(123);
71 $this->assertSame(0, Grpc\Timeval::compare($this->time, $timeFromInt));
76 $this->time = new Grpc\Timeval(7200000000); // > 2^32
79 $halfHour = new Grpc\Timeval(1800000000); // < 2^31
[all …]
DSecureEndToEndTest.php23 $credentials = Grpc\ChannelCredentials::createSsl(
25 $server_credentials = Grpc\ServerCredentials::createSsl(
29 $this->server = new Grpc\Server();
34 $this->channel = new Grpc\Channel(
53 $deadline = Grpc\Timeval::infFuture();
55 $call = new Grpc\Call($this->channel,
61 Grpc\OP_SEND_INITIAL_METADATA => [],
62 Grpc\OP_SEND_CLOSE_FROM_CLIENT => true,
73 Grpc\OP_SEND_INITIAL_METADATA => [],
74 Grpc\OP_SEND_STATUS_FROM_SERVER => [
[all …]
DCallCredentials2Test.php24 $credentials = Grpc\ChannelCredentials::createSsl(
26 $server_credentials = Grpc\ServerCredentials::createSsl(
30 $this->server = new Grpc\Server();
35 $this->channel = new Grpc\Channel(
62 $deadline = Grpc\Timeval::infFuture();
64 $call = new Grpc\Call($this->channel,
69 $call_credentials = Grpc\CallCredentials::createFromPlugin(
74 Grpc\OP_SEND_INITIAL_METADATA => [],
75 Grpc\OP_SEND_CLOSE_FROM_CLIENT => true,
94 Grpc\OP_SEND_INITIAL_METADATA => [],
[all …]
DInterceptorTest.php47 class InterceptorClient extends Grpc\BaseStub
94 class ChangeMetadataInterceptor extends Grpc\Interceptor
117 class ChangeMetadataInterceptor2 extends Grpc\Interceptor
173 class ChangeRequestInterceptor extends Grpc\Interceptor
197 class StopCallInterceptor extends Grpc\Interceptor
222 $this->server = new Grpc\Server([]);
224 $this->channel = new Grpc\Channel('localhost:'.$this->port, [
226 'credentials' => Grpc\ChannelCredentials::createInsecure()]);
241 … $intercept_channel = Grpc\Interceptor::intercept($this->channel, $channel_matadata_interceptor);
244 'credentials' => Grpc\ChannelCredentials::createInsecure(),
[all …]
DCallCredentialsTest.php24 $this->credentials = Grpc\ChannelCredentials::createSsl(
26 $this->call_credentials = Grpc\CallCredentials::createFromPlugin(
28 $this->credentials = Grpc\ChannelCredentials::createComposite(
32 $server_credentials = Grpc\ServerCredentials::createSsl(
36 $this->server = new Grpc\Server();
41 $this->channel = new Grpc\Channel(
68 $deadline = Grpc\Timeval::infFuture();
70 $call = new Grpc\Call($this->channel,
76 Grpc\OP_SEND_INITIAL_METADATA => [],
77 Grpc\OP_SEND_CLOSE_FROM_CLIENT => true,
[all …]
DServerTest.php34 $this->server = new Grpc\Server();
40 $this->server = new Grpc\Server([]);
47 $this->server = new Grpc\Server(['ip' => '127.0.0.1',
54 $this->server = new Grpc\Server();
57 $channel = new Grpc\Channel('localhost:'.$port,
60 'credentials' => Grpc\ChannelCredentials::createInsecure()
63 $deadline = Grpc\Timeval::infFuture();
64 $call = new Grpc\Call($channel, 'dummy_method', $deadline);
66 $event = $call->startBatch([Grpc\OP_SEND_INITIAL_METADATA => [],
67 Grpc\OP_SEND_CLOSE_FROM_CLIENT => true,
[all …]
DStatusTest.php27 'code' => \Grpc\STATUS_OK,
30 $return = \Grpc\Status::ok();
37 'code' => \Grpc\STATUS_OK,
41 $return = \Grpc\Status::ok(['a' => 1]);
48 'code' => \Grpc\STATUS_UNIMPLEMENTED,
51 $return = \Grpc\Status::unimplemented();
58 'code' => \Grpc\STATUS_INVALID_ARGUMENT,
61 $return = \Grpc\Status::status(
62 \Grpc\STATUS_INVALID_ARGUMENT,
71 'code' => \Grpc\STATUS_INVALID_ARGUMENT,
[all …]
DChannelCredentialsTest.php32 $channel_credentials = Grpc\ChannelCredentials::createSsl(null, null,
39 $channel_credentials = Grpc\ChannelCredentials::createSsl('', '', '');
45 $channel_credentials = Grpc\ChannelCredentials::createInsecure();
51 Grpc\ChannelCredentials::setDefaultRootsPem("Pem-Content-Not-Verified");
52 $this->assertTrue(Grpc\ChannelCredentials::isDefaultRootsPemSet());
53 Grpc\ChannelCredentials::invalidateDefaultRootsPem();
54 $this->assertFalse(Grpc\ChannelCredentials::isDefaultRootsPemSet());
55 Grpc\ChannelCredentials::setDefaultRootsPem("Content-Not-Verified");
56 $this->assertTrue(Grpc\ChannelCredentials::isDefaultRootsPemSet());
62 $channel_credentials = Grpc\ChannelCredentials::createSsl([]);
[all …]
/third_party/grpc/src/csharp/Grpc.IntegrationTesting/
DTestGrpc.cs26 using grpc = global::Grpc.Core;
28 namespace Grpc.Testing {
67Grpc.Testing.Empty> __Marshaller_grpc_testing_Empty = grpc::Marshallers.Create(__Helper_SerializeM…
68Grpc.Testing.SimpleRequest> __Marshaller_grpc_testing_SimpleRequest = grpc::Marshallers.Create(__H…
69Grpc.Testing.SimpleResponse> __Marshaller_grpc_testing_SimpleResponse = grpc::Marshallers.Create(_…
70Grpc.Testing.StreamingOutputCallRequest> __Marshaller_grpc_testing_StreamingOutputCallRequest = gr…
71Grpc.Testing.StreamingOutputCallResponse> __Marshaller_grpc_testing_StreamingOutputCallResponse = …
72Grpc.Testing.StreamingInputCallRequest> __Marshaller_grpc_testing_StreamingInputCallRequest = grpc…
73Grpc.Testing.StreamingInputCallResponse> __Marshaller_grpc_testing_StreamingInputCallResponse = gr…
75 …thod<global::Grpc.Testing.Empty, global::Grpc.Testing.Empty> __Method_EmptyCall = new grpc::Method…
[all …]
DBenchmarkServiceGrpc.cs25 using grpc = global::Grpc.Core;
27 namespace Grpc.Testing {
62Grpc.Testing.SimpleRequest> __Marshaller_grpc_testing_SimpleRequest = grpc::Marshallers.Create(__H…
63Grpc.Testing.SimpleResponse> __Marshaller_grpc_testing_SimpleResponse = grpc::Marshallers.Create(_…
65 …:Grpc.Testing.SimpleRequest, global::Grpc.Testing.SimpleResponse> __Method_UnaryCall = new grpc::M…
72Grpc.Testing.SimpleRequest, global::Grpc.Testing.SimpleResponse> __Method_StreamingCall = new grpc…
79Grpc.Testing.SimpleRequest, global::Grpc.Testing.SimpleResponse> __Method_StreamingFromClient = ne…
86Grpc.Testing.SimpleRequest, global::Grpc.Testing.SimpleResponse> __Method_StreamingFromServer = ne…
93Grpc.Testing.SimpleRequest, global::Grpc.Testing.SimpleResponse> __Method_StreamingBothWays = new …
103 get { return global::Grpc.Testing.BenchmarkServiceReflection.Descriptor.Services[0]; }
[all …]
DWorkerServiceGrpc.cs25 using grpc = global::Grpc.Core;
27 namespace Grpc.Testing {
62Grpc.Testing.ServerArgs> __Marshaller_grpc_testing_ServerArgs = grpc::Marshallers.Create(__Helper_…
63Grpc.Testing.ServerStatus> __Marshaller_grpc_testing_ServerStatus = grpc::Marshallers.Create(__Hel…
64Grpc.Testing.ClientArgs> __Marshaller_grpc_testing_ClientArgs = grpc::Marshallers.Create(__Helper_…
65Grpc.Testing.ClientStatus> __Marshaller_grpc_testing_ClientStatus = grpc::Marshallers.Create(__Hel…
66Grpc.Testing.CoreRequest> __Marshaller_grpc_testing_CoreRequest = grpc::Marshallers.Create(__Helpe…
67Grpc.Testing.CoreResponse> __Marshaller_grpc_testing_CoreResponse = grpc::Marshallers.Create(__Hel…
68Grpc.Testing.Void> __Marshaller_grpc_testing_Void = grpc::Marshallers.Create(__Helper_SerializeMes…
70 …bal::Grpc.Testing.ServerArgs, global::Grpc.Testing.ServerStatus> __Method_RunServer = new grpc::Me…
[all …]
DMetricsGrpc.cs29 using grpc = global::Grpc.Core;
31 namespace Grpc.Testing {
66Grpc.Testing.EmptyMessage> __Marshaller_grpc_testing_EmptyMessage = grpc::Marshallers.Create(__Hel…
67Grpc.Testing.GaugeResponse> __Marshaller_grpc_testing_GaugeResponse = grpc::Marshallers.Create(__H…
68Grpc.Testing.GaugeRequest> __Marshaller_grpc_testing_GaugeRequest = grpc::Marshallers.Create(__Hel…
70 …:Grpc.Testing.EmptyMessage, global::Grpc.Testing.GaugeResponse> __Method_GetAllGauges = new grpc::…
77 …l::Grpc.Testing.GaugeRequest, global::Grpc.Testing.GaugeResponse> __Method_GetGauge = new grpc::Me…
87 get { return global::Grpc.Testing.MetricsReflection.Descriptor.Services[0]; }
102 …reading.Tasks.Task GetAllGauges(global::Grpc.Testing.EmptyMessage request, grpc::IServerStreamWrit… in GetAllGauges()
113 …virtual global::System.Threading.Tasks.Task<global::Grpc.Testing.GaugeResponse> GetGauge(global::G… in GetGauge()
[all …]
DReportQpsScenarioServiceGrpc.cs25 using grpc = global::Grpc.Core;
27 namespace Grpc.Testing {
62Grpc.Testing.ScenarioResult> __Marshaller_grpc_testing_ScenarioResult = grpc::Marshallers.Create(_…
63Grpc.Testing.Void> __Marshaller_grpc_testing_Void = grpc::Marshallers.Create(__Helper_SerializeMes…
65 …::Grpc.Testing.ScenarioResult, global::Grpc.Testing.Void> __Method_ReportScenario = new grpc::Meth…
75 get { return global::Grpc.Testing.ReportQpsScenarioServiceReflection.Descriptor.Services[0]; }
88 … virtual global::System.Threading.Tasks.Task<global::Grpc.Testing.Void> ReportScenario(global::Grp… in ReportScenario()
126 …public virtual global::Grpc.Testing.Void ReportScenario(global::Grpc.Testing.ScenarioResult reques… in ReportScenario()
136 …public virtual global::Grpc.Testing.Void ReportScenario(global::Grpc.Testing.ScenarioResult reques… in ReportScenario()
148 …public virtual grpc::AsyncUnaryCall<global::Grpc.Testing.Void> ReportScenarioAsync(global::Grpc.Te… in ReportScenarioAsync()
[all …]
/third_party/grpc/src/csharp/
Dbuild_unitypackage.sh32 dotnet restore Grpc.sln
39 dotnet build --configuration Release Grpc.Core
41 dotnet build --configuration Release Grpc.HealthCheck
45 cp Grpc.Core.Api/bin/Release/net45/Grpc.Core.Api.dll unitypackage/unitypackage_skeleton/Plugins/Grp…
46 cp Grpc.Core.Api/bin/Release/net45/Grpc.Core.Api.pdb unitypackage/unitypackage_skeleton/Plugins/Grp…
47 cp Grpc.Core.Api/bin/Release/net45/Grpc.Core.Api.xml unitypackage/unitypackage_skeleton/Plugins/Grp…
48 cp Grpc.Core/bin/Release/net45/Grpc.Core.dll unitypackage/unitypackage_skeleton/Plugins/Grpc.Core/l…
49 cp Grpc.Core/bin/Release/net45/Grpc.Core.pdb unitypackage/unitypackage_skeleton/Plugins/Grpc.Core/l…
50 cp Grpc.Core/bin/Release/net45/Grpc.Core.xml unitypackage/unitypackage_skeleton/Plugins/Grpc.Core/l…
53 …inux_x64/libgrpc_csharp_ext.so unitypackage/unitypackage_skeleton/Plugins/Grpc.Core/runtimes/linux…
[all …]
Dbuild_unitypackage.bat32 %DOTNET% restore Grpc.sln || goto :error
37 %DOTNET% build --configuration Release Grpc.Core || goto :error
39 %DOTNET% build --configuration Release Grpc.HealthCheck || goto :error
41 @rem copy Grpc assemblies to the unity package skeleton
42 @rem TODO(jtattermusch): Add Grpc.Auth assembly and its dependencies
43 copy /Y Grpc.Core.Api\bin\Release\net45\Grpc.Core.Api.dll unitypackage\unitypackage_skeleton\Plugin…
44 copy /Y Grpc.Core.Api\bin\Release\net45\Grpc.Core.Api.pdb unitypackage\unitypackage_skeleton\Plugin…
45 copy /Y Grpc.Core.Api\bin\Release\net45\Grpc.Core.Api.xml unitypackage\unitypackage_skeleton\Plugin…
46 copy /Y Grpc.Core\bin\Release\net45\Grpc.Core.dll unitypackage\unitypackage_skeleton\Plugins\Grpc.C…
47 copy /Y Grpc.Core\bin\Release\net45\Grpc.Core.pdb unitypackage\unitypackage_skeleton\Plugins\Grpc.C…
[all …]
DGrpc.sln6 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Grpc.Core.Api", "Grpc.Core.Api\Grpc.Core.Api.c…
8 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Grpc.Core", "Grpc.Core\Grpc.Core.csproj", "{BD…
10 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Grpc.Auth", "Grpc.Auth\Grpc.Auth.csproj", "{2A…
12 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Grpc.Core.Testing", "Grpc.Core.Testing\Grpc.Co…
14 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Grpc.Core.Tests", "Grpc.Core.Tests\Grpc.Core.T…
16 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Grpc.Examples", "Grpc.Examples\Grpc.Examples.c…
18 …ct("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Grpc.Examples.MathClient", "Grpc.Examples.MathClie…
20 …ct("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Grpc.Examples.MathServer", "Grpc.Examples.MathServ…
22 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Grpc.Examples.Tests", "Grpc.Examples.Tests\Grp…
24 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Grpc.HealthCheck", "Grpc.HealthCheck\Grpc.Heal…
[all …]
/third_party/grpc/src/php/tests/unit_tests/PersistentChannelTests/
DPersistentChannelTest.php32 new Grpc\Channel('localhost:50010', []);
39 $now = Grpc\Timeval::now();
40 $deadline = $now->add(new Grpc\Timeval(1000));
64 $this->channel1 = new Grpc\Channel('localhost:1', ['force_new' => true]);
77 $this->channel1 = new Grpc\Channel('localhost:1', []);
91 $this->channel1 = new Grpc\Channel('localhost:1', []);
95 $this->channel2 = new Grpc\Channel('localhost:2', []);
99 $this->channel3 = new Grpc\Channel('localhost:3', []);
106 $this->channel1 = new Grpc\Channel('localhost:4', []);
120 $this->channel1 = new Grpc\Channel('localhost:1', []);
[all …]
/third_party/grpc/src/csharp/Grpc.HealthCheck/
DHealthGrpc.cs26 using grpc = global::Grpc.Core;
28 namespace Grpc.Health.V1 {
63Grpc.Health.V1.HealthCheckRequest> __Marshaller_grpc_health_v1_HealthCheckRequest = grpc::Marshall…
64Grpc.Health.V1.HealthCheckResponse> __Marshaller_grpc_health_v1_HealthCheckResponse = grpc::Marsha…
66Grpc.Health.V1.HealthCheckRequest, global::Grpc.Health.V1.HealthCheckResponse> __Method_Check = ne…
73Grpc.Health.V1.HealthCheckRequest, global::Grpc.Health.V1.HealthCheckResponse> __Method_Watch = ne…
83 get { return global::Grpc.Health.V1.HealthReflection.Descriptor.Services[0]; }
97 …tual global::System.Threading.Tasks.Task<global::Grpc.Health.V1.HealthCheckResponse> Check(global:… in Check()
123 ….Threading.Tasks.Task Watch(global::Grpc.Health.V1.HealthCheckRequest request, grpc::IServerStream… in Watch()
162 …public virtual global::Grpc.Health.V1.HealthCheckResponse Check(global::Grpc.Health.V1.HealthCheck… in Check()
[all …]
/third_party/grpc/src/php/tests/interop/
Dinterop_client.php47 if ($status->code !== Grpc\STATUS_OK) {
62 $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([
[all …]
/third_party/grpc/templates/src/csharp/
Dbuild_unitypackage.bat.template34 %%DOTNET% restore Grpc.sln || goto :error
39 %%DOTNET% build --configuration Release Grpc.Core || goto :error
41 %%DOTNET% build --configuration Release Grpc.HealthCheck || goto :error
43 @rem copy Grpc assemblies to the unity package skeleton
44 @rem TODO(jtattermusch): Add Grpc.Auth assembly and its dependencies
45 …copy /Y Grpc.Core.Api\bin\Release\net45\Grpc.Core.Api.dll unitypackage\unitypackage_skeleton\Plugi…
46 …copy /Y Grpc.Core.Api\bin\Release\net45\Grpc.Core.Api.pdb unitypackage\unitypackage_skeleton\Plugi…
47 …copy /Y Grpc.Core.Api\bin\Release\net45\Grpc.Core.Api.xml unitypackage\unitypackage_skeleton\Plugi…
48 …copy /Y Grpc.Core\bin\Release\net45\Grpc.Core.dll unitypackage\unitypackage_skeleton\Plugins\Grpc.…
49 …copy /Y Grpc.Core\bin\Release\net45\Grpc.Core.pdb unitypackage\unitypackage_skeleton\Plugins\Grpc.…
[all …]
/third_party/grpc/src/csharp/Grpc.Reflection/
DReflectionGrpc.cs25 using grpc = global::Grpc.Core;
27 namespace Grpc.Reflection.V1Alpha {
62Grpc.Reflection.V1Alpha.ServerReflectionRequest> __Marshaller_grpc_reflection_v1alpha_ServerReflec…
63Grpc.Reflection.V1Alpha.ServerReflectionResponse> __Marshaller_grpc_reflection_v1alpha_ServerRefle…
65Grpc.Reflection.V1Alpha.ServerReflectionRequest, global::Grpc.Reflection.V1Alpha.ServerReflectionR…
75 get { return global::Grpc.Reflection.V1Alpha.ReflectionReflection.Descriptor.Services[0]; }
90 …syncStreamReader<global::Grpc.Reflection.V1Alpha.ServerReflectionRequest> requestStream, grpc::ISe… in ServerReflectionInfo()
128 …irtual grpc::AsyncDuplexStreamingCall<global::Grpc.Reflection.V1Alpha.ServerReflectionRequest, glo… in ServerReflectionInfo()
138 …irtual grpc::AsyncDuplexStreamingCall<global::Grpc.Reflection.V1Alpha.ServerReflectionRequest, glo… in ServerReflectionInfo()
163 …new grpc::DuplexStreamingServerMethod<global::Grpc.Reflection.V1Alpha.ServerReflectionRequest, glo… in BindService()
/third_party/grpc/tools/interop_matrix/testcases/
Dcsharp__v1.1.43 docker run -i --rm=true -w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug …
4 docker run -i --rm=true -w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug …
5 docker run -i --rm=true -w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug …
6 docker run -i --rm=true -w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug …
7 docker run -i --rm=true -w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug …
8 docker run -i --rm=true -w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug …
9 docker run -i --rm=true -w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug …
10 docker run -i --rm=true -w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug …
11 docker run -i --rm=true -w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug …
12 docker run -i --rm=true -w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug …
[all …]
Dcsharpcoreclr__v1.3.93 docker run -i --rm=true -w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug/…
4 docker run -i --rm=true -w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug/…
5 docker run -i --rm=true -w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug/…
6 docker run -i --rm=true -w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug/…
7 docker run -i --rm=true -w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug/…
8 docker run -i --rm=true -w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug/…
9 docker run -i --rm=true -w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug/…
10 docker run -i --rm=true -w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug/…
11 docker run -i --rm=true -w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug/…
12 docker run -i --rm=true -w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug/…
[all …]

12345678910>>...24