Home
last modified time | relevance | path

Searched refs:start_call (Results 1 – 4 of 4) sorted by relevance

/external/grpc-grpc/src/ruby/spec/generic/
Dclient_stub_spec.rb51 expect { op_view.start_call }.to raise_error(RuntimeError)
317 @op.start_call if run_start_call_first
416 @op.start_call if run_start_call_first
557 @op.start_call if run_start_call_first
876 @op.start_call if run_start_call_first
/external/python/cpython2/Demo/rpc/
Drpc.py241 self.start_call(proc)
252 def start_call(self, proc): member in Client
420 self.start_call(proc)
/external/grpc-grpc/src/ruby/lib/grpc/generic/
Dactive_call.rb616 def start_call(metadata = {}) method in GRPC.ActiveCall
/external/python/cpython3/Doc/library/
Dunittest.mock-examples.rst531 …... response = self.backend.get_endpoint('foobar').create_call('spam', 'eggs').start_call()
541 ``start_call`` so we don't have much configuration to do. Let's assume the
547 ``start_call`` we could do this::
549 …mock_backend.get_endpoint.return_value.create_call.return_value.start_call.return_value = mock_res…
557 …>>> config = {'get_endpoint.return_value.create_call.return_value.start_call.return_value': mock_r…
571 >>> chained = call.get_endpoint('foobar').create_call('spam', 'eggs').start_call()