/external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/operators/ |
D | rx-publish.hpp | 5 /*! \file rx-publish.hpp 18 \snippet publish.cpp publish subject sample 19 \snippet output.txt publish subject sample 22 \snippet publish.cpp publish behavior sample 23 \snippet output.txt publish behavior sample 26 \snippet publish.cpp publish diamond samethread sample 27 \snippet output.txt publish diamond samethread sample 30 \snippet publish.cpp publish diamond bgthread sample 31 \snippet output.txt publish diamond bgthread sample 62 /*! @copydoc rx-publish.hpp [all …]
|
/external/Reactive-Extensions/RxCpp/Rx/v2/examples/doxygen/ |
D | publish.cpp | 40 SCENARIO("publish subject sample"){ 41 printf("//! [publish subject sample]\n"); 44 publish(); 68 printf("//! [publish subject sample]\n"); 71 SCENARIO("publish behavior sample"){ 72 printf("//! [publish behavior sample]\n"); 75 publish(0L); 99 printf("//! [publish behavior sample]\n"); 102 SCENARIO("publish diamond bgthread sample"){ 103 printf("//! [publish diamond bgthread sample]\n"); [all …]
|
/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/ |
D | ConsoleHandlerTest.java | 142 h.publish(new LogRecord(Level.SEVERE, "test")); in testConstructor_InvalidProperties() 157 h.publish(new LogRecord(Level.SEVERE, in testClose_SufficientPrivilege_NormalClose() 178 h.publish(new LogRecord(Level.SEVERE, in testClose_SufficientPrivilege_Exception() 204 * Test publish(), use no filter, having output stream, normal log record. 216 h.publish(r); in testPublish_NoFilter() 222 h.publish(r); in testPublish_NoFilter() 228 h.publish(r); in testPublish_NoFilter() 235 h.publish(r); in testPublish_NoFilter() 242 * Test publish(), after system err is reset. 257 h.publish(r); in testPublish_AfterResetSystemErr() [all …]
|
D | StreamHandlerTest.java | 158 h.publish(new LogRecord(Level.SEVERE, "test")); in testConstructor_NoParameter_InvalidProperties() 302 h.publish(new LogRecord(Level.SEVERE, in testClose_SufficientPrivilege_NormalClose() 322 h.publish(new LogRecord(Level.SEVERE, in testClose_SufficientPrivilege_Exception() 453 * Test publish(), use no filter, having output stream, normal log record. 458 h.publish(r); in testPublish_NoOutputStream() 461 h.publish(r); in testPublish_NoOutputStream() 464 h.publish(r); in testPublish_NoOutputStream() 468 h.publish(r); in testPublish_NoOutputStream() 472 * Test publish(), use no filter, having output stream, normal log record. 480 h.publish(r); in testPublish_NoFilter() [all …]
|
D | FileHandlerTest.java | 158 h.publish(r); in testLock() 174 handler.publish(r); in testFileHandler() 180 handler.publish(r); in testFileHandler() 189 handler.publish(r); in testDefaultValue() 200 handler.publish(r); in testDefaultValue() 206 handler.publish(r); in testDefaultValue() 303 handler.publish(r); in testLimitAndCount() 310 handler.publish(r); in testLimitAndCount() 322 handler.publish(rs[i]); in testLimitAndCount() 328 handler.publish(rs[i]); in testLimitAndCount() [all …]
|
D | MemoryHandlerTest.java | 302 handler.publish(lr); in testSetPushLevel() 308 handler.publish(lr); in testSetPushLevel() 315 handler.publish(new LogRecord(Level.CONFIG, "MSG1")); in testPushPublic() 318 handler.publish(new LogRecord(Level.SEVERE, "MSG2")); in testPushPublic() 323 handler.publish(new LogRecord(Level.WARNING, "MSG")); in testPushPublic() 331 handler.publish(new LogRecord(Level.CONFIG, "MSG3")); in testPushPublic() 334 handler.publish(new LogRecord(Level.FINEST, "MSG4")); in testPushPublic() 337 handler.publish(new LogRecord(Level.CONFIG, "MSG5")); in testPushPublic() 340 handler.publish(new LogRecord(Level.FINER, "MSG6")); in testPushPublic() 343 handler.publish(new LogRecord(Level.FINER, "false")); in testPushPublic() [all …]
|
D | SocketHandlerTest.java | 294 h.publish(new LogRecord(Level.SEVERE, "test")); in testConstructor_InvalidBasicProperties() 310 h.publish(new LogRecord(Level.SEVERE, "test")); in testConstructor_InvalidBasicProperties() 425 h.publish(new LogRecord(Level.SEVERE, in testClose_SufficientPrivilege_NormalClose() 461 * Test publish(), use no filter, having output stream, normal log record. 482 h.publish(r); in testPublish_NoFilter() 485 h.publish(r); in testPublish_NoFilter() 488 h.publish(r); in testPublish_NoFilter() 492 h.publish(r); in testPublish_NoFilter() 500 * Test publish(), use a filter, having output stream, normal log record. 523 h.publish(r); in testPublish_WithFilter() [all …]
|
/external/grpc-grpc/test/distrib/csharp/ |
D | run_distrib_test_dotnetcli.sh | 31 dotnet publish -f netcoreapp1.0 DistribTestDotNet.csproj 32 dotnet publish -f net45 DistribTestDotNet.csproj 37 mono bin/Debug/net45/publish/DistribTestDotNet.exe 39 # .NET 4.5 target after dotnet publish 40 mono bin/Debug/net45/publish/DistribTestDotNet.exe 45 # .NET Core target after dotnet publish 46 dotnet exec bin/Debug/netcoreapp1.0/publish/DistribTestDotNet.dll
|
/external/Reactive-Extensions/RxCpp/Rx/v2/test/operators/ |
D | publish.cpp | 2 #include <rxcpp/operators/rx-publish.hpp> 9 SCENARIO("publish range", "[!hide][range][subject][publish][subject][operators]"){ 12 auto published = rxs::range<int>(0, 10).publish(); 23 auto published = rxs::range<int>(0, 10).publish().ref_count(); 32 auto published = rxs::range<int>(0, 10).publish().connect_forever(); 43 SCENARIO("publish ref_count", "[range][subject][publish][ref_count][operators]"){ 46 auto published = rxs::range<int>(0, 3).publish().ref_count(); 66 auto published = rxs::range<double>(0, 10).publish(); 100 auto published = next.publish(); 141 SCENARIO("publish basic", "[publish][multicast][subject][operators]"){ [all …]
|
/external/scapy/scapy/contrib/ |
D | mqtt.uts | 24 publish = MQTT(s) 25 assert(publish.type == 3) 26 assert(publish.QOS == 0) 27 assert(publish.DUP == 0) 28 assert(publish.RETAIN == 0) 29 assert(publish.len == 10) 30 assert(publish[MQTTPublish].length == 4) 31 assert(publish[MQTTPublish].topic == b'test') 32 assert(publish[MQTTPublish].value == b'test')
|
/external/ims/rcs/rcsservice/src/com/android/service/ims/presence/ |
D | PresencePublication.java | 95 // Queue for the pending PUBLISH request. Just need cache the last one. 101 * Message to notify for a publish 111 * All publish errors not covered by specific errors 185 SystemProperties.getInt("rcs.publish.status", in PresencePublication() 398 logger.debug("reset PUBLISH status for IMS had been disconnected"); in onImsDisconnected() 482 * @return the Publish State 509 // if the value is true then it will call stack to send the PUBLISH in invokePublish() 510 // though the previous publish had the same capability in invokePublish() 511 // for example: for retry PUBLISH. in invokePublish() 553 logger.print("Unknown publish trigger from AP"); in invokePublish() [all …]
|
/external/ims/rcs/rcsmanager/src/java/com/android/ims/ |
D | RcsPresence.java | 92 * The intent will be broadcasted when latest publish status changed 105 * The last publish state 110 * the response of the last publish is "200 OK" 115 * The phone didn't publish after power on. 116 * the phone didn't get any publish response yet. 122 * in config_volte_provision_error_on_publish_response for PUBLISH or 129 * in config_rcs_provision_error_on_publish_response for PUBLISH or 136 * The response of the last publish is "408 Request Timeout". 142 * the response of the last publish is other temp error. Such as 288 * Get the latest publish state.
|
/external/tensorflow/tensorflow/tools/ci_build/ |
D | ci_rbe_docker_build.sh | 25 publish=false 34 if [ "$publish" = true ] ; then 54 publish=true 71 echo " -n not publish the locally-built image to GCR;" 72 echo " the build process will publish image to GCR by default"
|
/external/autotest/site_utils/ |
D | pubsub_utils.py | 25 # number of retry to publish an event. 84 @raises PubSubException if failed to publish the notification. 92 resp = pubsub.projects().topics().publish( 104 logging.exception('Failed to publish test result notification:%s', 106 raise PubSubException('Failed to publish the notification')
|
/external/dexmaker/dexmaker-mockito-inline/ |
D | build.gradle | 14 apply plugin: 'maven-publish' 15 apply plugin: 'ivy-publish' 66 …adle.api.internal.java.JavaLibrary(new org.gradle.api.internal.artifacts.publish.DefaultPublishArt… 72 …adle.api.internal.java.JavaLibrary(new org.gradle.api.internal.artifacts.publish.DefaultPublishArt…
|
/external/python/google-api-python-client/docs/dyn/ |
D | pubsub_v1beta1a.topics.html | 93 <code><a href="#publish">publish(body, x__xgafv=None)</a></code></p> 222 <code class="details" id="publish">publish(body, x__xgafv=None)</code> 230 { # Request for the Publish method. 232 "message": { # A message data and its labels. # The message to publish. 264 # not be populated by a publisher in a Publish call. 304 "messages": [ # The messages to publish. 337 # not be populated by a publisher in a Publish call.
|
D | blogger_v3.pages.html | 93 <code><a href="#patch">patch(blogId, pageId, body, revert=None, publish=None)</a></code></p> 96 <code><a href="#publish">publish(blogId, pageId)</a></code></p> 102 <code><a href="#update">update(blogId, pageId, body, revert=None, publish=None)</a></code></p> 288 <code class="details" id="patch">patch(blogId, pageId, body, revert=None, publish=None)</code> 322 …publish: boolean, Whether a publish action should be performed when the page is updated (default: … 353 <code class="details" id="publish">publish(blogId, pageId)</code> 425 <code class="details" id="update">update(blogId, pageId, body, revert=None, publish=None)</code> 459 …publish: boolean, Whether a publish action should be performed when the page is updated (default: …
|
/external/dexmaker/dexmaker-mockito-inline-extended/ |
D | build.gradle | 14 apply plugin: 'maven-publish' 15 apply plugin: 'ivy-publish' 72 …adle.api.internal.java.JavaLibrary(new org.gradle.api.internal.artifacts.publish.DefaultPublishArt… 78 …adle.api.internal.java.JavaLibrary(new org.gradle.api.internal.artifacts.publish.DefaultPublishArt…
|
/external/autotest/client/cros/ |
D | chrooted_avahi.py | 45 '[publish]\n' 46 'publish-hinfo=no\n' 47 'publish-workstation=no\n' 48 'publish-aaaa-on-ipv4=no\n' 49 'publish-a-on-ipv6=no\n'
|
/external/webrtc/webrtc/libjingle/xmpp/ |
D | hangoutpubsubclient.cc | 58 virtual void Publish(const std::string& published_nick, in Publish() function in buzz::PresenterStateClient 201 presenter_state_client_->Publish(nick_, presenting, task_id_out); in PublishPresenterState() 206 audio_mute_state_client_->Publish(nick_, muted, task_id_out); in PublishAudioMuteState() 211 video_mute_state_client_->Publish(nick_, muted, task_id_out); in PublishVideoMuteState() 216 video_pause_state_client_->Publish(nick_, paused, task_id_out); in PublishVideoPauseState() 221 recording_state_client_->Publish(nick_, recording, task_id_out); in PublishRecordingState() 227 audio_mute_state_client_->Publish(mutee_nick, true, task_id_out); in RemoteMute() 234 media_block_state_client_->Publish(blockee_nick, true, task_id_out); in BlockMedia()
|
D | hangoutpubsubclient_unittest.cc | 526 "<publish node=\"google:presenter\">" in TEST_F() 533 "</publish>" in TEST_F() 546 "<publish node=\"google:muc#media\">" in TEST_F() 550 "</publish>" in TEST_F() 562 "<publish node=\"google:muc#media\">" in TEST_F() 566 "</publish>" in TEST_F() 578 "<publish node=\"google:muc#media\">" in TEST_F() 582 "</publish>" in TEST_F() 594 "<publish node=\"google:muc#media\">" in TEST_F() 598 "</publish>" in TEST_F() [all …]
|
D | pubsubstateclient.h | 116 virtual void Publish(const std::string& published_nick, in Publish() function 182 // Nothing to retract, and nothing to publish. in OnItem() 238 // There's no point in differentiating between publish and retract in OnRetractResult() 239 // errors, so we simplify by making them both signal a publish in OnRetractResult() 248 // There's no point in differentiating between publish and retract in OnRetractError() 249 // errors, so we simplify by making them both signal a publish in OnRetractError()
|
/external/skqp/modules/pathkit/ |
D | Makefile | 14 publish: target 15 cd npm-wasm; npm publish 16 cd npm-asmjs; npm publish 21 echo "Don't forget to publish." 26 echo "Don't forget to publish." 31 echo "Don't forget to publish."
|
/external/skia/modules/pathkit/ |
D | Makefile | 14 publish: target 15 cd npm-wasm; npm publish 16 cd npm-asmjs; npm publish 21 echo "Don't forget to publish." 26 echo "Don't forget to publish." 31 echo "Don't forget to publish."
|
/external/autotest/client/cros/power/ |
D | power_test.py | 115 """Publish power result keyvals.""" 116 keyvals = self._stats.publish() 152 # publish power values 158 # publish temperature values 164 # publish to power dashboard
|