Searched refs:log (Results 1 - 25 of 1365) sorted by relevance

1234567891011>>

/macosx-10.10.1/OpenSSH-189/openssh/regress/
H A Dsshd-log-wrapper.sh2 # $OpenBSD: sshd-log-wrapper.sh,v 1.2 2005/02/27 11:40:30 dtucker Exp $
6 # sh sshd-log-wrapper.sh /path/to/sshd /path/to/logfile
9 log=$2
13 exec $sshd $@ -e 2>>$log
/macosx-10.10.1/ruby-106/ruby/sample/logger/
H A Dlog.rb5 log = Logger.new(STDERR)
7 def do_log(log)
8 log.debug('do_log1') { "debug" }
9 log.info('do_log2') { "info" }
10 log.warn('do_log3') { "warn" }
11 log.error('do_log4') { "error" }
12 log.fatal('do_log6') { "fatal" }
13 log.unknown('do_log7') { "unknown" }
16 log.level = Logger::DEBUG # Default.
17 do_log(log)
[all...]
H A Dshifting.rb5 logfile = 'shifting.log'
6 # Max 3 age ... logShifting.log, logShifting.log.0, and logShifting.log.1
8 # Shift log file about for each 1024 bytes.
11 log = Logger.new(logfile, shift_age, shift_size)
13 def do_log(log)
14 log.debug('do_log1') { 'd' * rand(100) }
15 log.info('do_log2') { 'i' * rand(100) }
16 log
[all...]
H A Dapp.rb10 logfile = 'app.log'
11 self.log = logfile
21 @log.info { 'Started.' }
23 @log.info { "This block isn't evaled because 'debug' is not severe here." }
24 @log.debug { "Result = " << foo(0) }
25 @log.info { "So nothing is dumped." }
27 @log.info { "This block is evaled because 'info' is enough severe here." }
28 @log.info { "Result = " << foo(0) }
29 @log.info { "Above causes exception, so not reached here." }
31 @log
[all...]
/macosx-10.10.1/crontabs-52/files/
H A Dnewsyslog.conf5 # syslogd process to be signalled when that log file is rotated. This
6 # action is only appropriate for log files which are written to by the
8 # is no process which needs to be signalled when a given log file is
20 /var/log/ftp.log 640 5 1000 * J
21 /var/log/hwmond.log 640 5 1000 * J
22 /var/log/ipfw.log 640 5 1000 * J
23 /var/log/lp
[all...]
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/comp/
H A Dcloselog.c40 if (log.fd >= 0)
42 close(log.fd);
43 log.fd = -1;
45 log.facility = 0;
46 log.flags = 0;
47 log.mask = ~0;
48 log.attempt = 0;
H A Dopenlog.c45 if (n >= sizeof(log.ident))
46 n = sizeof(log.ident) - 1;
47 memcpy(log.ident, ident, n);
48 log.ident[n] = 0;
51 log.ident[0] = 0;
52 log.facility = facility;
53 log.flags = flags;
54 if (!(log.flags & LOG_ODELAY))
/macosx-10.10.1/libxml2-26/libxml2/python/tests/
H A DpushSAX.py8 log = "" variable
12 global log
13 log = log + "startDocument:"
16 global log
17 log = log + "endDocument:"
20 global log
21 log = log
[all...]
H A DpushSAXhtml.py8 log = "" variable
12 global log
13 log = log + "startDocument:"
16 global log
17 log = log + "endDocument:"
20 global log
21 log = log
[all...]
H A Dsync.py8 log = "" variable
12 global log
13 log = log + "startDocument:"
16 global log
17 log = log + "endDocument:"
20 global log
21 log = log
45 log="" variable
57 log="" variable
69 log="" variable
81 log="" variable
93 log="" variable
105 log="" variable
117 log="" variable
[all...]
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-core/libxml2-src/python/tests/
H A DpushSAX.py8 log = "" variable
12 global log
13 log = log + "startDocument:"
16 global log
17 log = log + "endDocument:"
20 global log
21 log = log
[all...]
H A DpushSAXhtml.py8 log = "" variable
12 global log
13 log = log + "startDocument:"
16 global log
17 log = log + "endDocument:"
20 global log
21 log = log
[all...]
H A Dsync.py8 log = "" variable
12 global log
13 log = log + "startDocument:"
16 global log
17 log = log + "endDocument:"
20 global log
21 log = log
45 log="" variable
57 log="" variable
69 log="" variable
81 log="" variable
93 log="" variable
105 log="" variable
117 log="" variable
[all...]
/macosx-10.10.1/zlib-55/zlib/examples/
H A Dgzlog.c30 Files (log name "foo"):
31 foo.gz -- gzip file with the complete log
36 foo.repairs -- log file for log file recovery operations (not compressed)
83 gain exclusive access to the log files, first a foo.lock file must be
287 /* internal structure for log information */
289 struct log { struct
292 char *path; /* allocated path, e.g. "/var/log/foo" or "foo" */
348 local int log_lock(struct log *log) argument
372 log_touch(struct log *log) argument
384 log_check(struct log *log) argument
396 log_unlock(struct log *log) argument
410 log_head(struct log *log) argument
437 log_mark(struct log *log, int op) argument
462 log_last(struct log *log, int last) argument
501 log_append(struct log *log, unsigned char *data, size_t len) argument
571 log_replace(struct log *log) argument
608 log_compress(struct log *log, unsigned char *data, size_t len) argument
718 log_log(struct log *log, int op, char *record) argument
738 log_recover(struct log *log, int op) argument
795 log_close(struct log *log) argument
812 log_open(struct log *log) argument
867 struct log *log; local
913 struct log *log = logd; local
997 struct log *log = logd; local
1043 struct log *log = logd; local
[all...]
H A Dgzlog.h29 gzlog_write() now always leaves the log file as valid gzip
33 The gzlog object allows writing short messages to a gzipped log file,
34 opening the log file locked for small bursts, and then closing it. The log
37 replaces the uncompressed data in the file. The log file is truncated to
38 its new size at that time. After each write operation, the log file is a
42 system crash, and the log file will be recovered the next time the log is
52 /* Open a gzlog object, creating the log file if it does not exist. Return
57 this object. If path is "foo", then the log fil
[all...]
/macosx-10.10.1/xnu-2782.1.97/tools/tests/libMicro/
H A Dlog.c32 * log benchmark - should do wider range...
45 (void) sprintf(lm_usage, "note: measures log()");
62 t += log(value);
63 t += log(value + 1.0);
64 t += log(value + 2.0);
65 t += log(value + 3.0);
66 t += log(value + 4.0);
67 t += log(value + 5.0);
68 t += log(value + 6.0);
69 t += log(valu
[all...]
/macosx-10.10.1/Heimdal-398.1.2/tests/kdc/
H A Dwait-kdc.sh35 log=${2:-messages.log}
41 echo "Waiting for ${name} to start, looking logfile ${log}"
47 if tail -30 ${log} | grep "${waitfor}" > /dev/null; then
50 if tail -30 ${log} | grep "No sockets" ; then
54 if tail -30 ${log} | grep "bind" | grep "Operation not permitted" ; then
H A Dleaks-kill.sh18 rm -f leaks-log > /dev/null
23 leaks -exclude __CFInitialize $pid > leaks-log 2>&1 || \
24 { echo "leaks failed: $?"; cat leaks-log; exit 1; }
32 exit 0;' leaks-log || \
33 { echo "Memory leak in $name" ; echo ""; cat leaks-log; ec=1; }
35 if grep -e '1 leak for' leaks-log > /dev/null && grep -e "Leak.*environ.*__CF_USER_TEXT_ENCODING" leaks-log > /dev/null ; then
40 [ "$ec" != "0" ] && { echo ""; cat leaks-log ; }
45 [ "$ec" = "0" ] && rm leaks-log
/macosx-10.10.1/Heimdal-398.1.2/lib/hcrypto/libtommath/
H A Dmess.sh2 if cvs log $1 >/dev/null 2>/dev/null; then exit 0; else echo "$1 shouldn't be here" ; exit 1; fi
/macosx-10.10.1/files-662.1.1/private/etc/newsyslog.d/
H A Dfiles.conf2 /Library/Logs/named.log 644 5 * $D0 J
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/uwin/
H A Dcbrt.c34 return(exp(log(x)/3.0));
/macosx-10.10.1/tcl-105/tcl_ext/tbcload/tbcload/tests/tcl/
H A Doverride.tcl16 # this code used to make the procomp::log proc in procomp.tcl disappear.
18 # invalid command name "log"
20 # "log "compiled: $path""
32 namespace export log
35 proc procomp::log { msg } {
39 procomp::log TEST
/macosx-10.10.1/postfix-255/postfix/src/bounce/
H A Dbounce_append_service.c5 /* append record to bounce log, server side
17 /* (append bounce log) request. This routine either succeeds or
67 /* bounce_append_service - append bounce log */
73 VSTREAM *log; local
83 log = mail_queue_open(service, queue_id,
85 if (log == 0)
92 if (deliver_flock(vstream_fileno(log), INTERNAL_LOCK, (VSTRING *) 0) < 0)
96 * Now, go for it. Append a record. Truncate the log to the original
112 if ((orig_length = vstream_fseek(log, 0L, SEEK_END)) < 0)
118 vstream_fputs("\n", log);
[all...]
/macosx-10.10.1/ruby-106/ruby/sample/drb/
H A Ddlogc.rb12 ro.log(123)
13 ro.log("hello")
15 ro.log("wakeup")
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/ecma/Math/
H A D15.8.2.10.js24 ECMA Section: 15.8.2.10 Math.log(x)
40 var TITLE = "Math.log(x)";
52 array[item++] = new TestCase( SECTION, "Math.log.length", 1, Math.log.length );
54 array[item++] = new TestCase( SECTION, "Math.log()", Number.NaN, Math.log() );
55 array[item++] = new TestCase( SECTION, "Math.log(void 0)", Number.NaN, Math.log(void 0) );
56 array[item++] = new TestCase( SECTION, "Math.log(null)", Number.NEGATIVE_INFINITY, Math.log(nul
[all...]

Completed in 322 milliseconds

1234567891011>>