Tag

wait

0 views collected around this technical thread.

Deepin Linux
Deepin Linux
Mar 10, 2025 · Fundamentals

Understanding Linux Process Creation, Waiting, and Execution: fork, wait, and exec

This article explains how Linux processes are created, managed, and replaced using the fork, wait (including waitpid), and exec system calls, covering their prototypes, return values, copy‑on‑write optimization, and practical C code examples that demonstrate their coordinated use in real‑world scenarios.

C programmingLinuxProcess
0 likes · 25 min read
Understanding Linux Process Creation, Waiting, and Execution: fork, wait, and exec
Cognitive Technology Team
Cognitive Technology Team
Mar 9, 2025 · Backend Development

Understanding wait() and notify() in Java Multithreading

This article explains the concepts, usage conditions, execution flow, internal mechanisms, and best‑practice guidelines for Java's wait() and notify() methods, illustrated with a producer‑consumer example and code snippets for safe thread coordination.

ConcurrencyJavaMultithreading
0 likes · 6 min read
Understanding wait() and notify() in Java Multithreading
Cognitive Technology Team
Cognitive Technology Team
Nov 1, 2023 · Fundamentals

Differences and Similarities between wait() and sleep() in Java

Both wait() and sleep() can pause a thread and enter waiting states, but wait() belongs to Object and requires synchronized blocks, releases the monitor lock, and must handle spurious wakeups, whereas sleep() is a Thread method that does not release locks and has simpler usage.

ConcurrencyJavaSynchronization
0 likes · 4 min read
Differences and Similarities between wait() and sleep() in Java
FunTester
FunTester
Jun 22, 2020 · Frontend Development

Selenium Automation: Best Practices for Web Testing

This article explains Selenium automation fundamentals, including its components, cross‑browser testing capabilities, best practices for locators, data‑driven testing, avoiding driver dependencies, selector ordering, PageObject pattern, proper use of waits versus sleeps, and tips for configuring Firefox profiles.

Automated TestingSeleniumWeb Testing
0 likes · 9 min read
Selenium Automation: Best Practices for Web Testing