Lines Matching +full:real +full:- +full:world
4 The examples require `grpc-java` to already be built. You are strongly encouraged
14 - [Hello world](src/main/java/io/grpc/examples/helloworld)
16 - [Route guide](src/main/java/io/grpc/examples/routeguide)
18 - [Metadata](src/main/java/io/grpc/examples/header)
20 - [Error handling](src/main/java/io/grpc/examples/errorhandling)
22 - [Compression](src/main/java/io/grpc/examples/experimental)
24 - [Flow control](src/main/java/io/grpc/examples/manualflowcontrol)
26 - [Wait For Ready](src/main/java/io/grpc/examples/waitforready)
28 - [Json serialization](src/main/java/io/grpc/examples/advanced)
30 - <details>
41 [hello world](src/main/java/io/grpc/examples/helloworld) example, except that the server mimics a
70 See [the section below](#to-build-the-examples) for how to build and run the example. The
71 executables for the server and the client are `hedging-hello-world-server` and
72 `hedging-hello-world-client`.
92 - <details>
99 … are outlined in the [proposal](https://github.com/grpc/proposal/blob/master/A6-client-retries.md).
116 See [the section below](#to-build-the-examples) for how to build and run the example. The
117 executables for the server and the client are `retrying-hello-world-server` and
118 `retrying-hello-world-client`.
122 - <details>
136 - [Keep Alive](src/main/java/io/grpc/examples/keepalive)
138 ### <a name="to-build-the-examples"></a> To build the examples
140 …luding code generation plugin](../COMPILING.md) (Only need this step for non-released versions, e.…
142 2. From grpc-java/examples directory:
147 This creates the scripts `hello-world-server`, `hello-world-client`,
148 `route-guide-server`, `route-guide-client`, etc. in the
152 For example, to try the hello world example first run:
155 $ ./build/install/examples/bin/hello-world-server
161 $ ./build/install/examples/bin/hello-world-client
172 …luding code generation plugin](../COMPILING.md) (Only need this step for non-released versions, e.…
178 $ mvn exec:java -Dexec.mainClass=io.grpc.examples.helloworld.HelloWorldServer
180 $ mvn exec:java -Dexec.mainClass=io.grpc.examples.helloworld.HelloWorldClient
187 $ bazel build :hello-world-server :hello-world-client
189 $ bazel-bin/hello-world-server
191 $ bazel-bin/hello-world-client
196 - [Android examples](android)
198 - Secure channel examples
200 + [TLS examples](example-tls)
202 + [ALTS examples](example-alts)
204 - [Google Authentication](example-gauth)
206 - [JWT-based Authentication](example-jwt-auth)
213 in gRPC-Java library. Users should be cautious that using tools like PowerMock or
214 [mockito-inline](https://search.maven.org/search?q=g:org.mockito%20a:mockito-inline) can easily
216 examples to write unit tests. `InProcessTransport` is light-weight and runs the server
220 allows for tests that don't map to reality, causing the tests to pass, but the system-under-test to…
232 For testing a gRPC client, create the client with a real stub
240 and test it against a real client stub with an InProcessChannel.
242 The gRPC-java library also provides a JUnit rule,
248 A wide variety of third-party examples can be found [here](https://github.com/saturnism/grpc-java-b…