Searched refs:Fib (Results 1 – 10 of 10) sorted by relevance
/external/grpc-grpc/src/proto/math/ |
D | math.proto | 55 // Fib generates numbers in the Fibonacci sequence. If FibArgs.limit > 0, Fib 57 // canceled. Unlike Fib above, Fib has no final FibReply. 58 rpc Fib (FibArgs) returns (stream Num) { rpc
|
/external/rust/crates/grpcio-sys/grpc/src/proto/math/ |
D | math.proto | 55 // Fib generates numbers in the Fibonacci sequence. If FibArgs.limit > 0, Fib 57 // canceled. Unlike Fib above, Fib has no final FibReply. 58 rpc Fib (FibArgs) returns (stream Num) { rpc
|
/external/grpc-grpc/src/csharp/Grpc.Examples.Tests/ |
D | MathClientServerTests.cs | 93 public async Task Fib() in Fib() method in Math.Tests.MathClientServerTest 95 using (var call = client.Fib(new FibArgs { Limit = 6 })) in Fib() 108 using (var call = client.Fib(new FibArgs { Limit = 0 }, cancellationToken: cts.Token)) in FibWithCancel() 135 using (var call = client.Fib(new FibArgs { Limit = 0 }, in FibWithDeadline()
|
D | MathClientMockableTest.cs | 84 …mockClient.Setup(m => m.Fib(Moq.It.IsAny<FibArgs>(), null, null, CancellationToken.None)).Returns(… in ClientBaseServerStreamingCallCanBeMocked() 85 Assert.AreSame(fakeCall, mockClient.Object.Fib(new FibArgs())); in ClientBaseServerStreamingCallCanBeMocked()
|
/external/grpc-grpc/src/csharp/Grpc.Examples/ |
D | MathGrpc.cs | 108 …public virtual global::System.Threading.Tasks.Task Fib(global::Math.FibArgs request, grpc::IServer… in Fib() method in Math.Math.MathBase 234 …public virtual grpc::AsyncServerStreamingCall<global::Math.Num> Fib(global::Math.FibArgs request, … in Fib() method in Math.Math.MathClient 236 return Fib(request, new grpc::CallOptions(headers, deadline, cancellationToken)); in Fib() 246 …public virtual grpc::AsyncServerStreamingCall<global::Math.Num> Fib(global::Math.FibArgs request, … in Fib() method in Math.Math.MathClient 286 .AddMethod(__Method_Fib, serviceImpl.Fib) in BindService()
|
D | MathServiceImpl.cs | 38 …public override async Task Fib(FibArgs request, IServerStreamWriter<Num> responseStream, ServerCal… in Fib() method in Math.MathServiceImpl
|
D | MathExamples.cs | 41 using (var call = client.Fib(new FibArgs { Limit = 5 })) in FibExample()
|
/external/grpc-grpc/src/php/tests/generated_code/ |
D | AbstractGeneratedCodeTest.php | 173 $call = self::$client->Fib($fib_arg, [], 220 $call = self::$client->Fib($fib_arg);
|
D | math_client.php | 56 $call = $client->Fib($fib_arg);
|
/external/googletest/docs/ |
D | advanced.md | 205 the failed assertion `EXPECT_TRUE(IsEven(Fib(4)))` will print: 208 Value of: IsEven(Fib(4)) 216 Value of: IsEven(Fib(4)) 235 Then the statement `EXPECT_FALSE(IsEven(Fib(6)))` will print 238 Value of: IsEven(Fib(6))
|