Home
last modified time | relevance | path

Searched refs:seconds_to_wait (Results 1 – 14 of 14) sorted by relevance

/dports/www/newsboat/newsboat-2.22.1/src/
H A Dreloadthread.cpp54 time_t seconds_to_wait = 0; in operator ()() local
56 seconds_to_wait = in operator ()()
59 while (seconds_to_wait > 0) { in operator ()()
60 seconds_to_wait = ::sleep(seconds_to_wait); in operator ()()
/dports/sysutils/isc-cron/isc-cron-4.1_2/
H A Dcron.c359 int seconds_to_wait; in cron_sleep() local
362 seconds_to_wait = (int)(target * SECONDS_PER_MINUTE - t1) + 1; in cron_sleep()
364 (long)getpid(), (long)target*SECONDS_PER_MINUTE, seconds_to_wait)) in cron_sleep()
366 while (seconds_to_wait > 0 && seconds_to_wait < 65) { in cron_sleep()
367 sleep((unsigned int) seconds_to_wait); in cron_sleep()
383 seconds_to_wait -= (int)(t2 - t1); in cron_sleep()
/dports/devel/stxxl/stxxl-1.4.1/lib/io/
H A Dsimdisk_file.cpp201 int seconds_to_wait = static_cast<int>(floor(delay)); in serve() local
202 if (seconds_to_wait) in serve()
203 sleep(seconds_to_wait); in serve()
205 usleep((useconds_t)((delay - seconds_to_wait) * 1000000.)); in serve()
/dports/databases/xtrabackup8/percona-xtrabackup-8.0.14/storage/innobase/log/
H A Dlog0meb.cc1120 float seconds_to_wait = 600.0; in terminate_consumer() local
1121 while (redo_log_archive_consume_running && (seconds_to_wait > 0.0) && in terminate_consumer()
1126 seconds_to_wait -= 0.1f; in terminate_consumer()
1130 if (seconds_to_wait < 0.0) { in terminate_consumer()
1294 float seconds_to_wait = 600.0f; in redo_log_archive_start() local
1296 seconds_to_wait = -1.0;); in redo_log_archive_start()
1303 seconds_to_wait -= 0.1f; in redo_log_archive_start()
1307 if (seconds_to_wait < 0.0f) { in redo_log_archive_start()
1536 float seconds_to_wait = 600.0; in redo_log_archive_flush() local
1543 seconds_to_wait -= 0.1f; in redo_log_archive_flush()
[all …]
/dports/security/gnupg/gnupg-2.3.3/common/
H A Dasshelp.c407 int seconds_to_wait; in start_new_service() local
428 seconds_to_wait = SECS_TO_WAIT_FOR_AGENT; in start_new_service()
436 seconds_to_wait = SECS_TO_WAIT_FOR_DIRMNGR; in start_new_service()
444 seconds_to_wait = SECS_TO_WAIT_FOR_KEYBOXD; in start_new_service()
548 err = wait_for_sock (seconds_to_wait, module_name_id, in start_new_service()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/chrome/common/profiler/
H A Dstack_sampling_browsertest.cc92 int seconds_to_wait = 30; in WaitForProfile() local
111 } while (--seconds_to_wait > 0); in WaitForProfile()
/dports/www/privoxy/privoxy-3.0.33-stable/
H A Djbsockets.h48 extern int data_is_available(jb_socket fd, int seconds_to_wait);
H A Djbsockets.c745 int data_is_available(jb_socket fd, int seconds_to_wait) in data_is_available() argument
755 n = poll(poll_fd, 1, seconds_to_wait * 1000); in data_is_available()
761 timeout.tv_sec = seconds_to_wait; in data_is_available()
/dports/devel/py-moto/moto-2.2.16/tests/test_batch/
H A Dtest_batch_jobs.py246 _wait_for_job_status(batch_client, job_id, "FAILED", seconds_to_wait=30)
277 _wait_for_job_status(batch_client, job_id, "SUCCEEDED", seconds_to_wait=5)
284 def _wait_for_job_status(client, job_id, status, seconds_to_wait=30): argument
285 wait_time = datetime.datetime.now() + datetime.timedelta(seconds=seconds_to_wait)
/dports/audio/clementine-player/Clementine-1.4.0rc1/src/internet/seafile/
H A Dseafileservice.cpp629 int seconds_to_wait; in CheckReply() local
631 seconds_to_wait = in CheckReply()
634 seconds_to_wait = std::pow(tries, 2) * 1000; in CheckReply()
638 timer.start(seconds_to_wait); in CheckReply()
/dports/audio/beets/beets-1.4.9/beetsplug/
H A Ddiscogs.py99 seconds_to_wait = seconds_between_requests - seconds_since_last_request
100 return seconds_to_wait
/dports/dns/p5-POE-Component-Client-DNS/POE-Component-Client-DNS-1.054/
H A DREADME89 Timeout => $seconds_to_wait, # defaults to 90
H A DREADME.mkdn93 Timeout => $seconds_to_wait, # defaults to 90
/dports/comms/kermit/kermit-9.0.305.04/
H A Dckutio.c14595 long seconds_to_wait = 0L; /* select() timeout */ local
14876 debug(F101,"ttptycmd entering loop - seconds_to_wait","",seconds_to_wait);
14932 if (seconds_to_wait > 0L) { /* Timeout in case nothing happens */
14933 tv.tv_sec = seconds_to_wait; /* for a long time */
14948 debug(F101,"ttptycmd +++ select timeout","",seconds_to_wait);