Searched refs:timeout (Results 101 - 125 of 1120) sorted by relevance

1234567891011>>

/macosx-10.10.1/CPANInternal-159.1/SOAP-Lite-1.11/t/
H A D21-public.t32 $s->transport->timeout($SOAP::Test::TIMEOUT = $SOAP::Test::TIMEOUT)
50 -> proxy('http://superhonker.userland.com/', timeout => $SOAP::Test::TIMEOUT);
58 -> proxy('http://services.soaplite.com/examples.cgi', timeout => $SOAP::Test::TIMEOUT);
71 -> proxy('http://soap.4s4c.com/ssss4c/soap.asp', timeout => $SOAP::Test::TIMEOUT)
81 -> proxy('http://www.soap-wrc.com/webservices/soapv11.asp', timeout => $SOAP::Test::TIMEOUT)
101 -> proxy('http://soapl.develop.com/soap?class=SPTest', timeout => $SOAP::Test::TIMEOUT)
110 -> proxy('http://search.microsoft.com/search/MSComSearchService.asmx', timeout => $SOAP::Test::TIMEOUT)
117 -> proxy('http://search.microsoft.com/search/MSComSearchService.asmx', timeout => $SOAP::Test::TIMEOUT)
127 -> proxy('http://soap.4s4c.com/whois/soap.asp', timeout => $SOAP::Test::TIMEOUT)
136 -> proxy('http://www.itfinity.net/soap/guid/default.asp', timeout
[all...]
/macosx-10.10.1/CPANInternal-159.1/Perl4-CoreLibs-0.003/lib/
H A Dchat2.pl154 ## absolute, ala time(2)) at which a timeout event occurs.
161 ## If pat is 'TIMEOUT', the body is executed if the timeout is exceeded.
173 ## undef is returned if either a timeout or an eof occurs and no
185 local($timeout,$eof) = (1,1);
223 } elsif ($pattern =~ /^timeout$/i) {
225 elsif (\$timeout) {
230 $timeout = 0;
247 $cases .= <<"EDQ" if $timeout;
248 elsif (\$timeout) {
266 $timeout
[all...]
/macosx-10.10.1/apr-32/apr/apr/file_io/os2/
H A Dpipe.c86 (*in)->timeout = -1;
98 (*out)->timeout = -1;
144 APR_DECLARE(apr_status_t) apr_file_pipe_timeout_set(apr_file_t *thepipe, apr_interval_time_t timeout)
147 thepipe->timeout = timeout;
149 if (thepipe->timeout >= 0) {
155 else if (thepipe->timeout == -1) {
167 APR_DECLARE(apr_status_t) apr_file_pipe_timeout_get(apr_file_t *thepipe, apr_interval_time_t *timeout)
170 *timeout = thepipe->timeout;
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/docs_src/ref/lock/
H A DMakefile5 timeout.html twopl.html
/macosx-10.10.1/PowerManagement-494.1.2/caffeinate/
H A Dcaffeinate.c65 int createAssertions(const char *progname, AssertionFlag flags, long timeout);
77 unsigned long timeout = 0; local
110 timeout = strtol(optarg, NULL, 0);
111 if (timeout == 0 && errno != 0) {
132 if (createAssertions(*argv, flags, timeout)) {
136 if (timeout) {
137 dispatch_time_t d_timeout = dispatch_time(DISPATCH_TIME_NOW, timeout * NSEC_PER_SEC);
157 if (createAssertions(NULL, flags, timeout)) {
166 createAssertions(const char *progname, AssertionFlag flags, long timeout) argument
179 if (timeout) {
[all...]
/macosx-10.10.1/bash-94.1.2/bash-3.2/examples/scripts/
H A Dline-input.bash44 # an absolute timeout of that many tenths of a second. The inter-keystroke
53 timeout=0
56 timeout="$1"
59 stty min $min time $timeout
61 unset min timeout
95 settimeout 0 # No keystroke timeout.
/macosx-10.10.1/bind9-45.101/bind9/contrib/dbus/
H A DSetForwarders52 dbus-send --system --type=method_call --print-reply --reply-timeout=20000 --dest=com.redhat.named /com/redhat/named com.redhat.named.text.SetForwarders $zone $type $servers;
/macosx-10.10.1/curl-83.1.2/curl/tests/libtest/
H A Dlib1501.c76 struct timeval timeout; local
85 timeout.tv_sec = 0;
86 timeout.tv_usec = 100000L; /* 100 ms */
96 select_test(maxfd+1, &fdread, &fdwrite, &fdexcep, &timeout);
H A Dlib507.c57 struct timeval timeout; local
66 timeout.tv_sec = 1;
67 timeout.tv_usec = 0;
73 select_test(maxfd+1, &fdread, &fdwrite, &fdexcep, &timeout);
H A Dlib560.c74 struct timeval timeout; local
85 /* set a suitable timeout to play around with */
86 timeout.tv_sec = 1;
87 timeout.tv_usec = 0;
94 select_test(maxfd+1, &fdread, &fdwrite, &fdexcep, &timeout);
98 /* timeout or readable/writable sockets */
H A Dlib573.c69 struct timeval timeout; local
73 timeout.tv_sec = 0;
74 timeout.tv_usec = 100000L; /* 100 ms */
91 select_test(maxfd+1, &fdread, &fdwrite, &fdexcep, &timeout);
H A Dlib575.c79 struct timeval timeout; local
85 timeout.tv_sec = 0;
86 timeout.tv_usec = 100000L; /* 100 ms */
96 select_test(maxfd+1, &fdread, &fdwrite, &fdexcep, &timeout);
/macosx-10.10.1/dtrace-147/test/tst/common/pid/
H A Dtst.fork.d77 timeout = timestamp + 5000000000;
81 /timestamp > timeout/
/macosx-10.10.1/dtrace-147/test/tst/i386/pid/
H A Dtst.branch.d69 timeout = timestamp + 5000000000;
73 /timestamp > timeout/
H A Dtst.ret.d67 timeout = timestamp + 5000000000;
71 /timestamp > timeout/
/macosx-10.10.1/dtrace-147/test/tst/sparc/pid/
H A Dtst.branch.d69 timeout = timestamp + 5000000000;
73 /timestamp > timeout/
/macosx-10.10.1/postfix-255/postfix/src/tls/
H A Dtls_stream.c94 static ssize_t tls_timed_read(int fd, void *buf, size_t len, int timeout, argument
105 ret = tls_bio_read(fd, buf, len, timeout, TLScontext);
114 static ssize_t tls_timed_write(int fd, void *buf, size_t len, int timeout, argument
128 ret = tls_bio_write(fd, buf, len, timeout, TLScontext);
/macosx-10.10.1/postfix-255/postfix/src/tlsproxy/
H A Dtlsproxy.h33 int timeout; /* read/write time limit */ member in struct:__anon11622
/macosx-10.10.1/ruby-106/ruby/lib/
H A Dtimeout.rb5 # require 'timeout'
6 # status = Timeout::timeout(5) {
16 # #timeout is provided for backwards compatibility. You
17 # should prefer Timeout#timeout instead.
25 # Raised by Timeout#timeout when the block times out.
41 # value of 0 or +nil+ will execute the block without any timeout.
49 # Timeout</tt> into your classes so they have a #timeout method, as well as
50 # a module method, so you can call it directly as Timeout.timeout().
51 def timeout(sec, klass = nil) #:yield: +sec+ method in class:Timeout
87 module_function :timeout
96 def timeout(n, e = nil, &block) method
[all...]
/macosx-10.10.1/uucp-11/uucp/contrib/
H A DHangup.Hayes32 timeout reset 2000
40 timeout silent 5000
/macosx-10.10.1/xnu-2782.1.97/libsyscall/wrappers/
H A Dgethostuuid_private.h37 int _getprivatesystemidentifier(uuid_t uuid, const struct timespec *timeout) __OSX_AVAILABLE_STARTING(__MAC_10_9, __IPHONE_7_0);
/macosx-10.10.1/CPANInternal-159.1/IO-Socket-SSL/t/
H A Dtestlib.pl89 # Args: ($pattern,[ $timeout ],@fd)
91 # $timeout: how many seconds to wait for pattern, default 10
100 my $timeout = 10;
101 $timeout = shift if !ref($_[0]);
110 my $end = defined( $timeout ) ? time() + $timeout : undef;
125 $timeout = $end - time() if $end;
126 return @bad if $timeout < 0;
127 select( my $rout = $rin,undef,undef,$timeout );
155 # Args: ($pattern,[ $timeout ],
[all...]
/macosx-10.10.1/bind9-45.101/bind9/lib/dns/include/dns/
H A Drequest.h167 unsigned int timeout, isc_task_t *task,
177 * will timeout after 'timeout' seconds.
182 *\li When the request completes, successfully, due to a timeout, or
191 *\li 'timeout' > 0
203 unsigned int timeout, isc_task_t *task,
212 unsigned int timeout, unsigned int udptimeout,
220 unsigned int timeout, unsigned int udptimeout,
231 * will timeout after 'timeout' second
[all...]
/macosx-10.10.1/apr-32/apr/apr/file_io/netware/
H A Dpipe.c71 APR_DECLARE(apr_status_t) apr_file_pipe_timeout_set(apr_file_t *thepipe, apr_interval_time_t timeout)
74 thepipe->timeout = timeout;
75 if (timeout >= 0) {
90 APR_DECLARE(apr_status_t) apr_file_pipe_timeout_get(apr_file_t *thepipe, apr_interval_time_t *timeout)
93 *timeout = thepipe->timeout;
110 (*file)->blocking = BLK_UNKNOWN; /* app needs to make a timeout call */
111 (*file)->timeout = -1;
161 (*in)->timeout
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/test/
H A Ddead002.tcl11 {timeout 0} {tnum 002} } {
21 if { $timeout != 0 } {
26 -lock -lock_timeout $timeout -lock_detect $lmode]
47 if { $timeout != 0 } {
70 dead_check $t $n $timeout $dead $clean $other

Completed in 186 milliseconds

1234567891011>>