Home
last modified time | relevance | path

Searched refs:watch (Results 1 – 25 of 37950) sorted by path

12345678910>>...1518

/dports/accessibility/at-spi2-core/at-spi2-core-2.36.0/atspi/
H A Datspi-gmain.c110 DBusWatch *watch; member
156 if (handler->watch) in io_handler_source_finalized()
186 handler->watch = NULL; in io_handler_watch_freed()
241 if (!dbus_watch_get_enabled (watch)) in connection_setup_add_watch()
254 handler->watch = watch; in connection_setup_add_watch()
399 add_watch (DBusWatch *watch, in add_watch() argument
412 remove_watch (DBusWatch *watch, in remove_watch() argument
423 watch_toggled (DBusWatch *watch, in watch_toggled() argument
429 if (dbus_watch_get_enabled (watch)) in watch_toggled()
430 add_watch (watch, data); in watch_toggled()
[all …]
/dports/accessibility/feedbackd/feedbackd-b2a8061cdc7be4fa76f7fa976c67bac4f5a0055c/
H A DEvent-naming-spec-0.0.0.md80 - timeout-completed: A user configured timeout completed (e.g. a stop watch).
/dports/accessibility/feedbackd/feedbackd-b2a8061cdc7be4fa76f7fa976c67bac4f5a0055c/cli/
H A Dfbcli.c136 int watch = 30; in main() local
145 {"watch", 'w', 0, G_OPTION_ARG_INT, &watch, in main()
169 g_timeout_add_seconds (watch, (GSourceFunc)on_watch_expired, NULL); in main()
/dports/accessibility/py-speech-dispatcher/speech-dispatcher-0.10.2/locale/en/
H A Demojis.dic913watch none
/dports/accessibility/speech-dispatcher/speech-dispatcher-0.10.2/locale/en/
H A Demojis.dic913watch none
/dports/accessibility/wl-gammarelay-rs/wl-gammarelay-rs-0.2.1/
H A DREADME.md35 "exec": "wl-gammarelay-rs watch {t}",
41 "exec": "wl-gammarelay-rs watch {bp}",
49 You can run `wl-gammarelay-rs watch <format>` to watch for changes. Each time some property changes…
53 $ wl-gammarelay-rs watch "{t}K {bp}%"
/dports/accessibility/wl-gammarelay-rs/wl-gammarelay-rs-0.2.1/cargo-crates/hashbrown-0.11.2/
H A DREADME.md22 [CppCon talk]: https://www.youtube.com/watch?v=ncHmEUmJZf4
/dports/accessibility/wl-gammarelay-rs/wl-gammarelay-rs-0.2.1/cargo-crates/sha1_smol-1.0.0/
H A DMakefile4 watch: target
5 @cargo watch
7 watch-docs:
8 @cargo watch build "doc --no-deps"
/dports/accessibility/wl-gammarelay-rs/wl-gammarelay-rs-0.2.1/cargo-crates/tokio-1.16.1/
H A DCHANGELOG.md46 - sync: `watch::Receiver::has_changed()` ([#4342])
153 - sync: add `watch::Sender::send_replace` ([#3962], [#4195])
246 - watch: add `watch::Sender::subscribe` ([#3800])
303 - sync: document when `watch::send` fails ([#4021])
389 - sync: add `watch::Receiver::borrow_and_update` ([#3813])
444 - sync: add `receiver_count` to `watch::Sender` ([#3729])
802 - sync: spurious wakeup in `watch` ([#3234]).
832 - sync: `watch::Sender::borrow()` ([#3269]).
867 - watch: fix spurious wakeup ([#3244])
996 - sync: `watch::Sender::is_closed()` ([#2991]).
[all …]
/dports/accessibility/wl-gammarelay-rs/wl-gammarelay-rs-0.2.1/cargo-crates/tokio-1.16.1/src/process/unix/
H A Dorphan.rs4 use crate::sync::watch;
41 sigchild: Mutex<Option<watch::Receiver<()>>>,
125 use crate::sync::watch;
244 let (tx, rx) = watch::channel(()); in no_reap_if_no_signal_received()
/dports/accessibility/wl-gammarelay-rs/wl-gammarelay-rs-0.2.1/cargo-crates/tokio-1.16.1/src/signal/
H A Dmod.rs45 use crate::sync::watch::Receiver;
H A Dregistry.rs5 use crate::sync::watch;
19 tx: watch::Sender<()>,
24 let (tx, _rx) = watch::channel(()); in default()
80 fn register_listener(&self, event_id: EventId) -> watch::Receiver<()> { in register_listener()
132 pub(crate) fn register_listener(&self, event_id: EventId) -> watch::Receiver<()> { in register_listener()
174 use crate::sync::{oneshot, watch};
265 async fn collect(mut rx: watch::Receiver<()>) -> Vec<()> { in collect()
H A Dunix.rs11 use crate::sync::watch;
371 ) -> io::Result<watch::Receiver<()>> { in signal_with_handle()
/dports/accessibility/wl-gammarelay-rs/wl-gammarelay-rs-0.2.1/cargo-crates/tokio-1.16.1/src/sync/
H A Dbarrier.rs2 use crate::sync::watch;
44 wait: watch::Receiver<usize>,
52 waker: watch::Sender<usize>,
64 let (waker, wait) = crate::sync::watch::channel(0); in new()
H A Dmod.rs472 pub mod watch;
494 pub(crate) mod watch;
H A Dwatch.rs764 let (send, mut recv) = crate::sync::watch::channel(0i32); in watch_spurious_wakeup()
798 let (send, mut recv) = crate::sync::watch::channel(0i32); in watch_borrow()
/dports/accessibility/wl-gammarelay-rs/wl-gammarelay-rs-0.2.1/cargo-crates/tokio-1.16.1/src/sync/tests/
H A Dloom_watch.rs1 use crate::sync::watch;
9 let (tx, mut rx1) = watch::channel(1); in smoke()
/dports/accessibility/wl-gammarelay-rs/wl-gammarelay-rs-0.2.1/cargo-crates/tokio-1.16.1/tests/
H A Dasync_send_sync.rs356 assert_value!(tokio::sync::watch::Receiver<NN>: !Send & !Sync & Unpin);
357 assert_value!(tokio::sync::watch::Receiver<YN>: !Send & !Sync & Unpin);
358 assert_value!(tokio::sync::watch::Receiver<YY>: Send & Sync & Unpin);
359 assert_value!(tokio::sync::watch::Ref<'_, NN>: !Send & !Sync & Unpin);
360 assert_value!(tokio::sync::watch::Ref<'_, YN>: !Send & !Sync & Unpin);
361 assert_value!(tokio::sync::watch::Ref<'_, YY>: !Send & Sync & Unpin);
362 assert_value!(tokio::sync::watch::Sender<NN>: !Send & !Sync & Unpin);
363 assert_value!(tokio::sync::watch::Sender<YN>: !Send & !Sync & Unpin);
364 assert_value!(tokio::sync::watch::Sender<YY>: Send & Sync & Unpin);
434 async_assert_fn!(tokio::sync::watch::Sender<NN>::closed(_): !Send & !Sync & !Unpin);
[all …]
H A Dsync_errors.rs27 use tokio::sync::watch::error; in watch_error_bound()
H A Dsync_watch.rs8 use tokio::sync::watch;
14 let (tx, mut rx) = watch::channel("one"); in single_rx_recv()
49 let (tx, mut rx1) = watch::channel("one"); in multi_rx()
118 let (tx, mut rx) = watch::channel("one"); in rx_observes_final_value()
129 let (tx, mut rx) = watch::channel("one"); in rx_observes_final_value()
161 let (tx, rx) = watch::channel("one"); in poll_close()
178 let (tx, mut rx) = watch::channel("one"); in borrow_and_update()
202 let (tx, rx) = watch::channel("one"); in reopened_after_subscribe()
/dports/archivers/arj/debian/
H A Dchangelog53 * Update debian/watch:
97 * Switch to debian/watch format version 4.
304 * Update watch file to version 3 (no changes needed).
305 * Use new QA SourceForge watch redirector.
337 * Fixed the watch file.
454 * Added a watch file.
/dports/archivers/c-blosc2/c-blosc2-2.0.4/
H A DREADME.rst37 See a 3 minutes `introductory video to Blosc2 <https://www.youtube.com/watch?v=HdscCz97mNs>`_.
/dports/archivers/dpkg/dpkg-1.19.7/man/po/
H A Dde.po13649 "commands fail, so watch out for unintended consequences."
H A Ddpkg-man.pot10972 "commands fail, so watch out for unintended consequences."
H A Des.po14300 "commands fail, so watch out for unintended consequences."

12345678910>>...1518