The timeout term refers to a predefined period of time allowed to elapse before an event is to occur. Timeout may also refer to an event that takes place after a specified period of time elapses.

learn more… | top users | synonyms (1)

0
votes
0answers
18 views

Setting up a default timeout for a bash dialog

I've made a little menu using dialog when I boot up my RPi so that I can either boot into LXDE or XBMC. I am trying to get it so that after 5 seconds it automatically starts XBMC. I have found the ...
1
vote
1answer
15 views

TCP Socket binding timeout

I have questions about the time limit for the tcp binding socket in server side. In my survey, I found if the tcp client socket send the close message to the server, the client will enter to ...
0
votes
0answers
21 views

ObjectInputStream Blocking socket external ip madness

When I initialize my objectinputstreams, after I have initialized and flushed by objectoutputstreams, I get this: Client: java.net.SocketTimeoutException: Read timed out at ...
0
votes
0answers
23 views

Python: Hardware Timer or Software Timing Only?

I wish to know if there exist a hardware timer library in python that is a timer that expires after a given period and cause an interrupt instead of the time.time method which basically polls for ...
0
votes
0answers
14 views

Avoiding timeout when creating xml-file

For my article export I use this code $xml = new DOMDocument('1.0', 'UTF-8'); $xml->formatOutput = true; $root = $xml->createElement('products'); $xml->appendChild($root); while ($products = ...
0
votes
1answer
24 views

How to disable button from being clicked before a function has finished in javascript

Okay, so I have a button without any Id but when it is clicked it starts a function called buttonClick. This function basically controls a slot machine(poke machine) it's images, winnings etc. Note, ...
0
votes
1answer
17 views

urllib2 post timeout in python

I'm possting a file to a webserver using urllib2.py in my script and it keeps timining out. My code: def postdata(nodemac,filename,timestamp): try: wakeup() ...
0
votes
0answers
22 views

Windows Phone 8 HttpWebRequest Timeout

Just a philosophical question here... I consider Timeout in an asynchronous HttpWebRequest something basic, something so basic I can't even think why would it not be implemented... I tried to make a ...
-1
votes
1answer
25 views

Prevent session timeout using javascript [closed]

I have write some javascript code in my application to prevent sessions timeouts for a specific type of user. The timeout is controlled by server. How shuld I do this?
0
votes
0answers
5 views

Execute JavaScript code after Jquery Template loaded

I have 11 templates to load and compilte it via the powerful JQuery template function :$.template . while(i<=11){ $.get('tmpl'+i+'.gsp', function(data) { ...
3
votes
4answers
56 views

C# task factory timeout

I have to execute a long process operation in a thread and continue by returning the result to a function. Here is my code : Task<ProductEventArgs>.Factory.StartNew(() => { try ...
1
vote
1answer
35 views

jQuery remove bootstrap alert after certain amount of time

I am using dynamic bootstrap alerts from an example. See below. How can I add a timeout function so alert closes automatically after X time ? HTML: <div id="alert_placeholder"></div> ...
1
vote
0answers
7 views

Jetty-runner.jar set request timeout

Is there a parameter setting that I can pass when running jetty-runner.jar to configure the request timeout? Ex: java $JAVA_OPTS -jar server/jetty-runner.jar --port $PORT target/*.war I'm trying ...
0
votes
1answer
41 views

jQuery: hidden divs need to re-appear

I have a couple of products lined up next to each other in a div and i'm using this script to hide the one by one. At some point they have all disappeared and I would like to have them all re-appear. ...
0
votes
0answers
12 views

Linux Fedora fstab mounted nfs share force timeout after X minutes

Background. Using yum update from central server. Tested autofs too many gotchas So have the server /etc/exports (/var/cache/yum) On the clients want to set a time-out on: cat /etc/fstab (snipped) ...
0
votes
0answers
23 views

ASP.NET-Webforms user-reported SQL timeouts after publishing

When we publish a new version of the website, sometimes, one or two users (out of a few thousand) that are connected report an inability to connect and even to re-login, with an ...
0
votes
0answers
32 views

Script output after timeout command

i use symfony (php framework) task class to create cli scripts. Currently i wrote this kind of script: #!/bin/bash timeout 3600 ./symfony pparse:prices But there is no output, I need that script ...
0
votes
0answers
9 views

Javascript to hit a page for session keepalive, but not change data on open page

So I have an edge case that I'm working through in which I have this code to keep a page alive: $(document).ready(function(){ s=self.setInterval("keepSessionAlive()",840000); }); function ...
2
votes
1answer
41 views
+100

Requests hanging on Session module on IIS 7.5

From time to time, some requests on my website starts to hang on the RequestAcquireState state of the Session module. When that spiral begins all requests timeout and we need to restart the IIS on the ...
0
votes
0answers
6 views

Test suite Bypass some tests

I have a selenium test suite developed using junit,eclips and java.but when am running whole test suite some times some methods falies to execute.(i have only one test class and it includes all test ...
0
votes
0answers
20 views

nodejs, set timeout for each separate request

Using req.setTimeout or socket.setTimeout, I can set the timeout, but it will set the timeout for all the request on this socket. So how I can set the timeout for each different request, and on ...
0
votes
0answers
10 views

ios 6 json depending from the bandwidth the connection will be loss during preparing the data for export

I'm using a JSON REST Serve that i have implemented using Delphi and I'm transferring the Data from our ERP-CRM to the iPad. So My Question If i have an amount of data so that the Json File is ...
0
votes
0answers
24 views

Long Php script + Ajax Post (duplicated?)

I have a problem with a php script triggered by an ajax POST that makes sql inserts in a loop. The ajax POST sends a time range (startDate and endDate). The php script inserts a row for each daily ...
0
votes
0answers
21 views

Term::ReadKey and timeout

Is here the timeout on the second ReadKey needed by something or can I leave it out? #!/usr/bin/env perl use warnings; use strict; use 5.10.0; use Term::ReadKey; use constant { KEY_ENTER ...
0
votes
0answers
20 views

nodejs request not getting timed out if response comes partial

When I am sending some request to backend server from nodejs to get the data which needs to be sent to UI. Now I am seeing that if the response is in chunk, and if I do not get the complete response ...
0
votes
0answers
10 views

REST web service how to configure timeout

I have to write a restful web service using jersey where response time is specified to be within 5 seconds. Do you know where and how I can configure timeout.
0
votes
2answers
49 views

SQL Server Express 2008, Joins, and Timeout Expired Error Message

I have a stored procedure that does quite a bit of joins. The query though runs pretty fast, around 3 seconds. I just cant figure out the below error poping up every once in a while. I event cache ...
0
votes
0answers
20 views

ASP.NET SessionState timeout - need some tips with configuration

in my web.config file I have the following lines <sessionState timeout="10000" cookieName="_SESSION" cookieless="UseCookies" /> <authentication mode="Forms"> <forms timeout="2880" ...
0
votes
0answers
58 views

Worklight: Challenge-handler not working as expected

I used sample challenge handler that comes with Form Based Authentication module. I modified it as per my requirements. In my App, I have one Landing (home) page , where i have link to a login page. ...
0
votes
0answers
15 views

ant killing target, possible timeout

I have problem with Ant@Cruise Control killing my target without notice. Cruise Control config: <schedule interval="1800"> <ant buildfile="build_ppr_offline.xml" ...
0
votes
0answers
30 views
+50

Handle Connection and Read Timeouts for RestClient calls in android

I have a RestService interface with many rest calls which I am using throughout my application. I am setting timeouts for handling connection and read-timeouts ClientHttpRequestFactory httpFactory ...
0
votes
0answers
19 views

Getting ConnectException intermittently from HSQLDB

We have a setup of 2 tomcats running in distributed mode which connect to 2 HSQLDB running in HA mode on both the nodes. The Tomcat Logs are showing ConnectExceptions at certain intervals. An ...
0
votes
1answer
18 views

ScheduledExecutorService as timeout shows no AlertDialog

I'm trying to implement a timeout behaviour in my app. There should also be a warning (alertdialog) 5 seconds before the timeout actually happens. I want to use a ScheduledExecutorService to do so. ...
0
votes
1answer
13 views

Increasing Timeout for WCF hosted on iis7

I have a WCF hosted on IIS7. When I try to consume a service that takes more than 90 seconds to produce results, it times out after 90 second. In web config, I have increased my executionTimeout ...
0
votes
0answers
24 views

SMTP Timeout. Using our own server and swiftmailer. How can I increase the timeout? Error included

I'm looping through a list of customers, and sending files to them. The page often times out. Here is the exact error generated, minus my domain name. Fatal error: Uncaught exception ...
0
votes
1answer
16 views

How to configure timeout for nodejs on Heroku

How to configure timeout for nodejs on Heroku. Heroku timesout at 30seconds. I would like to timeout at 25th second. How do we configure ?
0
votes
1answer
32 views

Query timeout expired - ASP Classic (VB). Timeout happens in client browser, not on server

I'm having some troubles with timeouts on my website. It has a rather large newsletter receiverlist (approx. 100k recievers). We deliver a tool for sending out newsletters, and based on the query for ...
0
votes
1answer
30 views

Trying to write javascript function to animate scrollTo method

I am new to Javascript and would like to know if the following function should create a transition scrolling down to a set scroll position and if not, what am I misunderstanding about the time out or ...
0
votes
1answer
48 views

Timeout implementation in C for TFTP

I am trying to implement the the timeout mechanism in my c implementation of TFTP, and i am looking for some general help. What I am wondering is how to manage the timeout situation. The premature ...
-1
votes
0answers
31 views

.Net SerialPort::ReadTimeout semantics: Which event starts the timeout period?

Is it as in Unix' termios VMIN and VTIME?
1
vote
1answer
12 views

Linked Server is not working in Trigger

I have a Linked Server that executes correctly in a Query, but when i tried to execute it inside a Trigger i was getting this: Error Source: .Net SqlClient Data Provider Error Message: The operation ...
1
vote
0answers
34 views

OverbyteICS HTTP timeout when used in different threads

I've been trying to figure this error our for about 4 days now. I'm using Delphi XE and have created a little tool for translators to use. I got the idea of using the Microsoft Translation API to ...
0
votes
0answers
25 views

Process each line separately to stop timeout in PHP cURL script

I am getting a timeout in my checker script. Is there a way I can get it to stop timing out? Also I would like it to post each echo line by line instead of waiting for script to end. Here is my code: ...
0
votes
3answers
27 views

Java disable stack trace on a specific call?

I want to disable one error message produces by a socket timeout, because it's filling my console (Linux, terminal). The code: public ThreadListenResponseQuery(DatagramSocket socket){ this.socket ...
0
votes
1answer
46 views

HTTP/1.1 504 timeout response

I run a program which downloads data from a site and save it in a folder with file_get_contents. Simultaneously I insert the data (title etc) in my mysql database. Suddenly one day my program stopped ...
0
votes
2answers
24 views

Jquery kill un-needed timeouts

So I have 2 buttons. Button a: is a button. (#button1) Button b: fake submit button. (#right_r) Button c: submit button. (#right) By default, button A will show, and will preventDefault() on click ...
0
votes
0answers
28 views

NHibernate command_timeout does not work with batches

Today I experienced an issue with timeouts. I have the following configuration which is used to create a SessionFactory: <property name="adonet.batch_size">50</property> <property ...
0
votes
1answer
37 views

SSH timeout exception error

I am currently having an issue with time out when connecting to a remote server to collect firmware files using an in-house client that is referencing Sharp SSH. The timeout is network based, but I ...
0
votes
2answers
54 views

Bash Run command for certain time?

I am making bash script for my use. How can i run a command for certain time, like 20 second and terminate command? I tried a lot of solutions from internet but nothing works, I also tried timeout ...
2
votes
0answers
25 views

Timeout fatal error handling

I need to send 500 emails and every email I wish to assign a time limit. Currently, I run an Ajax call to send the email. I need to have an answer to the client Javascript for each email and so fill ...

1 2 3 4 5 64