/external/grpc-grpc/src/php/tests/unit_tests/ |
D | EndToEndTest.php | 23 $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 …]
|
D | TimevalTest.php | 32 $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); 74 $zero = Grpc\Timeval::zero(); 75 $this->assertSame(0, Grpc\Timeval::compare($zero, $zero)); 80 $zero = Grpc\Timeval::zero(); 81 $past = Grpc\Timeval::infPast(); [all …]
|
D | SecureEndToEndTest.php | 23 $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 …]
|
D | ChannelTest.php | 35 $this->channel = new Grpc\Channel('localhost:50000', 36 ['credentials' => Grpc\ChannelCredentials::createInsecure()]); 42 $this->channel = new Grpc\Channel('localhost:50001', 43 ['credentials' => Grpc\ChannelCredentials::createInsecure()]); 50 $this->channel = new Grpc\Channel('localhost:50002', 51 ['credentials' => Grpc\ChannelCredentials::createInsecure()]); 58 $this->channel = new Grpc\Channel('localhost:50003', 59 ['credentials' => Grpc\ChannelCredentials::createInsecure()]); 66 $this->channel = new Grpc\Channel('localhost:50004', 67 ['credentials' => Grpc\ChannelCredentials::createInsecure()]); [all …]
|
D | CallCredentials2Test.php | 24 $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 …]
|
D | InterceptorTest.php | 47 class InterceptorClient extends Grpc\BaseStub 94 class ChangeMetadataInterceptor extends Grpc\Interceptor 113 class ChangeMetadataInterceptor2 extends Grpc\Interceptor 169 class ChangeRequestInterceptor extends Grpc\Interceptor 189 class StopCallInterceptor extends Grpc\Interceptor 212 $this->server = new Grpc\Server([]); 214 $this->channel = new Grpc\Channel('localhost:'.$this->port, [ 216 'credentials' => Grpc\ChannelCredentials::createInsecure()]); 231 … $intercept_channel = Grpc\Interceptor::intercept($this->channel, $channel_matadata_interceptor); 234 'credentials' => Grpc\ChannelCredentials::createInsecure(), [all …]
|
D | CallCredentialsTest.php | 24 $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 …]
|
D | ServerTest.php | 34 $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 …]
|
/external/grpc-grpc/src/csharp/Grpc.IntegrationTesting/ |
D | TestGrpc.cs | 26 using grpc = global::Grpc.Core; 28 namespace Grpc.Testing { 37 …Grpc.Testing.Empty> __Marshaller_grpc_testing_Empty = grpc::Marshallers.Create((arg) => global::Go… 38 …Grpc.Testing.SimpleRequest> __Marshaller_grpc_testing_SimpleRequest = grpc::Marshallers.Create((ar… 39 …Grpc.Testing.SimpleResponse> __Marshaller_grpc_testing_SimpleResponse = grpc::Marshallers.Create((… 40 …Grpc.Testing.StreamingOutputCallRequest> __Marshaller_grpc_testing_StreamingOutputCallRequest = gr… 41 …Grpc.Testing.StreamingOutputCallResponse> __Marshaller_grpc_testing_StreamingOutputCallResponse = … 42 …Grpc.Testing.StreamingInputCallRequest> __Marshaller_grpc_testing_StreamingInputCallRequest = grpc… 43 …Grpc.Testing.StreamingInputCallResponse> __Marshaller_grpc_testing_StreamingInputCallResponse = gr… 45 …thod<global::Grpc.Testing.Empty, global::Grpc.Testing.Empty> __Method_EmptyCall = new grpc::Method… [all …]
|
D | BenchmarkServiceGrpc.cs | 25 using grpc = global::Grpc.Core; 27 namespace Grpc.Testing { 32 …Grpc.Testing.SimpleRequest> __Marshaller_grpc_testing_SimpleRequest = grpc::Marshallers.Create((ar… 33 …Grpc.Testing.SimpleResponse> __Marshaller_grpc_testing_SimpleResponse = grpc::Marshallers.Create((… 35 …:Grpc.Testing.SimpleRequest, global::Grpc.Testing.SimpleResponse> __Method_UnaryCall = new grpc::M… 42 …Grpc.Testing.SimpleRequest, global::Grpc.Testing.SimpleResponse> __Method_StreamingCall = new grpc… 49 …Grpc.Testing.SimpleRequest, global::Grpc.Testing.SimpleResponse> __Method_StreamingFromClient = ne… 56 …Grpc.Testing.SimpleRequest, global::Grpc.Testing.SimpleResponse> __Method_StreamingFromServer = ne… 63 …Grpc.Testing.SimpleRequest, global::Grpc.Testing.SimpleResponse> __Method_StreamingBothWays = new … 73 get { return global::Grpc.Testing.BenchmarkServiceReflection.Descriptor.Services[0]; } [all …]
|
D | WorkerServiceGrpc.cs | 25 using grpc = global::Grpc.Core; 27 namespace Grpc.Testing { 32 …Grpc.Testing.ServerArgs> __Marshaller_grpc_testing_ServerArgs = grpc::Marshallers.Create((arg) => … 33 …Grpc.Testing.ServerStatus> __Marshaller_grpc_testing_ServerStatus = grpc::Marshallers.Create((arg)… 34 …Grpc.Testing.ClientArgs> __Marshaller_grpc_testing_ClientArgs = grpc::Marshallers.Create((arg) => … 35 …Grpc.Testing.ClientStatus> __Marshaller_grpc_testing_ClientStatus = grpc::Marshallers.Create((arg)… 36 …Grpc.Testing.CoreRequest> __Marshaller_grpc_testing_CoreRequest = grpc::Marshallers.Create((arg) =… 37 …Grpc.Testing.CoreResponse> __Marshaller_grpc_testing_CoreResponse = grpc::Marshallers.Create((arg)… 38 …Grpc.Testing.Void> __Marshaller_grpc_testing_Void = grpc::Marshallers.Create((arg) => global::Goog… 40 …bal::Grpc.Testing.ServerArgs, global::Grpc.Testing.ServerStatus> __Method_RunServer = new grpc::Me… [all …]
|
D | MetricsGrpc.cs | 29 using grpc = global::Grpc.Core; 31 namespace Grpc.Testing { 36 …Grpc.Testing.EmptyMessage> __Marshaller_grpc_testing_EmptyMessage = grpc::Marshallers.Create((arg)… 37 …Grpc.Testing.GaugeResponse> __Marshaller_grpc_testing_GaugeResponse = grpc::Marshallers.Create((ar… 38 …Grpc.Testing.GaugeRequest> __Marshaller_grpc_testing_GaugeRequest = grpc::Marshallers.Create((arg)… 40 …:Grpc.Testing.EmptyMessage, global::Grpc.Testing.GaugeResponse> __Method_GetAllGauges = new grpc::… 47 …l::Grpc.Testing.GaugeRequest, global::Grpc.Testing.GaugeResponse> __Method_GetGauge = new grpc::Me… 57 get { return global::Grpc.Testing.MetricsReflection.Descriptor.Services[0]; } 71 …reading.Tasks.Task GetAllGauges(global::Grpc.Testing.EmptyMessage request, grpc::IServerStreamWrit… in GetAllGauges() 82 …virtual global::System.Threading.Tasks.Task<global::Grpc.Testing.GaugeResponse> GetGauge(global::G… in GetGauge() [all …]
|
D | ReportQpsScenarioServiceGrpc.cs | 25 using grpc = global::Grpc.Core; 27 namespace Grpc.Testing { 32 …Grpc.Testing.ScenarioResult> __Marshaller_grpc_testing_ScenarioResult = grpc::Marshallers.Create((… 33 …Grpc.Testing.Void> __Marshaller_grpc_testing_Void = grpc::Marshallers.Create((arg) => global::Goog… 35 …::Grpc.Testing.ScenarioResult, global::Grpc.Testing.Void> __Method_ReportScenario = new grpc::Meth… 45 get { return global::Grpc.Testing.ReportQpsScenarioServiceReflection.Descriptor.Services[0]; } 57 … virtual global::System.Threading.Tasks.Task<global::Grpc.Testing.Void> ReportScenario(global::Grp… in ReportScenario() 95 …public virtual global::Grpc.Testing.Void ReportScenario(global::Grpc.Testing.ScenarioResult reques… in ReportScenario() 105 …public virtual global::Grpc.Testing.Void ReportScenario(global::Grpc.Testing.ScenarioResult reques… in ReportScenario() 117 …public virtual grpc::AsyncUnaryCall<global::Grpc.Testing.Void> ReportScenarioAsync(global::Grpc.Te… in ReportScenarioAsync() [all …]
|
/external/grpc-grpc/src/php/tests/unit_tests/PersistentChannelTests/ |
D | PersistentChannelTest.php | 32 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 …]
|
/external/grpc-grpc/src/csharp/Grpc.HealthCheck/ |
D | HealthGrpc.cs | 26 using grpc = global::Grpc.Core; 28 namespace Grpc.Health.V1 { 33 …Grpc.Health.V1.HealthCheckRequest> __Marshaller_grpc_health_v1_HealthCheckRequest = grpc::Marshall… 34 …Grpc.Health.V1.HealthCheckResponse> __Marshaller_grpc_health_v1_HealthCheckResponse = grpc::Marsha… 36 …Grpc.Health.V1.HealthCheckRequest, global::Grpc.Health.V1.HealthCheckResponse> __Method_Check = ne… 46 get { return global::Grpc.Health.V1.HealthReflection.Descriptor.Services[0]; } 52 …tual global::System.Threading.Tasks.Task<global::Grpc.Health.V1.HealthCheckResponse> Check(global:… in Check() 82 …public virtual global::Grpc.Health.V1.HealthCheckResponse Check(global::Grpc.Health.V1.HealthCheck… in Check() 86 …public virtual global::Grpc.Health.V1.HealthCheckResponse Check(global::Grpc.Health.V1.HealthCheck… in Check() 90 …public virtual grpc::AsyncUnaryCall<global::Grpc.Health.V1.HealthCheckResponse> CheckAsync(global:… in CheckAsync() [all …]
|
/external/grpc-grpc/src/php/tests/interop/ |
D | interop_client.php | 47 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, 241 $request = new Grpc\Testing\StreamingInputCallRequest(); 242 $payload = new Grpc\Testing\Payload(); 268 $request = new Grpc\Testing\StreamingOutputCallRequest(); [all …]
|
/external/grpc-grpc/src/csharp/Grpc.Reflection/ |
D | ReflectionGrpc.cs | 25 using grpc = global::Grpc.Core; 27 namespace Grpc.Reflection.V1Alpha { 32 …Grpc.Reflection.V1Alpha.ServerReflectionRequest> __Marshaller_grpc_reflection_v1alpha_ServerReflec… 33 …Grpc.Reflection.V1Alpha.ServerReflectionResponse> __Marshaller_grpc_reflection_v1alpha_ServerRefle… 35 …Grpc.Reflection.V1Alpha.ServerReflectionRequest, global::Grpc.Reflection.V1Alpha.ServerReflectionR… 45 get { return global::Grpc.Reflection.V1Alpha.ReflectionReflection.Descriptor.Services[0]; } 59 …syncStreamReader<global::Grpc.Reflection.V1Alpha.ServerReflectionRequest> requestStream, grpc::ISe… in ServerReflectionInfo() 97 …irtual grpc::AsyncDuplexStreamingCall<global::Grpc.Reflection.V1Alpha.ServerReflectionRequest, glo… in ServerReflectionInfo() 107 …irtual grpc::AsyncDuplexStreamingCall<global::Grpc.Reflection.V1Alpha.ServerReflectionRequest, glo… in ServerReflectionInfo()
|
/external/grpc-grpc/src/csharp/ |
D | Grpc.sln | 6 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Grpc.Core", "Grpc.Core\Grpc.Core.csproj", "{BD… 8 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Grpc.Auth", "Grpc.Auth\Grpc.Auth.csproj", "{2A… 10 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Grpc.Core.Testing", "Grpc.Core.Testing\Grpc.Co… 12 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Grpc.Core.Tests", "Grpc.Core.Tests\Grpc.Core.T… 14 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Grpc.Examples", "Grpc.Examples\Grpc.Examples.c… 16 …ct("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Grpc.Examples.MathClient", "Grpc.Examples.MathClie… 18 …ct("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Grpc.Examples.MathServer", "Grpc.Examples.MathServ… 20 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Grpc.Examples.Tests", "Grpc.Examples.Tests\Grp… 22 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Grpc.HealthCheck", "Grpc.HealthCheck\Grpc.Heal… 24 …ject("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Grpc.HealthCheck.Tests", "Grpc.HealthCheck.Tests… [all …]
|
D | build_unitypackage.bat | 32 %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\bin\Release\net45\Grpc.Core.dll unitypackage\unitypackage_skeleton\Plugins\Grpc.C… 44 copy /Y Grpc.Core\bin\Release\net45\Grpc.Core.pdb unitypackage\unitypackage_skeleton\Plugins\Grpc.C… 45 copy /Y Grpc.Core\bin\Release\net45\Grpc.Core.xml unitypackage\unitypackage_skeleton\Plugins\Grpc.C… 48 …inux_x86\libgrpc_csharp_ext.so unitypackage\unitypackage_skeleton\Plugins\Grpc.Core\runtimes\linux… 49 …inux_x64\libgrpc_csharp_ext.so unitypackage\unitypackage_skeleton\Plugins\Grpc.Core\runtimes\linux… [all …]
|
/external/grpc-grpc/templates/src/csharp/ |
D | build_unitypackage.bat.template | 34 %%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\bin\Release\net45\Grpc.Core.dll unitypackage\unitypackage_skeleton\Plugins\Grpc.… 46 …copy /Y Grpc.Core\bin\Release\net45\Grpc.Core.pdb unitypackage\unitypackage_skeleton\Plugins\Grpc.… 47 …copy /Y Grpc.Core\bin\Release\net45\Grpc.Core.xml unitypackage\unitypackage_skeleton\Plugins\Grpc.… 50 …inux_x86\libgrpc_csharp_ext.so unitypackage\unitypackage_skeleton\Plugins\Grpc.Core\runtimes\linux… 51 …inux_x64\libgrpc_csharp_ext.so unitypackage\unitypackage_skeleton\Plugins\Grpc.Core\runtimes\linux… [all …]
|
/external/grpc-grpc/tools/interop_matrix/testcases/ |
D | csharp__v1.1.4 | 3 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 …]
|
D | csharpcoreclr__master | 3 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 …]
|
/external/rust/crates/grpcio-sys/grpc/tools/interop_matrix/testcases/ |
D | csharp__v1.1.4 | 3 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 …]
|
D | csharpcoreclr__v1.18.0 | 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/… 13 docker run -i --rm=true -w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug/… 14 docker run -i --rm=true -w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug/… [all …]
|
D | csharp__v1.3.9 | 3 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 …]
|