Searched full:helloworld (Results 1 – 25 of 269) sorted by relevance
1234567891011
12 goog.exportSymbol('proto.helloworld.HelloReply', null, global);13 goog.exportSymbol('proto.helloworld.HelloRequest', null, global);25 proto.helloworld.HelloRequest = function(opt_data) {28 goog.inherits(proto.helloworld.HelloRequest, jspb.Message);30 proto.helloworld.HelloRequest.displayName = 'proto.helloworld.HelloRequest';45 proto.helloworld.HelloRequest.prototype.toObject = function(opt_includeInstance) {46 return proto.helloworld.HelloRequest.toObject(opt_includeInstance, this);55 * @param {!proto.helloworld.HelloRequest} msg The msg instance to transform.58 proto.helloworld.HelloRequest.toObject = function(includeInstance, msg) {74 * @return {!proto.helloworld.HelloRequest}[all …]
15 …31D47F0E63 /* libPods-HelloWorld.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6B4E1F55F8A2E…19 …HelloWorld.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = …20 …3800040F884 /* HelloWorld.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application…28 …EE88 /* libPods-HelloWorld.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeI…29 …HelloWorld.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = te…37 EF61CF6AE2536A31D47F0E63 /* libPods-HelloWorld.a in Frameworks */,48 5E3690621B2A23800040F884 /* HelloWorld */,58 5E3690601B2A23800040F884 /* HelloWorld.app */,63 5E3690621B2A23800040F884 /* HelloWorld */ = {68 path = HelloWorld;[all …]
21 This [Makefile](../examples/cpp/helloworld/Makefile#L37#L45) demonstrates32 Here we use `examples/cpp/helloworld` as an example to show the use of gRPC39 [Makefile](../examples/cpp/helloworld/Makefile) of the helloworld example. We43 $ make -C examples/cpp/helloworld44 $ examples/cpp/helloworld/greeter_server &69 helloworld.Greeter81 $ grpc_cli ls localhost:50051 helloworld.Greeter -l86 filename: helloworld.proto87 package: helloworld;89 rpc SayHello(helloworld.HelloRequest) returns (helloworld.HelloReply) {}[all …]
88 helloworld.Greeter102 $ grpc_cli ls localhost:50051 helloworld.Greeter -l105 `helloworld.Greeter` is full name of the service.110 filename: helloworld.proto111 package: helloworld;113 rpc SayHello(helloworld.HelloRequest) returns (helloworld.HelloReply) {}126 $ grpc_cli ls localhost:50051 helloworld.Greeter.SayHello -l129 `helloworld.Greeter.SayHello` is full name of the method.134 rpc SayHello(helloworld.HelloRequest) returns (helloworld.HelloReply) {}145 $ grpc_cli type localhost:50051 helloworld.HelloRequest[all …]
2 // source: helloworld.proto26 namespace Helloworld { namespace32 static readonly string __ServiceName = "helloworld.Greeter";34 …Helloworld.HelloRequest> __Marshaller_HelloRequest = grpc::Marshallers.Create((arg) => global::Goo…35 …Helloworld.HelloReply> __Marshaller_HelloReply = grpc::Marshallers.Create((arg) => global::Google.…37 …al::Helloworld.HelloRequest, global::Helloworld.HelloReply> __Method_SayHello = new grpc::Method<g…47 get { return global::Helloworld.HelloworldReflection.Descriptor.Services[0]; }59 …irtual global::System.Threading.Tasks.Task<global::Helloworld.HelloReply> SayHello(global::Hellowo… in SayHello()97 …public virtual global::Helloworld.HelloReply SayHello(global::Helloworld.HelloRequest request, grp… in SayHello()107 …public virtual global::Helloworld.HelloReply SayHello(global::Helloworld.HelloRequest request, grp… in SayHello()[all …]
3 // source: helloworld.proto25 namespace Helloworld { namespace31 static readonly string __ServiceName = "helloworld.Greeter";33 …Helloworld.HelloRequest> __Marshaller_helloworld_HelloRequest = grpc::Marshallers.Create((arg) => …34 …Helloworld.HelloReply> __Marshaller_helloworld_HelloReply = grpc::Marshallers.Create((arg) => glob…36 …al::Helloworld.HelloRequest, global::Helloworld.HelloReply> __Method_SayHello = new grpc::Method<g…46 get { return global::Helloworld.HelloworldReflection.Descriptor.Services[0]; }58 …irtual global::System.Threading.Tasks.Task<global::Helloworld.HelloReply> SayHello(global::Hellowo… in SayHello()96 …public virtual global::Helloworld.HelloReply SayHello(global::Helloworld.HelloRequest request, grp… in SayHello()106 …public virtual global::Helloworld.HelloReply SayHello(global::Helloworld.HelloRequest request, grp… in SayHello()[all …]
18 BuildableName = "HelloWorld.app"19 BlueprintName = "HelloWorld"20 ReferencedContainer = "container:HelloWorld.xcodeproj">36 BuildableName = "HelloWorld.app"37 BlueprintName = "HelloWorld"38 ReferencedContainer = "container:HelloWorld.xcodeproj">59 BuildableName = "HelloWorld.app"60 BlueprintName = "HelloWorld"61 ReferencedContainer = "container:HelloWorld.xcodeproj">78 BuildableName = "HelloWorld.app"[all …]
2 # source: helloworld.proto19 name='helloworld.proto',20 package='helloworld',22 …\x01 \x01(\t2I\n\x07Greeter\x12>\n\x08SayHello\x12\x18.helloworld.HelloRequest\x1a\x16.helloworld.…30 full_name='helloworld.HelloRequest',36 name='name', full_name='helloworld.HelloRequest.name', index=0,61 full_name='helloworld.HelloReply',67 name='message', full_name='helloworld.HelloReply.message', index=0,96 # @@protoc_insertion_point(class_scope:helloworld.HelloRequest)103 # @@protoc_insertion_point(class_scope:helloworld.HelloReply)[all …]
13 Here's a (boring) `HelloWorld` class:16 package com.example.helloworld;18 public final class HelloWorld {35 TypeSpec helloWorld = TypeSpec.classBuilder("HelloWorld")40 JavaFile javaFile = JavaFile.builder("com.example.helloworld", helloWorld)47 type, parameters and code statements. We add the main method to a `HelloWorld` class, and then add48 that to a `HelloWorld.java` file.163 TypeSpec helloWorld = TypeSpec.classBuilder("HelloWorld")170 JavaFile javaFile = JavaFile.builder("com.example.helloworld", helloWorld)187 public final class HelloWorld {[all …]
18 `examples/src/main/java/io/grpc/examples/helloworld/HelloWorldServer.java`, we32 --- a/examples/src/main/java/io/grpc/examples/helloworld/HelloWorldServer.java33 +++ b/examples/src/main/java/io/grpc/examples/helloworld/HelloWorldServer.java34 @@ -33,6 +33,7 @@ package io.grpc.examples.helloworld;91 helloworld.Greeter103 $ ./grpc_cli ls localhost:50051 helloworld.Greeter -l108 filename: helloworld.proto109 package: helloworld;111 rpc SayHello(helloworld.HelloRequest) returns (helloworld.HelloReply) {}124 $ ./grpc_cli ls localhost:50051 helloworld.Greeter.SayHello -l[all …]
8 #include "HelloWorld.h"19 return new HelloWorld(argc, argv, platformData); in Create()22 HelloWorld::HelloWorld(int argc, char** argv, void* platformData) in HelloWorld() function in HelloWorld36 HelloWorld::~HelloWorld() { in ~HelloWorld()41 void HelloWorld::updateTitle() { in updateTitle()51 void HelloWorld::onBackendCreated() { in onBackendCreated()57 void HelloWorld::onPaint(SkCanvas* canvas) { in onPaint()105 void HelloWorld::onIdle() { in onIdle()110 bool HelloWorld::onChar(SkUnichar c, uint32_t modifiers) { in onChar()
8 #include "HelloWorld.h"19 return new HelloWorld(argc, argv, platformData); in Create()22 HelloWorld::HelloWorld(int argc, char** argv, void* platformData) in HelloWorld() function in HelloWorld36 HelloWorld::~HelloWorld() { in ~HelloWorld()41 void HelloWorld::updateTitle() { in updateTitle()51 void HelloWorld::onBackendCreated() { in onBackendCreated()57 void HelloWorld::onPaint(SkSurface* surface) { in onPaint()107 void HelloWorld::onIdle() { in onIdle()112 bool HelloWorld::onChar(SkUnichar c, uint32_t modifiers) { in onChar()
15 # cmake "superbuild" file for C++ helloworld example.16 # This build file demonstrates how to build the helloworld project20 # including the "helloworld" project itself.26 project(HelloWorld-SuperBuild C CXX)97 # Build the helloworld projects itself using a CMakeLists.txt that assumes all the dependencies99 # Even though helloworld is not really an "external project" from perspective of this build,101 # to locate all the dependencies (if we were building helloworld directly in this build we,104 ExternalProject_Add(helloworld105 PREFIX helloworld107 BINARY_DIR "${CMAKE_CURRENT_BINARY_DIR}/helloworld"
41 greeter_client: helloworld.pb.o helloworld.grpc.pb.o greeter_client.o44 greeter_server: helloworld.pb.o helloworld.grpc.pb.o greeter_server.o47 greeter_async_client: helloworld.pb.o helloworld.grpc.pb.o greeter_async_client.o50 greeter_async_client2: helloworld.pb.o helloworld.grpc.pb.o greeter_async_client2.o53 greeter_async_server: helloworld.pb.o helloworld.grpc.pb.o greeter_async_server.o
18 Change your current directory to examples/cpp/helloworld21 $ cd examples/cpp/helloworld/37 [helloworld.proto](../../protos/helloworld.proto). The `Greeting`49 package helloworld;81 $ make helloworld.grpc.pb.cc helloworld.pb.cc86 …I ../../protos/ --grpc_out=. --plugin=protoc-gen-grpc=grpc_cpp_plugin ../../protos/helloworld.proto87 $ protoc -I ../../protos/ --cpp_out=. ../../protos/helloworld.proto104 auto stub = helloworld::Greeter::NewStub(channel);207 helloworld::Greeter::AsyncService service;
... 4/example/hello/testsuite/lib/helloworld-driver.exp dejagnu-1.4.4/ ...
2 # source: helloworld.proto7 add_message "helloworld.HelloRequest" do10 add_message "helloworld.HelloReply" do15 module Helloworld module16 …HelloRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("helloworld.HelloRequest").m…17 …HelloReply = Google::Protobuf::DescriptorPool.generated_pool.lookup("helloworld.HelloReply").msgcl…
20 …-grpc_out=./ --plugin=protoc-gen-grpc=./../../bins/opt/grpc_php_plugin ./../protos/helloworld.proto24 @include_once dirname(__FILE__).'/Helloworld/GreeterClient.php';25 @include_once dirname(__FILE__).'/Helloworld/HelloReply.php';26 @include_once dirname(__FILE__).'/Helloworld/HelloRequest.php';27 @include_once dirname(__FILE__).'/GPBMetadata/Helloworld.php';31 $client = new Helloworld\GreeterClient('localhost:50051', [34 $request = new Helloworld\HelloRequest();
6 #java -jar smali.jar -o classes.dex HelloWorld.smali7 #zip HelloWorld.zip classes.dex8 #adb push HelloWorld.zip /data/local9 #adb shell dalvikvm -cp /data/local/HelloWorld.zip HelloWorld12 #java -Xmx512m -jar smali.jar HelloWorld.smali
32 name = "helloworld",33 srcs = ["protos/helloworld.proto"],43 srcs = ["cpp/helloworld/greeter_client.cc"],45 deps = [":helloworld", "//:grpc++"],50 srcs = ["cpp/helloworld/greeter_server.cc"],52 deps = [":helloworld", "//:grpc++"],
48 final ClassGen cg = createClassGen("HelloWorld"); in testCreateIntegerElementValue()62 final ClassGen cg = createClassGen("HelloWorld"); in testCreateFloatElementValue()76 final ClassGen cg = createClassGen("HelloWorld"); in testCreateDoubleElementValue()90 final ClassGen cg = createClassGen("HelloWorld"); in testCreateLongElementValue()104 final ClassGen cg = createClassGen("HelloWorld"); in testCreateCharElementValue()118 final ClassGen cg = createClassGen("HelloWorld"); in testCreateByteElementValue()132 final ClassGen cg = createClassGen("HelloWorld"); in testCreateBooleanElementValue()146 final ClassGen cg = createClassGen("HelloWorld"); in testCreateShortElementValue()162 // Create HelloWorld in testCreateStringElementValue()163 final ClassGen cg = createClassGen("HelloWorld"); in testCreateStringElementValue()[all …]