Lines Matching +full:check +full:- +full:examples
8 The example requires grpc-java to already be built. You are strongly encouraged
9 to check out a git release tag, since there will already be a build of grpc
14 1. Build the hello-world example client. See [the examples README](../README.md)
16 2. Build this server. From the `grpc-java/examples/examples-hostname` directory:
21 This creates the script `build/install/hostname-server/bin/hostname-server` that
27 $ ./build/install/hostname-server/bin/hostname-server
30 And in a different terminal window run the hello-world client:
33 $ ../build/install/examples/bin/hello-world-client
39 1. Build the hello-world example client. See [the examples README](../README.md)
44 $ # Run the server (from the examples-hostname directory)
45 $ mvn exec:java -Dexec.mainClass=io.grpc.examples.hostname.HostnameServer
46 $ # In another terminal run the client (from the examples directory)
48 $ mvn exec:java -Dexec.mainClass=io.grpc.examples.helloworld.HelloWorldClient
53 If you prefer to use Bazel, run from the `grpc-java/examples` directory:
55 $ bazel build :hello-world-client example-hostname:hostname-server
57 $ ./bazel-bin/example-hostname/hostname-server
59 $ ./bazel-bin/hello-world-client