Home
last modified time | relevance | path

Searched refs:opt_logfile (Results 1 – 18 of 18) sorted by relevance

/dports/sysutils/p5-Monitor-Simple/Monitor-Simple-0.2.8/lib/Monitor/Simple/
H A DLog.pm58 my $opt_logfile = $args->{file};
59 $opt_logfile ||= $default_logfile;
60 …$opt_logfile =~ s{^[><]+}{}; # I had problems when '>' was there; it created binary log file (TB…
61 if ($opt_logfile ne 'STDOUT' and $opt_logfile ne 'STDERR' and $opt_logfile !~ m{^>}) {
62 $opt_logfile = ">>$opt_logfile";
64 $logger_conf->{file} = $opt_logfile;
H A DUtils.pm32 my ($opt_logfile, $opt_loglevel, $opt_logformat);
39 'logfile=s' => \$opt_logfile,
45 file => $opt_logfile,
106 my ($opt_logfile, $opt_loglevel, $opt_logformat);
114 'logfile=s' => \$opt_logfile,
119 file => $opt_logfile,
/dports/science/xtb/xtb-6.4.1/src/gfnff/
H A Dstruc_converter.f90109 if (allocated(opt_logfile)) then
110 fnv = opt_logfile
114 opt_logfile = 'convert.log'
143 opt_logfile = fnv
145 deallocate(opt_logfile)
/dports/science/xtb/xtb-6.4.1/src/
H A Dgeoopt_driver.f9074 if (.not.allocated(opt_logfile)) then
77 if (opt_logfile == '-') then
80 call open_file(ilog,opt_logfile,'w')
82 "Optimization log is written to '"//opt_logfile//"'"
H A Dsetparam.f9092 character(len=:), allocatable :: opt_logfile
H A Dset_module.f90200 if (allocated(opt_logfile)) &
201 write(ictrl,'(3x,"logfile=",a)') opt_logfile
1529 if (.not.allocated(opt_logfile)) opt_logfile = val
/dports/sysutils/p5-Monitor-Simple/Monitor-Simple-0.2.8/bin/
H A Dsmonitor29 my ($opt_logfile, $opt_loglevel, $opt_logformat, $opt_debug);
52 'logfile=s' => \$opt_logfile,
89 file => $opt_logfile,
/dports/irc/riece/riece-9.0.0/lisp/
H A Dserver.rb196 opt_outfile, opt_errfile, opt_logfile = nil, nil, nil
208 opt_logfile = logfile
222 server = Server.new(opt_outfile, opt_errfile, opt_logfile)
/dports/misc/amanda-server/amanda-3.3.9/application-src/
H A Damlog-script.pl284 my $opt_logfile;
301 'logfile=s' => \$opt_logfile,
305 …ice, \@opt_level, $opt_index, $opt_message, $opt_collection, $opt_record, $opt_logfile, $opt_text);
/dports/misc/amanda-client/amanda-3.3.9/application-src/
H A Damlog-script.pl284 my $opt_logfile;
301 'logfile=s' => \$opt_logfile,
305 …ice, \@opt_level, $opt_index, $opt_message, $opt_collection, $opt_record, $opt_logfile, $opt_text);
/dports/textproc/p5-WordNet-Similarity/WordNet-Similarity-2.07/utils/
H A Dsimilarity_server.pl18 our($opt_wnhome, $opt_port, $opt_logfile, $opt_maxchild, $opt_stoplist, $opt_version, $opt_help);
59 $error_log = $1 if(defined($opt_logfile) and $opt_logfile ne "" and $opt_logfile =~ /^(.*)$/);
/dports/sysutils/busybox/busybox-1.26.2/util-linux/
H A Dacpid.c258 const char *opt_logfile = "/var/log/acpid.log"; in acpid_main() local
269 &opt_dir, &opt_input, &opt_logfile, &opt_action, &opt_map in acpid_main()
283 xmove_fd(xopen(opt_logfile, O_WRONLY | O_CREAT | O_APPEND), STDOUT_FILENO); in acpid_main()
/dports/audio/julius/julius-4.1.2/julius/
H A Dmain.c54 opt_logfile(Jconf *jconf, char *arg[], int argnum) in opt_logfile() function
100 j_add_option("-logfile", 1, 1, "output log to file", opt_logfile);
/dports/biology/clustal-omega/clustal-omega-1.2.4/src/
H A Dmymain.c474 struct arg_file *opt_logfile = arg_file0("l", "log", in ParseCommandLine() local
547 opt_logfile, in ParseCommandLine()
674 if (opt_logfile->count > 0) { in ParseCommandLine()
675 user_opts->pcLogFile = CkStrdup(opt_logfile->filename[0]); in ParseCommandLine()
/dports/print/texlive-tlmgr/texlive-20150523-extra/tlpkg/TeXLive/
H A DTLUtils.pm3459 my $opt_logfile;
3465 GetOptions("logfile=s" => \$opt_logfile,
3477 if ($opt_logfile) {
3478 open(TLUTILS_LOGFILE, ">$opt_logfile") || die "open(>$opt_logfile) failed: $!\n";
3480 $::LOGFILENAME = $opt_logfile;
/dports/print/texlive-base/texlive-20150521-source/texk/tests/TeXLive/
H A DTLUtils.pm3460 my $opt_logfile;
3466 GetOptions("logfile=s" => \$opt_logfile,
3478 if ($opt_logfile) {
3479 open(TLUTILS_LOGFILE, ">$opt_logfile") || die "open(>$opt_logfile) failed: $!\n";
3481 $::LOGFILENAME = $opt_logfile;
/dports/math/ndiff/ndiff-2.00/
H A Dndiff.c259 static size_t opt_logfile(const char *next_arg);
582 {"logfile", 1, opt_logfile}, in do_one_arg()
1326 opt_logfile(const char *next_arg) in opt_logfile() function
/dports/net/scamper/scamper-cvs-20211026/utils/sc_radargun/
H A Dsc_radargun.c297 char *opt_logfile = NULL, *opt_attempts = NULL, *opt_pps = NULL; in check_options() local
373 opt_logfile = optarg; in check_options()
485 if(opt_logfile != NULL) in check_options()
487 if((logfile = fopen(opt_logfile, "w")) == NULL) in check_options()
490 fprintf(stderr, "could not open %s\n", opt_logfile); in check_options()