OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FibArgs
(Results
1 - 11
of
11
) sorted by null
/external/grpc-grpc/src/ruby/bin/
math_services_pb.rb
40
# Fib generates numbers in the Fibonacci sequence. If
FibArgs
.limit > 0, Fib
43
rpc :Fib,
FibArgs
, stream(Num)
math_pb.rb
15
add_message "math.
FibArgs
" do
29
FibArgs
= Google::Protobuf::DescriptorPool.generated_pool.lookup("math.
FibArgs
").msgclass
math_client.rb
68
req = Math::
FibArgs
.new(limit: 11)
/external/grpc-grpc/src/csharp/Grpc.Examples/
Math.cs
41
new pbr::GeneratedClrTypeInfo(typeof(global::Math.
FibArgs
), global::Math.
FibArgs
.Parser, new[]{ "Limit" }, null, null, null),
364
public sealed partial class
FibArgs
: pb::IMessage<
FibArgs
> {
365
private static readonly pb::MessageParser<
FibArgs
> _parser = new pb::MessageParser<
FibArgs
>(() => new
FibArgs
());
368
public static pb::MessageParser<
FibArgs
> Parser { get { return _parser; } }
381
public
FibArgs
() {
388
public
FibArgs
(FibArgs other) : this()
[
all
...]
MathGrpc.cs
32
static readonly grpc::Marshaller<global::Math.
FibArgs
> __Marshaller_math_FibArgs = grpc::Marshallers.Create((arg) => global::Google.Protobuf.MessageExtensions.ToByteArray(arg), global::Math.
FibArgs
.Parser.ParseFrom);
49
static readonly grpc::Method<global::Math.
FibArgs
, global::Math.Num> __Method_Fib = new grpc::Method<global::Math.
FibArgs
, global::Math.Num>(
100
/// Fib generates numbers in the Fibonacci sequence. If
FibArgs
.limit > 0, Fib
108
public virtual global::System.Threading.Tasks.Task Fib(global::Math.
FibArgs
request, grpc::IServerStreamWriter<global::Math.Num> responseStream, grpc::ServerCallContext context)
225
/// Fib generates numbers in the Fibonacci sequence. If
FibArgs
.limit > 0, Fib
234
public virtual grpc::AsyncServerStreamingCall<global::Math.Num> Fib(global::Math.
FibArgs
request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
239
/// Fib generates numbers in the Fibonacci sequence. If
FibArgs
.limit > 0, Fib
246
public virtual grpc::AsyncServerStreamingCall<global::Math.Num> Fib(global::Math.
FibArgs
request, grpc::CallOptions options
[
all
...]
MathServiceImpl.cs
38
public override async Task Fib(
FibArgs
request, IServerStreamWriter<Num> responseStream, ServerCallContext context)
MathExamples.cs
41
using (var call = client.Fib(new
FibArgs
{ Limit = 5 }))
/external/grpc-grpc/src/php/tests/generated_code/
math_client.php
54
$fib_arg = new Math\
FibArgs
();
AbstractGeneratedCodeTest.php
171
$fib_arg = new Math\
FibArgs
();
218
$fib_arg = new Math\
FibArgs
();
/external/grpc-grpc/src/csharp/Grpc.Examples.Tests/
MathClientServerTests.cs
95
using (var call = client.Fib(new
FibArgs
{ Limit = 6 }))
108
using (var call = client.Fib(new
FibArgs
{ Limit = 0 }, cancellationToken: cts.Token))
135
using (var call = client.Fib(new
FibArgs
{ Limit = 0 },
MathClientMockableTest.cs
84
mockClient.Setup(m => m.Fib(Moq.It.IsAny<
FibArgs
>(), null, null, CancellationToken.None)).Returns(fakeCall);
85
Assert.AreSame(fakeCall, mockClient.Object.Fib(new
FibArgs
()));
Completed in 162 milliseconds