Top "Wait" questions

In programming, 'wait' refers to the act of pausing the execution of a program until a specific condition is met or a given amount of time has passed.

How to wait for exit of non-children processes

For child processes, the wait() and waitpid() functions can be used to suspends execution of the current process until a …

c linux process wait
How can I make my Docker compose "wait-for-it" script invoke the original container ENTRYPOINT or CMD?

According to Controlling startup order in Compose, one can control the order in which Docker Compose starts containers by using …

docker synchronization wait docker-compose
vb. net wait for 2nd form to close before continuing

Is there a way in vb.net to pause a function\ event and wait till another form has closed to …

vb.net wait formclosing
Sleep a thread until an event is attended in another thread from a different class

I have an application that fires 2 threads, the 1st launches another class to do some processing which in turn launches …

java multithreading wait actionlistener
Set up a real timeout for loading page in Selenium WebDriver?

I'm testing a site with lots of proxies, and the problem is some of those proxies are awfully slow. Therefore …

python selenium webdriver selenium-webdriver wait
Wait until a certain process (knowing the "pid") end

I have this: def get_process(): pids = [] process = None for i in os.listdir('/proc'): if i.isdigit(): pids.…

python linux process wait pid
Java threads: wait and notify methods

I have a thread that calls the wait method and can only be awoken when the notify method called from …

java multithreading wait notify
Java: How can a thread wait on multiple objects?

A thread can use Object.wait() to block until another thread calls notify() or notifyAll() on that object. But what …

java multithreading wait notify
Android splash screen while loading MainActivity

So, I just read this question: How do I make a splash screen? But instead of adding a fixed delay (…

android multithreading wait splash-screen supportmapfragment
How to Winwait for two windows simultaneously in AutoIt?

I would like to know if its possible to "WinWaitActive" for "WindowWithThisTitle" and "WindowWithThatTitle" at the same time. I'm executing …

windows wait autoit