Tagged Questions
expire after a limited time
87
votes
12answers
29k views
Android error: Failed to install *.apk on device *: timeout
I'm getting this error from time to time and don't know what causing this:
When trying to run/debug an Android app on a real device (Galaxy Samsung S in my case) I'm getting the following error in the ...
69
votes
7answers
26k views
Implement C# Generic Timeout
I am looking for good ideas for implementing a generic way to have a single line (or anonymous delegate) of code execute with a timeout.
TemperamentalClass tc = new TemperamentalClass();
...
49
votes
2answers
34k views
How to set HttpResponse timeout for Android in Java
I have created the following function for checking the connection status:
private void checkConnectionStatus() {
HttpClient httpClient = new DefaultHttpClient();
try {
String url = ...
45
votes
6answers
152k views
Timeout jQuery effects
I am trying to have an element fade in, then in 5000 ms fade back out again. I know I can do something like:
setTimeout(function(){ $(".notice").fadeOut() }, 5000);
But that will only control the ...
40
votes
6answers
17k views
Timeout a command in bash without unnecessary delay
This answer to a similar question proposes a 1-line method to timeout a long-running command from the bash command line:
( /path/to/slow command with options ) & sleep 5 ; kill $!
But it's ...
35
votes
13answers
29k views
WCF timeout exception detailed investigation
We have an application that has a WCF service (*.svc) running on IIS7 and various clients querying the service. The server is running Win 2008 Server. The clients are running either Windows 2008 ...
33
votes
5answers
14k views
jQuery ajax (jsonp) ignores a timeout and doesn't fire the error event
To add some basic error handling, I wanted to rewrite a piece of code that used jQuery's $.getJSON to pull in some photo's from Flickr. The reason for doing this is that $.getJSON doesn't provide ...
26
votes
3answers
918 views
Bug in MVC3 - requests never time out. Works fine for aspx pages in same project
I'm seeing this on our production site as well as a small test site I setup just to test this out...
Basically, it appears that requests handled by mvc never time out. I've set an executionTimeout ...
26
votes
6answers
14k views
Is it possible to read from a Java InputStream with a timeout?
Specifically, the problem is to write a method like this:
int maybeRead(InputStream in, long timeout)
where the return value is the same as in.read() if data is available within 'timeout' ...
26
votes
16answers
8k views
How to add a Timeout to Console.ReadLine()?
I have a console app in which I want to give the user x seconds to respond to the prompt. If no input is made after a certain period of time, program logic should continue. We assume a timeout means ...
24
votes
10answers
11k views
subprocess with timeout
In Python, I have a program snippet similar to the following that has the effect of running a custom command and returning the stdout data (or raise exception when exit code is non-zero):
proc = ...
20
votes
4answers
6k views
ASP.NET MVC and httpRuntime executionTimeout
I would like to increase the httpruntime executionTimeout for a subsection of an ASP.NET MVC application.
In a regular Web App, you could use
<configuration>
<location ...
19
votes
8answers
44k views
Session timeout in ASP.NET
I am running an ASP.NET 2.0 application in IIS 6.0. I want session timeout to be 60 minutes rather than the default 20 minutes. I have done the following
set
in web.config
Set session timeout ...
18
votes
9answers
8k views
How to timeout a thread
I want to run a thread for some fixed amount of time. If it is not completed within that time, I want to either kill it, throw some exception, or handle it in some way. How can it be done?
One way of ...
18
votes
7answers
18k views
How to config socket connect timeout in C#
(C# )When the Client tries to connect to a disconnected IP address, there is a long timeout over 15 seconds... How can we reduce this timeout? What is the method to config it?
The code I'm using to ...
18
votes
15answers
21k views
Selenium click() event seems not to be always triggered => results in timeout?
Here's what I do:
selenium.click("link=mylink");
selenium.waitForPageToLoad(60000);
// do something, then navigate to a different page
// (window focus is never changed in-between)
...
16
votes
5answers
5k views
Distributed Lock Service
Which distributed lock service would you use?
Requirements are:
A mutual exclusion (lock) that can be seen from different processes/machines
lock...release semantics
Automatic lock release after a ...
14
votes
9answers
7k views
C++: How to implement a timeout for an arbitrary function call?
I need to call a library function that sometimes won't terminate within a given time, unfortunately. Is there a way to call the function but abort it if it doesn't terminate within n seconds?
I ...
14
votes
3answers
34k views
Timeouts WCF Services
How do the timeouts work in WCF? I know for example that you can configure sendTimeout and receiveTimeout for a clients binding. But how do they work? Msdn describes sendTimeout as:
A TimeSpan value ...
13
votes
6answers
459 views
right way to run some code with timeout in Python
I looked online and found some SO discussing and ActiveState recipes for running some code with a timeout. It looks there are some common approaches:
Use thread that run the code, and join it with ...
13
votes
3answers
2k views
How to add a timeout to a function in Python
Many attempts have been made in the past to add timeout functionality in Python such that when a specified time limit expired, waiting code could move on. Unfortunately, previous recipes either ...
13
votes
2answers
12k views
Forms Authentication Timeout vs Session Timeout
In my asp.net website i am using asp.net form authentication with following configuration
<authentication mode="Forms">
<forms loginUrl="~/Pages/Common/Login.aspx" ...
13
votes
5answers
3k views
Speed up File.Exists for non existing network shares
I have to check if a set of file paths represent an existing file.
It works fine except when the path contains a network share on a machine that's not on the current network. In this case it takes a ...
12
votes
6answers
400 views
Time limiting a method in C#
I have a Game framework where there is a list of Bots who implement IBotInterface. These bots are custom made by user with the only limitation that they must implement the interface.
The game then ...
12
votes
4answers
7k views
Default Transaction Timeout
I used to set Transaction timeouts by using TransactionOptions.Timeout, but have decided for ease of maintenance to use the config approach:
<system.transactions>
<defaultSettings ...
12
votes
9answers
12k views
How to add a timeout value when using Java's Runtime.exec()?
I have a method I am using to execute a command on the local host. I'd like to add a timeout parameter to the method so that if the command being called doesn't finish in a reasonable amount of time ...
11
votes
2answers
5k views
JQuery ajax call default timeout value
I got a bug report that I can't duplicate, but ajax-call timeout is the current best guess.
So I'm trying to find out the default value for timeout of a jQuery $.ajax() call. Anybody have an idea? ...
11
votes
8answers
4k views
A priority queue which allows efficient priority update?
UPDATE: Here's my implementation of Hashed Timing Wheels. Please let me know if you have an idea to improve the performance and concurrency. (20-Jan-2009)
// Sample usage:
public static void ...
11
votes
5answers
19k views
Python, Popen and select - waiting for a process to terminate or a timeout
I run a subprocess using:
p = subprocess.Popen("subprocess",
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
...
10
votes
3answers
336 views
Why doesn’t WCF support service-side timeouts?
We’ve recently discovered that WCF does not support timing out operations on the service side (note, service side, not client side). While the client disconnects after the specified time, our testing ...
10
votes
3answers
603 views
What happens if an asynchronous delegate call never returns?
I found a decent looking example of how to call a delegate asynchronously with a timeout... ...
10
votes
2answers
14k views
NSURLConnection timeout?
I'm using this NSURLConnection with delegates.
nsconnection = [[NSURLConnection alloc] initWithRequest:request
delegate:self startImmediately:YES];
Problem is the website doesn't respond at ...
10
votes
3answers
6k views
Help troubleshooting SqlException: Timeout expired on connection, in a non-load situation
I have a server hosting a website of mine that has almost zero-traffic.
A few people (< 20) enter the site every day, and a few RSS readers are subscribed to some feeds we put out.
Almost every ...
10
votes
3answers
5k views
How do I store javascript functions in a queue for them to be executed eventually
I have created a Queue class in javascript and I would like to store functions as data in a queue. That way I can build up requests (function calls) and respond to them when I need to (actually ...
10
votes
2answers
17k views
windows service startup timeout
Is there a way to set a different value for service startup timeout per service?
I can change it using the ServicesPipeTimeout registry key, but it's per machine ...
9
votes
1answer
156 views
Haskell: How to timeout a function that runs an external command
I call an external program inside a function. Now i would like to timeout this function and not just the external program. But after the function times out, the external program is still running on my ...
9
votes
3answers
1k views
Why is Java Future.get(timeout) Not Reliable?
Future.get(timeout) does not reliably throw the TimeoutException after the given timeout. Is this normal behavior or can I do something to make this more reliable? This test fails on my machine. ...
9
votes
6answers
3k views
How to cancel a jquery.load()?
I'd like to cancel a .load() operation, when the load() does not return in 5 seconds. If it's so I show an error message like 'sorry, no picture loaded'.
What I have is...
...the timeout handling:
...
9
votes
5answers
5k views
MySQL Connection Timeout Issue - Grails Application on Tomcat using Hibernate and ORM
I have a small grails application running on Tomcat in Ubuntu on a VPS. I use MySql as my datastore and everything works fine unless I leave the application for more than half a day (8 hours?). I did ...
9
votes
4answers
9k views
Setup MySQL query timeout
Hey guys, it's possible to timeout query in MySQL?
So if any query will exceed this timeout, it will be killed by MySQL and it will return error instead of waiting for eternity.
9
votes
4answers
11k views
Need content in UIWebView to display quickly
Part of my app caches web pages for offline viewing. To do that, I am saving the HTML fetched from a site and rewriting img urls to point to a file on the local store. When I load the html into a ...
9
votes
2answers
3k views
ADO.NET calling T-SQL Stored Procedure causes a SqlTimeoutException
I have a T-SQL stored procedure with the signature
CREATE PROCEDURE MyProc
@recordCount INT OUTPUT
@param1 INT
...
When executed directly in Sql Server the procedure runs in under 5 seconds, ...
9
votes
3answers
7k views
Timeout not being honoured in connection string
I have a long running SQL statement that I want to run, and no matter what I put in the "timeout=" clause of my connection string, it always seems to end after 30 seconds. I'm just using ...
8
votes
9answers
210 views
Computation with time limit
I'm trying to write a construct which allows me to run computations in a given time window. Something like:
def expensiveComputation(): Double = //... some intensive math
val result: Option[Double] ...
8
votes
2answers
336 views
Timeouts in Silverlight Sockets
I'm using Sockets in my Silverlight application to stream data from a server to a client.
However, I'm not quite sure how timeouts are handled in a Silverlight Socket.
In the documentation, I ...
8
votes
5answers
640 views
Image load timeout in Internet Explorer
I have a page for an internal app that displays document images streamed from a document storage system using a web service. The problem I am having is that when a user does their search they may get ...
8
votes
9answers
4k views
http connection timeout issues
I'm running into an issue when i try to use the HttpClient connecting
to a url. The http connection is taking a longer time to timeout, even after i set
a connection timeoout.
int timeoutConnection = ...
8
votes
9answers
1k views
Close Delphi dialog after [x] seconds
Is it possible to get Delphi to close a ShowMessage or MessageDlg Dialog after a certain length of time?
I want to show a message to the user when the application is shut down, but do not want to ...
8
votes
6answers
239 views
What is the best way to handle this: large download via PHP + slow connection from client = script timeout before file is completely downloaded
My client wanted a way to offer downloads to users, but only after they fill out a registration form (basically name and email). An email is sent to the user with the links for the downloadable ...
8
votes
3answers
7k views
Java URLConnection Timeout
I am trying to parse an XML file from an HTTP URL. I want to configure a timeout of 15 seconds if the XML fetch takes longer than that, I want to report a timeout. For some reason, the ...