Searched refs:returns (Results 1 – 25 of 3504) sorted by relevance
12345678910>>...141
/third_party/grpc/src/proto/grpc/testing/ |
D | echo.proto | 24 rpc Echo(EchoRequest) returns (EchoResponse); 25 rpc Echo1(EchoRequest) returns (EchoResponse); 26 rpc Echo2(EchoRequest) returns (EchoResponse); 27 rpc CheckDeadlineUpperBound(SimpleRequest) returns (StringValue); 28 rpc CheckDeadlineSet(SimpleRequest) returns (StringValue); 31 rpc CheckClientInitialMetadata(SimpleRequest) returns (SimpleResponse); 32 rpc RequestStream(stream EchoRequest) returns (EchoResponse); 33 rpc ResponseStream(EchoRequest) returns (stream EchoResponse); 34 rpc BidiStream(stream EchoRequest) returns (stream EchoResponse); 35 rpc Unimplemented(EchoRequest) returns (EchoResponse); [all …]
|
D | test.proto | 30 rpc EmptyCall(grpc.testing.Empty) returns (grpc.testing.Empty); 33 rpc UnaryCall(SimpleRequest) returns (SimpleResponse); 38 rpc CacheableUnaryCall(SimpleRequest) returns (SimpleResponse); 41 // The server returns the payload with client desired type and sizes. 43 returns (stream StreamingOutputCallResponse); 46 // The server returns the aggregated size of client payload as the result. 48 returns (StreamingInputCallResponse); 54 returns (stream StreamingOutputCallResponse); 61 returns (stream StreamingOutputCallResponse); 65 rpc UnimplementedCall(grpc.testing.Empty) returns (grpc.testing.Empty); [all …]
|
D | benchmark_service.proto | 25 // The server returns the client payload as-is. 26 rpc UnaryCall(SimpleRequest) returns (SimpleResponse); 30 // The server returns the client payload as-is on each response 31 rpc StreamingCall(stream SimpleRequest) returns (stream SimpleResponse); 34 // The server returns the client payload as-is once the client does WritesDone 35 rpc StreamingFromClient(stream SimpleRequest) returns (SimpleResponse); 38 // The server repeatedly returns the client payload as-is 39 rpc StreamingFromServer(SimpleRequest) returns (stream SimpleResponse); 43 rpc StreamingBothWays(stream SimpleRequest) returns (stream SimpleResponse);
|
/third_party/typescript/tests/baselines/reference/ |
D | jsdocReturnTag1.symbols | 1 === tests/cases/conformance/jsdoc/returns.js === 3 * @returns {string} This comment is not currently exposed 6 >f : Symbol(f, Decl(returns.js, 0, 0)) 12 * @returns {string=} This comment is not currently exposed 15 >f1 : Symbol(f1, Decl(returns.js, 5, 1)) 21 * @returns {string|number} This comment is not currently exposed 24 >f2 : Symbol(f2, Decl(returns.js, 12, 1))
|
D | checkJsdocReturnTag1.symbols | 1 === tests/cases/conformance/jsdoc/returns.js === 4 * @returns {string} This comment is not currently exposed 7 >f : Symbol(f, Decl(returns.js, 0, 0)) 13 * @returns {string=} This comment is not currently exposed 16 >f1 : Symbol(f1, Decl(returns.js, 6, 1)) 22 * @returns {string|number} This comment is not currently exposed 25 >f2 : Symbol(f2, Decl(returns.js, 13, 1))
|
D | types.forAwait.es2018.3.errors.txt | 2 …ror TS2504: Type '{}' must have a '[Symbol.asyncIterator]()' method that returns an async iterator. 3 …ror TS2504: Type '{}' must have a '[Symbol.asyncIterator]()' method that returns an async iterator. 4 …ror TS2504: Type '{}' must have a '[Symbol.asyncIterator]()' method that returns an async iterator. 5 …ror TS2504: Type '{}' must have a '[Symbol.asyncIterator]()' method that returns an async iterator. 14 !!! error TS2504: Type '{}' must have a '[Symbol.asyncIterator]()' method that returns an async ite… 18 !!! error TS2504: Type '{}' must have a '[Symbol.asyncIterator]()' method that returns an async ite… 25 !!! error TS2504: Type '{}' must have a '[Symbol.asyncIterator]()' method that returns an async ite… 29 !!! error TS2504: Type '{}' must have a '[Symbol.asyncIterator]()' method that returns an async ite…
|
D | checkJsdocReturnTag2.symbols | 1 === tests/cases/conformance/jsdoc/returns.js === 4 * @returns {string} This comment is not currently exposed 7 >f : Symbol(f, Decl(returns.js, 0, 0)) 13 * @returns {string | number} This comment is not currently exposed 16 >f1 : Symbol(f1, Decl(returns.js, 6, 1))
|
D | callSignatureAssignabilityInInheritance.types | 16 (x: number): number; // ok because base returns void 19 (x: number, y: number): boolean; // ok because base returns void 23 <T>(x: T): string; // ok because base returns void 36 (x: number): string; // error because base returns non-void; 68 a: (x: number) => number; // ok because base returns void 72 a2: (x: number, y: number) => boolean; // ok because base returns void 77 a3: <T>(x: T) => string; // ok because base returns void 96 a: (x: number) => string; // error because base returns non-void; 104 a2: <T>(x: T) => string; // error because base returns non-void;
|
D | types.forAwait.es2018.2.errors.txt | 1 …ror TS2504: Type '{}' must have a '[Symbol.asyncIterator]()' method that returns an async iterator. 2 …ror TS2504: Type '{}' must have a '[Symbol.asyncIterator]()' method that returns an async iterator. 5 …88: Type 'AsyncIterable<number>' must have a '[Symbol.iterator]()' method that returns an iterator. 6 …88: Type 'AsyncIterable<number>' must have a '[Symbol.iterator]()' method that returns an iterator. 17 !!! error TS2504: Type '{}' must have a '[Symbol.asyncIterator]()' method that returns an async ite… 21 !!! error TS2504: Type '{}' must have a '[Symbol.asyncIterator]()' method that returns an async ite… 33 …88: Type 'AsyncIterable<number>' must have a '[Symbol.iterator]()' method that returns an iterator. 37 …88: Type 'AsyncIterable<number>' must have a '[Symbol.iterator]()' method that returns an iterator.
|
D | subtypingWithCallSignaturesWithSpecializedSignatures.types | 18 (x: 'a'): number; // ok because base returns void 21 (x: string, y: number): number; // ok because base returns void 25 <T>(x: T): string; // ok because base returns void 44 (x: string): string; // error because base returns non-void; 87 a: (x: string) => number; // ok because base returns void 91 a2: (x: string, y: number) => boolean; // ok because base returns void 96 a3: <T>(x: T) => string; // ok because base returns void 120 a: (x: string) => string; // error because base returns non-void; 128 a2: <T>(x: T) => string; // error because base returns non-void;
|
D | callSignatureAssignabilityInInheritance.errors.txt | 21 (x: number): number; // ok because base returns void 22 (x: number, y: number): boolean; // ok because base returns void 23 <T>(x: T): string; // ok because base returns void 34 (x: number): string; // error because base returns non-void; 55 a: (x: number) => number; // ok because base returns void 56 a2: (x: number, y: number) => boolean; // ok because base returns void 57 a3: <T>(x: T) => string; // ok because base returns void 73 a: (x: number) => string; // error because base returns non-void; 84 a2: <T>(x: T) => string; // error because base returns non-void;
|
D | smartSelection_JSDocTags1.baseline | 2 * @returns {Array<{ value: /**/string }>} 19 @returns {Array<{ value: string }>} 23 * @returns {Array<{ value: string }>} 28 * @returns {Array<{ value: string }>}
|
D | subtypingWithConstructSignaturesWithSpecializedSignatures.types | 18 new (x: 'a'): number; // ok because base returns void 21 new (x: string, y: number): number; // ok because base returns void 25 new <T>(x: T): string; // ok because base returns void 44 new (x: string): string; // error because base returns non-void; 87 a: new (x: string) => number; // ok because base returns void 91 a2: new (x: string, y: number) => boolean; // ok because base returns void 96 a3: new <T>(x: T) => string; // ok because base returns void 120 a: new (x: string) => string; // error because base returns non-void; 128 a2: new <T>(x: T) => string; // error because base returns non-void;
|
D | subtypingWithCallSignaturesWithSpecializedSignatures.errors.txt | 23 (x: 'a'): number; // ok because base returns void 24 (x: string, y: number): number; // ok because base returns void 25 <T>(x: T): string; // ok because base returns void 38 (x: string): string; // error because base returns non-void; 65 a: (x: string) => number; // ok because base returns void 66 a2: (x: string, y: number) => boolean; // ok because base returns void 67 a3: <T>(x: T) => string; // ok because base returns void 86 a: (x: string) => string; // error because base returns non-void; 97 a2: <T>(x: T) => string; // error because base returns non-void;
|
D | checkJsdocReturnTag2.errors.txt | 1 tests/cases/conformance/jsdoc/returns.js(6,5): error TS2322: Type 'number' is not assignable to typ… 2 tests/cases/conformance/jsdoc/returns.js(13,5): error TS2322: Type 'number | boolean' is not assign… 6 ==== tests/cases/conformance/jsdoc/returns.js (2 errors) ==== 9 * @returns {string} This comment is not currently exposed 18 * @returns {string | number} This comment is not currently exposed
|
D | subtypingWithConstructSignaturesWithSpecializedSignatures.errors.txt | 23 new (x: 'a'): number; // ok because base returns void 24 new (x: string, y: number): number; // ok because base returns void 25 new <T>(x: T): string; // ok because base returns void 38 new (x: string): string; // error because base returns non-void; 65 a: new (x: string) => number; // ok because base returns void 66 a2: new (x: string, y: number) => boolean; // ok because base returns void 67 a3: new <T>(x: T) => string; // ok because base returns void 86 a: new (x: string) => string; // error because base returns non-void; 97 a2: new <T>(x: T) => string; // error because base returns non-void;
|
/third_party/openssl/doc/man3/ |
D | SSL_CIPHER_get_name.pod | 44 SSL_CIPHER_get_name() returns a pointer to the name of B<cipher>. If the 45 B<cipher> is NULL, it returns "(NONE)". 47 SSL_CIPHER_standard_name() returns a pointer to the standard RFC name of 48 B<cipher>. If the B<cipher> is NULL, it returns "(NONE)". If the B<cipher> 49 has no standard name, it returns B<NULL>. If B<cipher> was defined in both 50 SSLv3 and TLS, it returns the TLS name. 52 OPENSSL_cipher_name() returns a pointer to the OpenSSL name of B<stdname>. 54 it returns "(NONE)". Where both exist, B<stdname> should be the TLS name rather 57 SSL_CIPHER_get_bits() returns the number of secret bits used for B<cipher>. 60 SSL_CIPHER_get_version() returns string which indicates the SSL/TLS protocol [all …]
|
D | SSL_CTX_sess_number.pod | 26 SSL_CTX_sess_number() returns the current number of sessions in the internal 29 SSL_CTX_sess_connect() returns the number of started SSL/TLS handshakes in 32 SSL_CTX_sess_connect_good() returns the number of successfully established 35 SSL_CTX_sess_connect_renegotiate() returns the number of started renegotiations 38 SSL_CTX_sess_accept() returns the number of started SSL/TLS handshakes in 41 SSL_CTX_sess_accept_good() returns the number of successfully established 44 SSL_CTX_sess_accept_renegotiate() returns the number of started renegotiations 47 SSL_CTX_sess_hits() returns the number of successfully reused sessions. 52 SSL_CTX_sess_cb_hits() returns the number of successfully retrieved sessions 55 SSL_CTX_sess_misses() returns the number of sessions proposed by clients [all …]
|
D | RSA_size.pod | 19 RSA_size() returns the RSA modulus size in bytes. It can be used to 23 RSA_bits() returns the number of significant bits. 27 RSA_security_bits() returns the number of security bits of the given B<rsa> 32 RSA_size() returns the size of modulus in bytes. 34 DSA_bits() returns the number of bits in the key. 36 RSA_security_bits() returns the number of security bits.
|
/third_party/grpc/examples/php/echo/ |
D | echo.proto | 65 // The server returns the client message as-is. 66 rpc Echo(EchoRequest) returns (EchoResponse); 69 rpc EchoAbort(EchoRequest) returns (EchoResponse) {} 73 rpc NoOp(Empty) returns (Empty); 78 returns (stream ServerStreamingEchoResponse); 83 returns (stream ServerStreamingEchoResponse) {} 86 // The server returns the total number of messages as the result. 88 returns (ClientStreamingEchoResponse); 91 // The server returns the same client messages in order. 93 rpc FullDuplexEcho(stream EchoRequest) returns (stream EchoResponse); [all …]
|
/third_party/boost/libs/regex/doc/ |
D | sub_match.qbk | 341 [*Effects]: returns the length of this matched sub-expression, or 0 348 [*Effects]: converts `*this` into a string: returns 355 [*Effects]: returns a string representation of `*this`: 362 [*Effects]: performs a lexical comparison to /s/: returns `str().compare(s.str())`. 368 [*Effects]: compares `*this` to the string /s/: returns `str().compare(s)`. 374 [*Effects]: compares `*this` to the null-terminated string /s/: returns `str().compare(s)`. 390 [*Effects]: returns a sequence containing all the captures obtained for this 413 [*Effects]: returns `lhs.compare(rhs) == 0`. 421 [*Effects]: returns `lhs.compare(rhs) != 0`. 429 [*Effects]: returns `lhs.compare(rhs) < 0`. [all …]
|
/third_party/grpc/src/python/grpcio_tests/tests/protoc_plugin/protos/service/ |
D | test_service.proto | 24 // The server returns the client payload as-is. 25 rpc UnaryCall(SimpleRequest) returns (SimpleResponse); 28 // The server returns the payload with client desired type and sizes. 30 returns (stream StreamingOutputCallResponse); 33 // The server returns the aggregated size of client payload as the result. 35 returns (StreamingInputCallResponse); 41 returns (stream StreamingOutputCallResponse); 48 returns (stream StreamingOutputCallResponse);
|
/third_party/mindspore/mindspore/ccsrc/debug/debugger/ |
D | debug_grpc.proto | 24 rpc WaitCMD (Metadata) returns (EventReply) {}; 25 rpc SendMetadata (Metadata) returns (EventReply) {}; 26 rpc SendGraph (stream Chunk) returns (EventReply) {}; 27 rpc SendTensors (stream TensorProto) returns (EventReply) {}; 28 rpc SendTensorBase (stream TensorBase) returns (EventReply) {}; 29 rpc SendTensorStats (stream TensorSummary) returns (EventReply) {}; 30 rpc SendWatchpointHits (stream WatchpointHit) returns (EventReply) {}; 31 rpc SendMultiGraphs (stream Chunk) returns (EventReply) {}; 32 rpc SendHeartbeat (Heartbeat) returns (EventReply) {};
|
/third_party/grpc/src/objective-c/examples/RemoteTestClient/ |
D | test.proto | 30 rpc EmptyCall(google.protobuf.Empty) returns (google.protobuf.Empty); 33 rpc UnaryCall(SimpleRequest) returns (SimpleResponse); 36 // The server returns the payload with client desired type and sizes. 38 returns (stream StreamingOutputCallResponse); 41 // The server returns the aggregated size of client payload as the result. 43 returns (StreamingInputCallResponse); 49 returns (stream StreamingOutputCallResponse); 56 returns (stream StreamingOutputCallResponse);
|
/third_party/grpc/src/objective-c/tests/RemoteTestClient/ |
D | test.proto | 30 rpc EmptyCall(google.protobuf.Empty) returns (google.protobuf.Empty); 33 rpc UnaryCall(SimpleRequest) returns (SimpleResponse); 36 // The server returns the payload with client desired type and sizes. 38 returns (stream StreamingOutputCallResponse); 41 // The server returns the aggregated size of client payload as the result. 43 returns (StreamingInputCallResponse); 49 returns (stream StreamingOutputCallResponse); 56 returns (stream StreamingOutputCallResponse);
|
12345678910>>...141