/third_party/boost/libs/beast/doc/qbk/04_http/ |
D | 04_serializer_streams.qbk | 15 * Send the header first, and the body later. 17 * Send a message incrementally: bounded work in each I/O cycle. 78 Send everything in a __serializer__ to a __SyncWriteStream__. 83 Send everything in a __serializer__ asynchronously to an __AsyncWriteStream__. 88 Send only the header from a __serializer__ to a __SyncWriteStream__. 93 Send only the header from a __serializer__ asynchronously to an __AsyncWriteStream__. 98 Send part of a __serializer__ to a __SyncWriteStream__. 103 Send part of a __serializer__ asynchronously to an __AsyncWriteStream__.
|
/third_party/node/src/ |
D | cares_wrap.h | 241 int Send(const char* name) { in Send() function 242 return Traits::Send(this, name); in Send() 402 static int Send(QueryWrap<AnyTraits>* wrap, const char* name); 410 static int Send(QueryWrap<ATraits>* wrap, const char* name); 418 static int Send(QueryWrap<AaaaTraits>* wrap, const char* name); 426 static int Send(QueryWrap<CaaTraits>* wrap, const char* name); 434 static int Send(QueryWrap<CnameTraits>* wrap, const char* name); 442 static int Send(QueryWrap<MxTraits>* wrap, const char* name); 450 static int Send(QueryWrap<NsTraits>* wrap, const char* name); 458 static int Send(QueryWrap<TxtTraits>* wrap, const char* name); [all …]
|
D | udp_wrap.h | 95 virtual ssize_t Send(uv_buf_t* bufs, 134 static void Send(const v8::FunctionCallbackInfo<v8::Value>& args); 166 ssize_t Send(uv_buf_t* bufs,
|
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/gpu/nccl/ |
D | nccl_send_gpu_kernel.cc | 22 …Send, KernelAttr().AddAllSameAttr(true).AddInputAttr(kNumberTypeFloat32).AddOutputAttr(kNumberType… 25 …Send, KernelAttr().AddAllSameAttr(true).AddInputAttr(kNumberTypeFloat16).AddOutputAttr(kNumberType… 27 MS_REG_GPU_KERNEL_ONE(Send,
|
/third_party/flatbuffers/tests/MyGame/Example/ |
D | MonsterStorage_grpc.go | 89 Send(*flatbuffers.Builder) error methodSpec 98 func (x *monsterStorageGetMaxHitPointClient) Send(m *flatbuffers.Builder) error { func 124 Send(*flatbuffers.Builder) error methodSpec 133 func (x *monsterStorageGetMinMaxHitPointsClient) Send(m *flatbuffers.Builder) error { func 211 Send(*flatbuffers.Builder) error methodSpec 219 func (x *monsterStorageRetrieveServer) Send(m *flatbuffers.Builder) error { func 254 Send(*flatbuffers.Builder) error methodSpec 263 func (x *monsterStorageGetMinMaxHitPointsServer) Send(m *flatbuffers.Builder) error { func
|
/third_party/mindspore/mindspore/core/mindrt/include/async/ |
D | async.h | 57 (void)ActorMgr::GetActorMgrRef()->Send(aid, std::move(msg)); 73 (void)ActorMgr::GetActorMgrRef()->Send(aid, std::move(msg)); 89 (void)ActorMgr::GetActorMgrRef()->Send(aid, std::move(msg)); 107 (void)ActorMgr::GetActorMgrRef()->Send(aid, std::move(msg)); 120 (void)ActorMgr::GetActorMgrRef()->Send(aid, std::move(msg)); 133 (void)ActorMgr::GetActorMgrRef()->Send(aid, std::move(msg)); 157 (void)ActorMgr::GetActorMgrRef()->Send(aid, std::move(msg)); 176 (void)ActorMgr::GetActorMgrRef()->Send(aid, std::move(msg)); 195 (void)ActorMgr::GetActorMgrRef()->Send(aid, std::move(msg)); 222 (void)ActorMgr::GetActorMgrRef()->Send(aid, std::move(msg)); [all …]
|
/third_party/flutter/engine/flutter/shell/platform/common/cpp/client_wrapper/include/flutter/ |
D | basic_message_channel.h | 49 void Send(const T& message) { in Send() function 52 messenger_->Send(name_, raw_message->data(), raw_message->size()); in Send() 56 void Send(const T& message, BinaryReply reply) { in Send() function 59 messenger_->Send(name_, raw_message->data(), raw_message->size(), reply); in Send()
|
D | binary_messenger.h | 36 virtual void Send(const std::string& channel, 42 virtual void Send(const std::string& channel,
|
/third_party/mindspore/mindspore/core/mindrt/include/actor/ |
D | actorapp.h | 44 …inline int Send(const AID &to, std::unique_ptr<MessageBase> msg) { return ActorBase::Send(to, std:… in Send() function 47 int Send(const std::string &to, const std::string &msgName, std::unique_ptr<M> msg) { in Send() function 51 return Send(to, std::move(localMsg)); in Send()
|
/third_party/flutter/engine/flutter/shell/platform/common/cpp/client_wrapper/ |
D | plugin_registrar.cc | 66 void Send(const std::string& channel, 71 void Send(const std::string& channel, 89 void BinaryMessengerImpl::Send(const std::string& channel, in Send() function in flutter::BinaryMessengerImpl 96 void BinaryMessengerImpl::Send(const std::string& channel, in Send() function in flutter::BinaryMessengerImpl
|
/third_party/curl/docs/cmdline-opts/ |
D | haproxy-protocol.d | 2 Help: Send HAProxy PROXY protocol v1 header 7 Send a HAProxy PROXY protocol v1 header at the beginning of the connection. This
|
/third_party/cef/libcef/common/mojom/ |
D | cef.mojom | 55 // Send a message to the render process. 58 // Send a command. 61 // Send a command that returns an async response. 67 // Send JavaScript for execution. 84 // Send a message to the browser process.
|
/third_party/mindspore/mindspore/core/mindrt/src/actor/ |
D | actor.cc | 141 int ActorBase::Send(const AID &to, std::unique_ptr<MessageBase> msg) { in Send() function in mindspore::ActorBase 143 return ActorMgr::GetActorMgrRef()->Send(to, std::move(msg)); in Send() 145 int ActorBase::Send(const AID &to, std::string &&name, std::string &&strMsg, bool remoteLink, bool … in Send() function in mindspore::ActorBase 149 return ActorMgr::GetActorMgrRef()->Send(to, std::move(msg), remoteLink, isExactNotRemote); in Send()
|
D | actormgr.h | 48 (void)ActorMgr::GetActorMgrRef()->Send(AID(to), std::move(msg)); in Receive() 65 …int Send(const AID &to, std::unique_ptr<MessageBase> msg, bool remoteLink = false, bool isExactNot…
|
/third_party/python/Doc/library/ |
D | nntplib.rst | 218 Send a ``QUIT`` command and close the connection. Once this method has been 245 Send ``AUTHINFO`` commands with the user name and password. If *user* 260 Send a ``STARTTLS`` command. This will enable encryption on the NNTP 279 Send a ``NEWGROUPS`` command. The *date* argument should be a 295 Send a ``NEWNEWS`` command. Here, *group* is a group name or ``'*'``, and 304 Send a ``LIST`` or ``LIST ACTIVE`` command. Return a pair 332 Send a ``LIST NEWSGROUPS`` command, where *grouppattern* is a wildmat string as 356 Send a ``GROUP`` command, where *name* is the group name. The group is 366 Send an ``OVER`` command, or an ``XOVER`` command on legacy servers. 409 Send a ``HELP`` command. Return a pair ``(response, list)`` where *list* is a [all …]
|
/third_party/flutter/flutter/examples/flutter_gallery/lib/demo/ |
D | contacts_demo.dart | 193 tooltip: 'Send message', 206 tooltip: 'Send message', 219 tooltip: 'Send message', 238 tooltip: 'Send personal e-mail', 251 tooltip: 'Send work e-mail',
|
/third_party/node/src/inspector/ |
D | worker_agent.cc | 22 void Send(const std::string& id, const std::string& message); 61 workers_->Send(id_, message); in SendMessageToFrontend() 138 void NodeWorkers::Send(const std::string& id, const std::string& message) { in Send() function in node::inspector::protocol::NodeWorkers
|
/third_party/skia/third_party/externals/spirv-tools/utils/vscode/src/lsp/jsonrpc2/ |
D | handler.go | 77 Send = Direction(true) const 84 case Send:
|
/third_party/mindspore/tests/st/nccl/ |
D | test_nccl_send_recv_op.py | 24 from mindspore.ops.operations._inner_ops import Send, Receive 42 self.send = Send(sr_tag=0, dest_rank=rank+size//2, group=NCCL_WORLD_COMM_GROUP)
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/vscode/src/lsp/jsonrpc2/ |
D | handler.go | 77 Send = Direction(true) const 84 case Send:
|
/third_party/spirv-tools/utils/vscode/src/lsp/jsonrpc2/ |
D | handler.go | 77 Send = Direction(true) const 84 case Send:
|
/third_party/mindspore/mindspore/ccsrc/ps/core/communicator/ |
D | tcp_communicator.h | 94 …if (!abstrace_node_->Send(NodeRole::SERVER, rank_id, msg, msg_str.size(), static_cast<int>(command… 99 …if (!abstrace_node_->Send(NodeRole::SERVER, rank_id, msg, msg_str.size(), static_cast<int>(command…
|
/third_party/grpc/src/objective-c/manual_tests/GrpcIosTestUITests/ |
D | GrpcIosTestUITests.m | 138 // Send test app to background 157 // Send test app to background 167 [self pressButton:@"Send Message"]; 218 // Send test app to background 245 [self pressButton:@"Send Message"]; 313 [self pressButton:@"Send Message"];
|
/third_party/mindspore/mindspore/ccsrc/runtime/device/gpu/distribution/ |
D | collective_wrapper.cc | 57 ncclResult_t Send(const void *send_addr, size_t count, ncclDataType_t data_type, int peer_rank, cud… in Send() function 59 return NCCLWrapper::instance().Send(send_addr, count, data_type, peer_rank, stream, group_name); in Send()
|
/third_party/mindspore/mindspore/ccsrc/ps/core/ |
D | abstract_node.h | 92 …bool Send(const NodeRole &node_role, const uint32_t &rank_id, const DataPtr &data, size_t len, int… 94 …bool Send(const NodeRole &node_role, const std::vector<uint32_t> &rank_ids, const std::vector<Data… 96 …bool Send(const NodeRole &node_role, const uint32_t &rank_id, const DataPtr &message, size_t len, … 98 …bool Send(const NodeRole &node_role, const std::vector<uint32_t> &rank_ids, const std::vector<Data…
|