/external/grpc-grpc/src/ruby/bin/ |
D | math_client.rb | 42 GRPC.extend(StdoutLogger) 45 GRPC.logger.info('request_response') 46 GRPC.logger.info('----------------') 48 GRPC.logger.info("div(7/3): req=#{req.inspect}") 50 GRPC.logger.info("Answer: #{resp.inspect}") 51 GRPC.logger.info('----------------') 56 GRPC.logger.info('client_streamer') 57 GRPC.logger.info('---------------') 59 GRPC.logger.info("sum(1, 2, 3, 4, 5): reqs=#{reqs.inspect}") 61 GRPC.logger.info("Answer: #{resp.inspect}") [all …]
|
D | noproto_client.rb | 82 GRPC.logger.info("... connecting securely on #{options['host']}") 85 GRPC.logger.info("... connecting insecurely on #{options['host']}") 88 GRPC.logger.info('sending a NoProto rpc') 90 GRPC.logger.info("got a response: #{resp}")
|
D | math_server.rb | 43 module GRPC module 132 GRPC.logger.info("read #{req.inspect}") 138 GRPC.logger.info('finished reads') 181 GRPC.logger.info("... running securely on #{options['host']}") 184 GRPC.logger.info("... running insecurely on #{options['host']}")
|
D | noproto_server.rb | 51 GRPC.logger.info('echo service received a request') 87 GRPC.logger.info("... running securely on #{options['host']}") 90 GRPC.logger.info("... running insecurely on #{options['host']}")
|
/external/grpc-grpc/src/ruby/lib/grpc/generic/ |
D | bidi_call.rb | 19 module GRPC module 135 GRPC.logger.warn('bidi call: read_using_run_batch failed') 136 GRPC.logger.warn(e) 143 GRPC.logger.debug('bidi-write-loop: starting') 146 GRPC.logger.debug("bidi-write-loop: #{count}") 156 GRPC.logger.warn('bidi-write-loop: ended with error') 157 GRPC.logger.warn(e) 161 GRPC.logger.debug("bidi-write-loop: #{count} writes done") 163 GRPC.logger.debug("bidi-write-loop: client sent #{count}, waiting") 167 GRPC.logger.warn('bidi-write-loop: send close failed') [all …]
|
D | interceptors.rb | 17 module GRPC module 45 GRPC.logger.debug "Intercepting request response method #{method}" \ 59 GRPC.logger.debug "Intercepting client streamer method #{method}" \ 73 GRPC.logger.debug "Intercepting server streamer method #{method}" \ 87 GRPC.logger.debug "Intercepting bidi streamer method #{method}" \ 106 GRPC.logger.debug "Intercepting request response method #{method}" \ 118 GRPC.logger.debug "Intercepting client streamer method #{method}" \ 131 GRPC.logger.debug "Intercepting server streamer method #{method}" \ 144 GRPC.logger.debug "Intercepting bidi streamer method #{method}" \
|
D | rpc_server.rb | 21 module GRPC module 62 GRPC.logger.warn('did not schedule job, already stopped') 65 GRPC.logger.info('schedule another job') 94 GRPC.logger.info('stopping, will wait for all the workers to exit') 105 GRPC.logger.info('stopped, all workers are shutdown') 113 GRPC.logger.info("forcibly terminating #{@workers.size} worker(s)") 119 GRPC.logger.warn('error while terminating a worker') 120 GRPC.logger.warn(e) 140 GRPC.logger.warn('Error in worker thread') 141 GRPC.logger.warn(e) [all …]
|
D | rpc_desc.rb | 18 module GRPC module 133 GRPC.logger.debug("app err:#{active_call}, status:#{e.code}:#{e.details}") 138 GRPC.logger.warn("failed call: #{active_call}\n#{e}") 142 GRPC.logger.warn("late call: #{active_call}") 151 GRPC.logger.warn("failed handler: #{active_call}; sending status:UNKNOWN") 152 GRPC.logger.warn(e) 197 GRPC.logger.debug("Sending status #{code}:#{details}") 200 GRPC.logger.warn("Could not send status #{code}:#{details}") 201 GRPC.logger.warn(e)
|
D | service.rb | 19 module GRPC module 169 GRPC.logger.debug("calling #{@host}:#{route}") 174 GRPC.logger.debug("calling #{@host}:#{route}") 179 GRPC.logger.debug("calling #{@host}:#{route}") 184 GRPC.logger.debug("calling #{@host}:#{route}")
|
D | active_call.rb | 28 GRPC.logger.debug("Failing with status #{status}") 40 module GRPC module 193 GRPC.logger.debug("sending #{req}, marshalled? #{marshalled}") 267 GRPC.logger.debug('found nil; the final response has been sent') 330 GRPC.logger.warn("In each_remote_read_then_finish: #{e}") 558 GRPC.logger.debug("active_call.wait: on #{@op_notifier}")
|
/external/grpc-grpc/src/ruby/spec/support/ |
D | services.rb | 44 GRPC.logger.info('echo service received a request') 54 GRPC.logger.info(r) 67 GRPC.logger.info(r) 78 GRPC.logger.info("Received request/response call at method #{method}" \ 81 GRPC.logger.info("[GRPC::Ok] (#{method.owner.name}.#{method.name})") 88 GRPC.logger.info("In interceptor: #{r}") 90 GRPC.logger.info( 97 GRPC.logger.info("Received server streamer call at method #{method} with request" \ 105 GRPC.logger.info("Bidi request: #{r}") 107 GRPC.logger.info("Received bidi streamer call at method #{method} with requests" \ [all …]
|
/external/grpc-grpc/src/php/tests/unit_tests/ |
D | ChannelTest.php | 170 $this->assertTrue($state == GRPC\CHANNEL_CONNECTING || 171 $state == GRPC\CHANNEL_TRANSIENT_FAILURE); 178 if ($channel->watchConnectivityState(GRPC\CHANNEL_IDLE, 197 $this->assertEquals(GRPC\CHANNEL_IDLE, $state); 199 $this->assertEquals(GRPC\CHANNEL_IDLE, $state); 225 $this->assertEquals(GRPC\CHANNEL_IDLE, $state); 227 $this->assertEquals(GRPC\CHANNEL_IDLE, $state); 238 $this->assertEquals(GRPC\CHANNEL_IDLE, $state); 279 $this->assertEquals(GRPC\CHANNEL_IDLE, $state); 330 $this->assertEquals(GRPC\CHANNEL_IDLE, $state); [all …]
|
/external/grpc-grpc/src/ruby/pb/test/ |
D | server.rb | 91 module GRPC module 148 GRPC.logger.info('interop-server: started receiving') 155 GRPC.logger.info("read a req, response size is #{resp_size}") 160 GRPC.logger.info('interop-server: finished receiving') 162 GRPC.logger.info('interop-server: failed') 163 GRPC.logger.warn(e) 243 GRPC.logger.info("... running securely on #{host}") 246 GRPC.logger.info("... running insecurely on #{host}")
|
/external/flatbuffers/grpc/ |
D | README.md | 1 GRPC implementation and test 4 NOTE: files in `src/` are shared with the GRPC project, and maintained there 5 (any changes should be submitted to GRPC instead). These files are copied 6 from GRPC, and work with both the Protobuf and FlatBuffers code generator. 8 `tests/` contains a GRPC specific test, you need to have built and installed 9 the GRPC libraries for this to compile. This test will build using the
|
/external/grpc-grpc/src/ruby/spec/ |
D | client_auth_spec.rb | 33 GRPC.logger.info("test root: #{test_root}") 62 call.each_remote_read.each { |r| GRPC.logger.info(r) } 73 requests.each { |r| GRPC.logger.info(r) } 119 responses.each { |r| GRPC.logger.info(r) } 124 responses.each { |r| GRPC.logger.info(r) }
|
/external/grpc-grpc/src/php/tests/unit_tests/PersistentChannelTests/ |
D | PersistentChannelTest.php | 41 if ($channel->watchConnectivityState(GRPC\CHANNEL_IDLE, 50 $this->assertTrue($state == GRPC\CHANNEL_CONNECTING || 51 $state == GRPC\CHANNEL_TRANSIENT_FAILURE); 70 GRPC\CHANNEL_IDLE); 83 GRPC\CHANNEL_IDLE); 109 GRPC\CHANNEL_IDLE); 186 $this->assertEquals(GRPC\CHANNEL_IDLE, $state); 286 $this->assertEquals(GRPC\CHANNEL_IDLE, $channel2_info['connectivity_status']); 300 $this->assertEquals(GRPC\CHANNEL_IDLE, $channel1_info['connectivity_status']); 309 $this->assertEquals(GRPC\CHANNEL_IDLE, $channel2_info['connectivity_status']); [all …]
|
/external/flatbuffers/tests/FlatBuffers.GRPC.Swift/ |
D | README.md | 1 # FlatBuffers.GRPC.Swift 3 The following is Swift example on how GRPC would be with Swift Flatbuffers
|
/external/grpc-grpc/doc/ |
D | health-checking.md | 1 GRPC Health Checking Protocol 12 A GRPC service is used as the health checking mechanism for both simple 15 level service provides some benefits. Firstly, since it is a GRPC service 17 it has rich semantics such as per-service health status. Thirdly, as a GRPC 59 registered, the server returns a `NOT_FOUND` GRPC status.
|
/external/grpc-grpc/templates/ |
D | grpc.gemspec.template | 10 s.version = GRPC::VERSION 14 s.summary = 'GRPC system in Ruby' 15 s.description = 'Send RPCs from Ruby using GRPC'
|
/external/grpc-grpc/examples/ruby/errors_and_cancellation/ |
D | README.md | 6 implementations by raising a certain `GRPC::BadStatus` exception. 8 On the client side, GRPC errors get raised when either:
|
/external/grpc-grpc/templates/src/ruby/lib/grpc/ |
D | version.rb.template | 17 # GRPC contains the General RPC module. 18 module GRPC
|
/external/rust/crates/grpcio-sys/grpc/summerofcode/2016/ |
D | siddharth_shukla.md | 3 The project, titled 'GRPC Python compatibility support', involved 4 collaborating with the GRPC team to improve the library compatibility 5 for the GRPC Python library. 59 - Title: GRPC Python compatibility support
|
/external/grpc-grpc/summerofcode/2016/ |
D | siddharth_shukla.md | 3 The project, titled 'GRPC Python compatibility support', involved 4 collaborating with the GRPC team to improve the library compatibility 5 for the GRPC Python library. 59 - Title: GRPC Python compatibility support
|
/external/grpc-grpc/src/python/grpcio/grpc/_cython/ |
D | README.rst | 1 GRPC Python Cython layer 4 Package for the GRPC Python Cython layer. 43 Implications for GRPC Developers
|
/external/grpc-grpc/src/objective-c/GRPCClient/private/ |
D | NSError+GRPC.m | 19 #import "NSError+GRPC.h" 25 @implementation NSError (GRPC) category
|