Lines Matching refs:Payload
219 Payload = CreateZerosPayload(271828) in RunLargeUnary()
223 Assert.AreEqual(314159, response.Payload.Body.Length); in RunLargeUnary()
231 …27182, 8, 1828, 45904 }.Select((size) => new StreamingInputCallRequest { Payload = CreateZerosPayl… in RunClientStreamingAsync()
257 … CollectionAssert.AreEqual(bodySizes, responseList.Select((item) => item.Payload.Body.Length)); in RunServerStreamingAsync()
271 Payload = CreateZerosPayload(27182) in RunPingPongAsync()
275 Assert.AreEqual(31415, call.ResponseStream.Current.Payload.Body.Length); in RunPingPongAsync()
280 Payload = CreateZerosPayload(8) in RunPingPongAsync()
284 Assert.AreEqual(9, call.ResponseStream.Current.Payload.Body.Length); in RunPingPongAsync()
289 Payload = CreateZerosPayload(1828) in RunPingPongAsync()
293 Assert.AreEqual(2653, call.ResponseStream.Current.Payload.Body.Length); in RunPingPongAsync()
298 Payload = CreateZerosPayload(45904) in RunPingPongAsync()
302 Assert.AreEqual(58979, call.ResponseStream.Current.Payload.Body.Length); in RunPingPongAsync()
331 Payload = CreateZerosPayload(271828), in RunComputeEngineCreds()
339 Assert.AreEqual(314159, response.Payload.Body.Length); in RunComputeEngineCreds()
353 Payload = CreateZerosPayload(271828), in RunJwtTokenCreds()
360 Assert.AreEqual(314159, response.Payload.Body.Length); in RunJwtTokenCreds()
430 Payload = CreateZerosPayload(27182) in RunCancelAfterFirstResponseAsync()
434 Assert.AreEqual(31415, call.ResponseStream.Current.Payload.Body.Length); in RunCancelAfterFirstResponseAsync()
461 …await call.RequestStream.WriteAsync(new StreamingOutputCallRequest { Payload = CreateZerosPayload(… in RunTimeoutOnSleepingServerAsync()
493 Payload = CreateZerosPayload(271828) in RunCustomMetadataAsync()
511 Payload = CreateZerosPayload(27182) in RunCustomMetadataAsync()
627 Payload = CreateZerosPayload(271828) in RunClientCompressedUnary()
639 Payload = CreateZerosPayload(271828) in RunClientCompressedUnary()
642 Assert.AreEqual(314159, response1.Payload.Body.Length); in RunClientCompressedUnary()
651 Payload = CreateZerosPayload(271828) in RunClientCompressedUnary()
654 Assert.AreEqual(314159, response2.Payload.Body.Length); in RunClientCompressedUnary()
671 Payload = CreateZerosPayload(27182) in RunClientCompressedStreamingAsync()
690 Payload = CreateZerosPayload(27182) in RunClientCompressedStreamingAsync()
700 Payload = CreateZerosPayload(45904) in RunClientCompressedStreamingAsync()
710 private static Payload CreateZerosPayload(int size) in CreateZerosPayload()
712 return new Payload { Body = ByteString.CopyFrom(new byte[size]) }; in CreateZerosPayload()