Lines Matching refs:Payload
216 Payload = CreateZerosPayload(271828) in RunLargeUnary()
220 Assert.AreEqual(314159, response.Payload.Body.Length); in RunLargeUnary()
228 …27182, 8, 1828, 45904 }.Select((size) => new StreamingInputCallRequest { Payload = CreateZerosPayl… in RunClientStreamingAsync()
254 … CollectionAssert.AreEqual(bodySizes, responseList.Select((item) => item.Payload.Body.Length)); in RunServerStreamingAsync()
268 Payload = CreateZerosPayload(27182) in RunPingPongAsync()
272 Assert.AreEqual(31415, call.ResponseStream.Current.Payload.Body.Length); in RunPingPongAsync()
277 Payload = CreateZerosPayload(8) in RunPingPongAsync()
281 Assert.AreEqual(9, call.ResponseStream.Current.Payload.Body.Length); in RunPingPongAsync()
286 Payload = CreateZerosPayload(1828) in RunPingPongAsync()
290 Assert.AreEqual(2653, call.ResponseStream.Current.Payload.Body.Length); in RunPingPongAsync()
295 Payload = CreateZerosPayload(45904) in RunPingPongAsync()
299 Assert.AreEqual(58979, call.ResponseStream.Current.Payload.Body.Length); in RunPingPongAsync()
328 Payload = CreateZerosPayload(271828), in RunComputeEngineCreds()
336 Assert.AreEqual(314159, response.Payload.Body.Length); in RunComputeEngineCreds()
350 Payload = CreateZerosPayload(271828), in RunJwtTokenCreds()
357 Assert.AreEqual(314159, response.Payload.Body.Length); in RunJwtTokenCreds()
427 Payload = CreateZerosPayload(27182) in RunCancelAfterFirstResponseAsync()
431 Assert.AreEqual(31415, call.ResponseStream.Current.Payload.Body.Length); in RunCancelAfterFirstResponseAsync()
458 …await call.RequestStream.WriteAsync(new StreamingOutputCallRequest { Payload = CreateZerosPayload(… in RunTimeoutOnSleepingServerAsync()
491 Payload = CreateZerosPayload(271828) in RunCustomMetadataAsync()
509 Payload = CreateZerosPayload(27182) in RunCustomMetadataAsync()
598 Payload = CreateZerosPayload(271828) in RunClientCompressedUnary()
610 Payload = CreateZerosPayload(271828) in RunClientCompressedUnary()
613 Assert.AreEqual(314159, response1.Payload.Body.Length); in RunClientCompressedUnary()
622 Payload = CreateZerosPayload(271828) in RunClientCompressedUnary()
625 Assert.AreEqual(314159, response2.Payload.Body.Length); in RunClientCompressedUnary()
642 Payload = CreateZerosPayload(27182) in RunClientCompressedStreamingAsync()
661 Payload = CreateZerosPayload(27182) in RunClientCompressedStreamingAsync()
671 Payload = CreateZerosPayload(45904) in RunClientCompressedStreamingAsync()
681 private static Payload CreateZerosPayload(int size) in CreateZerosPayload()
683 return new Payload { Body = ByteString.CopyFrom(new byte[size]) }; in CreateZerosPayload()