Top "Timeout" questions

The timeout term refers to a predefined period of time allowed to elapse before an event is to occur.

How does the session timeout work in IIS 7?

In web.config, I set timeout in the sessionState to 20 minutes. According to MSDN, this timeout specifies the number of …

asp.net iis-7 timeout session-state
What is a connection timeout during a http request

I have found two explanations on "connection timeout": The server closes the socket connection when the client doesn't send any …

http timeout connection-timeout
How can I change the table adapter's command timeout

I'm using Visual Studio 2008 with C#. I have a .xsd file and it has a table adapter. I want to …

c# dataset timeout command
How to prevent hangs on SocketInputStream.socketRead0 in Java?

Performing millions of HTTP requests with different Java libraries gives me threads hanged on: java.net.SocketInputStream.socketRead0() Which is …

java sockets http timeout apache-httpclient-4.x
AngularJS. Clear $timeout when invoking angular-ui modal

I have several $timeout expressions in Modal controller App.controller('ModalCtrl', function ($scope, $timeout) { for (var i = 0; i < 10; i++) { (…

javascript angularjs timeout angular-ui
Laravel queue process timeout error

I'm on Laravel using php artisan queue:listen to run queued jobs. One of these jobs is fairly involved and …

php symfony laravel timeout queue
Timeout on subprocess readline in Python

I have a small issue that I'm not quite sure how to solve. Here is a minimal example: What I …

python timeout subprocess
How can I implement timeout for read() when reading from a serial port (C/C++)

I am reading bytes from a serial port in C++ using a file descriptor and the posix/unix read() function. …

c unix timeout tty
c# detecting tcp disconnect

I have two simple applications: A Server application that waits on a specific tcp port for a client to connect. …

c# timeout tcpclient disconnect
Python subprocess timeout?

Is there any argument or options to setup a timeout for Python's subprocess.Popen method? Something like this: subprocess.Popen([…

python timeout pipe subprocess popen