Searched refs:attempt (Results 26 - 50 of 91) sorted by relevance

1234

/macosx-10.10/vim-55/runtime/syntax/
H A Dantlr.vim15 " This syntac file is a first attempt. It is far from perfect...
H A Dpsf.vim50 " These regions are defined in attempt to do syntax checking for some
/macosx-10.10/tcl-105/tcl/tcl/generic/
H A DtclStringObj.c144 * attempt to allocate originalLength + 2*appendLength +
185 int attempt; local
189 attempt = 2 * needed;
190 if (attempt >= 0 && attempt <= STRING_MAXCHARS) {
191 ptr = stringAttemptRealloc(stringPtr, attempt);
196 * overflow into invalid argument values for attempt.
202 attempt = needed + growth;
203 ptr = stringAttemptRealloc(stringPtr, attempt);
208 attempt
[all...]
/macosx-10.10/OpenSSH-189/openssh/
H A Dsshconnect.c350 int sock = -1, attempt; local
370 for (attempt = 0; attempt < connection_attempts; attempt++) {
371 if (attempt > 0) {
/macosx-10.10/vim-55/runtime/autoload/
H A Dgetscript.vim551 " call Decho("decompress: attempt to bunzip2 ".sname)
556 " call Decho("decompress: attempt to gunzip ".sname)
566 " call Decho("dearchive: attempt to unzip ".sname)
569 " call Decho("dearchive: attempt to untar ".sname)
572 " call Decho("dearchive: attempt to handle a vimball: ".sname)
594 " call Decho("dearchive: attempt to simply move ".sname." to ".tgtdir)
/macosx-10.10/ntp-92/ntpq/
H A Dntpq-opts.def142 will attempt to read commands from the
162 one attempt to retransmit requests, and will time requests out if
176 will attempt to read
/macosx-10.10/CPANInternal-159.1/JSON-XS-3.01/bin/
H A Djson_xs51 =item string - do not attempt to decode the file data
/macosx-10.10/CPANInternal-159.1/Template-Toolkit-2.25/lib/Template/
H A DPlugins.pm71 # method is called to attempt to load the module and return a factory
388 attempt to construct a correct Perl module name which can be successfully
412 provider will make a final attempt to load the module without prepending any
H A DView.pm402 # parameter is set (default: 1). Last attempt is to match the entire
416 "attempt to view private member: $item");
666 If no map entry or default is provided then the view will attempt to
710 Flag to indicate if any attempt should be made to map method names to
/macosx-10.10/Security-57031.1.35/Security/libsecurity_ssl/regressions/
H A Dssl-51-state.c254 tls_handshake_set_retransmit_timer_callback(tls_handshake_ctx_t ctx, int attempt) argument
258 test_printf("%s: %p attempt = %d\n", __FUNCTION__, handle, attempt);
H A Dssl-49-sni.c144 tls_handshake_set_retransmit_timer(tls_handshake_ctx_t ctx, int attempt) argument
/macosx-10.10/CPANInternal-159.1/DateTime-Format-Builder-0.81/lib/DateTime/Format/Builder/Parser/
H A Dgeneric.pm194 Rather than attempt to explain how it all works, I think it's best if
/macosx-10.10/CPANInternal-159.1/Log-Log4perl-1.40/lib/Log/Log4perl/Appender/
H A DDBI.pm141 for my $attempt (0..$self->{reconnect_attempts}) {
157 if($attempt == $self->{reconnect_attempts}) {
162 "$self->{reconnect_attempts} attempt" .
168 if($attempt) {
463 are used, their attempt to C<render()> your layout will result in something
H A DSocket.pm141 Every log attempt will then try to establish the connection and
/macosx-10.10/xnu-2782.1.97/bsd/kern/
H A Dsysv_sem.c478 int attempt; local
486 for (attempt = 0; attempt < 2; attempt++) {
505 * We didn't find a free one, if this is the first attempt
509 if (attempt == 0) {
538 panic("semu_alloc - second attempt failed");
/macosx-10.10/libauto-186/
H A DZone.cpp482 TrySpinLock attempt(lock);
483 return !attempt;
487 TryMutex attempt(lock);
488 return !attempt;
492 TryWriteLock attempt(lock);
493 return !attempt;
/macosx-10.10/BerkeleyDB-21/db/docs_src/tcl/
H A Dm4.tcl172 It is an error to attempt a partial put using the $1 command in a database
176 It is an error to attempt a partial put with differing m4_arg(dlen) and
/macosx-10.10/CPANInternal-159.1/DateTime-Format-Builder-0.80/lib/DateTime/Format/Builder/Parser/
H A Dgeneric.pm184 Rather than attempt to explain how it all works, I think it's best if
/macosx-10.10/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.
/macosx-10.10/ruby-106/ruby/ext/tk/sample/demos-en/
H A Dentry3.rb30 characters and sounds the bell when an attempt to go over the limit \
/macosx-10.10/CPANInternal-159.1/Readonly-1.03/
H A DReadonly.pm590 attempt to modify the value will cause your program to die.
609 array may not be lengthened or shortened or spliced. Any attempt to
628 Any attempt to do so will cause your program to die.
/macosx-10.10/NFS-82/rpc.lockd/
H A Dlockd.c628 int attempt = 0; local
647 if (++attempt < 20) {
648 /* attempt to start it again */
650 sleep(attempt);
/macosx-10.10/curl-83.1.2/curl/tests/server/
H A Dsockfilt.c505 * it can only check SOCKETs. The following function is an attempt
1116 logmsg("attempt to close already dead connection");
1190 int attempt = 0; local
1194 attempt++;
1218 delay *= 2; /* double the sleep for next attempt */
1225 attempt, totdelay, error, strerror(error));
/macosx-10.10/vim-55/src/
H A Dbuffer.c2064 int attempt; local
2082 * attempt == 0: without '^' or '$' (at any position)
2083 * attempt == 1: with '^' at start (only at position 0)
2084 * attempt == 2: with '$' at end (only match at end)
2085 * attempt == 3: with '^' at start and '$' at end (only full match)
2102 for (attempt = 0; attempt <= 3; ++attempt)
2106 *patend = (attempt < 2) ? NUL : '$'; /* add/remove '$' */
2108 if (*p == '^' && !(attempt
2173 int attempt; local
[all...]
/macosx-10.10/CPANInternal-159.1/Parse-Yapp-1.05/
H A Dyapp91 an attempt to open the file with a suffix of F<.yp> is tried before exiting.

Completed in 458 milliseconds

1234