Searched refs:attempts (Results 1 - 25 of 41) sorted by relevance

12

/macosx-10.10.1/CPANInternal-159.1/IO-Socket-SSL/t/
H A Dnonblock.t168 my $attempts = 0;
173 $attempts++;
185 print "not " if !$attempts;
186 ok( "nonblocking connect with $attempts attempts" );
197 $attempts = 0;
234 $attempts++;
269 if ( ! $attempts && $test_might_fail ) {
270 ok( " write attempts failed, but OK nevertheless because setsockopt failed" );
272 print "not " if !$attempts;
[all...]
/macosx-10.10.1/ntp-92/libsntp/
H A Dlibsntp.h144 * @param attempts
145 * Number of attempts to reach each server before continuing
163 sntp_query_extended(const char *hostname, const char *servname, bool use_service_port, int attempts, struct timeval attempt_timeout, sntp_query_extended_result_handler_t result_handler);
H A Dlibsntp_query.c41 sntp_query_extended(const char *host, const char *servname, bool use_service_port, int attempts, struct timeval attempt_timeout, sntp_query_extended_result_handler_t result_handler)
65 sntp_query_result_t this_result = on_wire(ai, use_service_port, attempts, attempt_timeout, &mach_timestamp, &time_estimate, &delay, &dispersion, &retry_attempts);
/macosx-10.10.1/passwordserver_sasl-193/cyrus_sasl/saslauthd/
H A Dcache.h141 volatile unsigned int attempts; member in struct:stats
H A Dsaslcache.c259 fprintf(stdout, " total lookup attempts* : %d\n", table_stats->attempts);
261 if (table_stats->attempts == 0)
264 a = (table_stats->hits / (float)table_stats->attempts) * 100;
H A Dcache.c233 table_stats->attempts++;
/macosx-10.10.1/gnutar-453/gnutar/lib/
H A Dtempname.c223 unsigned int attempts = TMP_MAX; local
225 unsigned int attempts = ATTEMPTS_MIN; local
250 for (count = 0; count < attempts; value += 7777, ++count)
/macosx-10.10.1/CPANInternal-159.1/Perl4-CoreLibs-0.003/lib/
H A Dftp.pl177 local( $site, $ftp_port, $retry_call, $attempts ) = @_;
183 while( $attempts-- ){
240 local( $site, $ftp_port, $retry_call, $attempts ) = @_;
244 local( $ret ) = eval "&timed_open( '$site', $ftp_port, $retry_call, $attempts )";
/macosx-10.10.1/NFS-82/rpc.statd/
H A Dfile.c731 int attempts, warn; local
762 /* If one of the initial attempts fails, we sleep for a while and */
776 for (attempts = 0; attempts < 44; attempts++) {
778 warn = !(attempts % 10) || (attempts >= 20); /* limit warning frequency */
795 if (attempts) /* log success if we've logged errors */
804 if (attempts < 10)
806 else if (attempts < 2
[all...]
/macosx-10.10.1/emacs-93/emacs/lib-src/
H A Dupdate-game-score.c484 int attempts = 0;
493 attempts++;
505 if (attempts > MAX_ATTEMPTS)
508 attempts = 0;
/macosx-10.10.1/gnudiff-19/diffutils/lib/
H A Dtempname.c249 unsigned int attempts = attempts_min < TMP_MAX ? TMP_MAX : attempts_min; local
277 for (count = 0; count < attempts; value += 7777, ++count)
/macosx-10.10.1/CPANInternal-159.1/Net-Daemon-0.48/lib/Net/Daemon/
H A DTest.pm116 the B<Bind> method attempts to allocate a port automatically. Once a
153 (Instance method) This is mainly the default Bind method, but it attempts
/macosx-10.10.1/vim-55/runtime/syntax/
H A Dresolv.vim48 syn match resolvOption /\<\%(ndots\|timeout\|attempts\):\d\+\>/ contained contains=resolvOperator nextgroup=resolvOption skipwhite
/macosx-10.10.1/CPANInternal-159.1/DateTime-Format-W3CDTF-0.06/lib/DateTime/Format/
H A DW3CDTF.pm183 NOTE: As of version 0.4, format_datetime no longer attempts to truncate
/macosx-10.10.1/ppp-786.1.1/Helpers/pppd/
H A Dauth.c1556 static int attempts = 0; local
1631 if (attempts++ >= 10) {
1632 warning("%d LOGIN FAILURES ON %s, %s", attempts, devnam, user);
1635 if (attempts > 3)
1636 sleep((u_int) (attempts - 3) * 5);
1641 attempts = 0; /* Reset count */
/macosx-10.10.1/CPANInternal-159.1/SOAP-Lite-1.11/lib/SOAP/
H A DConstants.pm149 The SOAP::Lite package attempts to locate and use the L<XML::Parser> package, falling back on an internal, pure-Perl parser in its absence. This package is a fast parser, based on the Expat parser developed by James Clark. If the application sets this value to 1, there will be no attempt to locate or use XML::Parser. There are several reasons you might choose to do this. If the package will never be made available, there is no reason to perform the test. Setting this parameter is less time-consuming than the test for the package would be. Also, the XML::Parser code links against the Expat libraries for the C language. In some environments, this could cause a problem when mixed with other applications that may be linked against a different version of the same libraries. This was once the case with certain combinations of Apache, mod_perl and XML::Parser.
161 SOAP::Lite's HTTP Transport module attempts to provide a simple patch to
/macosx-10.10.1/network_cmds-457/route.tproj/
H A Droute.c584 int ishost = 0, ret, attempts, oerrno, flags = RTF_STATIC; local
761 for (attempts = 1; ; attempts++) {
780 if (attempts > 1 && ret == 0 && af == AF_INET)
/macosx-10.10.1/xnu-2782.1.97/iokit/Kernel/
H A DIOLib.cpp568 UInt32 attempts; local
578 attempts = gIOKitPageableSpace.count;
579 while( attempts--) {
/macosx-10.10.1/CPANInternal-159.1/Log-Log4perl-1.40/lib/Log/Log4perl/Appender/
H A DDBI.pm593 specifies the number of reconnections attempts the DBI appender
595 time between reconnection attempts, measured in seconds.
/macosx-10.10.1/vim-55/runtime/plugin/
H A DnetrwPlugin.vim95 " the BufEnter event causes triggering when attempts to write to
/macosx-10.10.1/apache-793/httpd/modules/proxy/
H A Dmod_proxy.c334 /* Maximum number of failover attempts before
339 return "maximum number of attempts must be a positive number";
926 int attempts = 0, max_attempts = 0; local
1138 scheme, attempts);
1139 AP_PROXY_RUN(r, worker, conf, url, attempts);
1175 max_attempts > attempts++);
1190 AP_PROXY_RUN_FINISHED(r, attempts, access_status);
/macosx-10.10.1/CPANInternal-159.1/IPC-LDT-2.03/
H A DLDT.pm820 attempts to the associated handle until the complete message could be sent.
1001 attempts to the associated handle until the complete message could be read.
/macosx-10.10.1/CPANInternal-159.1/File-NFSLock-1.21/lib/File/
H A DNFSLock.pm674 lock attempts if the child lock is still aquired.
/macosx-10.10.1/CPANInternal-159.1/Text-WordDiff-0.08/lib/Text/
H A DWordDiff.pm565 A module that attempts to diff paragraphs and the words in them.
/macosx-10.10.1/emacs-93/emacs/lisp/
H A Dibuffer.el1161 (let ((attempts 0)
1170 (if (or (> (incf attempts) 4)

Completed in 244 milliseconds

12