Result:
found more than 616 distributions - search limited to the first 2001 files matching your query ( run in 0.649 )


App-local-lib-helper

 view release on metacpan or  search on metacpan

lib/App/local/lib/helper/rationale.pod  view on Meta::CPAN

You can see yours by typing C<perl -V> from the command line.  Here's what I see
when I do so on my terminal:

  $ perl -V

    [EXTENSIVE OUTPUT SNIPPED]

  @INC:
    /Users/johnn/perl5/perlbrew/perls/perl-5.10.1/lib/5.10.1/darwin-thread-multi-2level
    /Users/johnn/perl5/perlbrew/perls/perl-5.10.1/lib/5.10.1
    /Users/johnn/perl5/perlbrew/perls/perl-5.10.1/lib/site_perl/5.10.1/darwin-thread-multi-2level

 view all matches for this distribution


App-makedpkg

 view release on metacpan or  search on metacpan

t/files.t  view on Meta::CPAN


# prepare debuild directory
makedpkg '--prepare', '--verbose';

ok !exit_code;
is output_no_config."\n", <<OUTPUT;
building into debuild
debuild/debian/changelog
debuild/debian/compat
debuild/debian/control
debuild/debian/rules
debuild/debian/source/format
before: pwd
debuild/debian/install
OUTPUT

is `find debuild | sort`, <<DEBUILD, 'files copied';
debuild
debuild/debian
debuild/debian/changelog

 view all matches for this distribution


App-metasyn

 view release on metacpan or  search on metacpan

script/_metasyn  view on Meta::CPAN

#        my $mode = '>';
#        if ($filename =~ /^\s*(>{1,2})\s*(.*)$/) {
#            ($mode, $filename) = ($1, $2);
#        }
#        open $OUT, $mode, $filename
#          or YAML::Old::Mo::Object->die('YAML_DUMP_ERR_FILE_OUTPUT', $filename, "$!");
#    }
#    binmode $OUT, ':utf8';  # if $Config{useperlio} eq 'define';
#    local $/ = "\n"; # reset special to "sane"
#    print $OUT Dump(@_);
#    unless (ref $filename eq 'GLOB') {
#        close $OUT
#          or do {
#              my $errsav = $!;
#              YAML::Old::Mo::Object->die('YAML_DUMP_ERR_FILE_OUTPUT_CLOSE', $filename, $errsav);
#          }
#    }
#}
#
#sub LoadFile {

script/_metasyn  view on Meta::CPAN

#    if (openhandle $filename) {
#        $IN = $filename;
#    }
#    else {
#        open $IN, '<', $filename
#          or YAML::Old::Mo::Object->die('YAML_LOAD_ERR_FILE_INPUT', $filename, "$!");
#    }
#    binmode $IN, ':utf8';  # if $Config{useperlio} eq 'define';
#    return Load(do { local $/; <$IN> });
#}
#

script/_metasyn  view on Meta::CPAN

#  Can't parse node
#YAML_PARSE_ERR_BAD_EXPLICIT
#  Unsupported explicit transfer: '%s'
#YAML_DUMP_USAGE_DUMPCODE
#  Invalid value for DumpCode: '%s'
#YAML_LOAD_ERR_FILE_INPUT
#  Couldn't open %s for input:\n%s
#YAML_DUMP_ERR_FILE_CONCATENATE
#  Can't concatenate to YAML file %s
#YAML_DUMP_ERR_FILE_OUTPUT
#  Couldn't open %s for output:\n%s
#YAML_DUMP_ERR_FILE_OUTPUT_CLOSE
#  Error closing %s:\n%s
#YAML_DUMP_ERR_NO_HEADER
#  With UseHeader=0, the node must be a plain hash or array
#YAML_DUMP_WARN_BAD_NODE_TYPE
#  Can't perform serialization for node type: '%s'

 view all matches for this distribution


App-mgen

 view release on metacpan or  search on metacpan

lib/App/mgen.pm  view on Meta::CPAN

    }

    ## std output
    if ( !$self->{options}->{silent} ) {
        print "$gen\n";
        print "OUTPUT >> $path\n" if $path;
    }

    return $gen;
}

 view all matches for this distribution


App-mkfeyorm

 view release on metacpan or  search on metacpan

lib/App/mkfeyorm.pm  view on Meta::CPAN


after 'set_output_path' => sub {
    my ( $self, $path ) = @_;

    my $tt = Template->new({
        OUTPUT_PATH      => $self->output_path,
        DEFAULT_ENCODING => 'utf-8',
    }) || die "$Template::ERROR\n";

    $self->_set_template($tt);
};

lib/App/mkfeyorm.pm  view on Meta::CPAN


sub _build__template {
    my $self = shift;

    my $tt = Template->new({
        OUTPUT_PATH      => $self->output_path,
        DEFAULT_ENCODING => 'utf-8',
    }) || die "$Template::ERROR\n";

    return $tt;
}

 view all matches for this distribution


App-nauniq

 view release on metacpan or  search on metacpan

script/nauniq  view on Meta::CPAN

        'md5'              => \$Opts{md5},
        'read-output'      => \$Opts{read_output},
        'help|h'           => sub {
            print <<USAGE;
Usage:
  nauniq [OPTIONS]... [INPUT [OUTPUT]]
  nauniq --help
Options:
  --repeated, -d
  --ignore-case, -i
  --num-entries=N, -n

script/nauniq  view on Meta::CPAN


This document describes version 0.111 of nauniq (from Perl distribution App-nauniq), released on 2023-12-27.

=head1 SYNOPSIS

 nauniq [OPTION]... [INPUT [OUTPUT]]

=head1 DESCRIPTION

C<nauniq> is similar to the Unix command C<uniq> but detects repeated lines even
if they are not adjacent. To do this, C<nauniq> must remember the lines being
fed to it. It's basically a glorified form of something like these:

 % awk '!mem[$0]++' INPUT
 % perl -ne'print unless $mem{$_}++' INPUT

There are options to control memory usage: option to only remember a certain
number of unique lines, option to remember a certain number of characters for
each line, and option to only remember the MD5 hash (instead of the content) of
each line. There are also other options like append, forget, and so on.

 view all matches for this distribution


App-nrun

 view release on metacpan or  search on metacpan

lib/NRun/Check.pm  view on Meta::CPAN

# a derived module must call register() in BEGIN{}, otherwise it will not
# be available.
#
# any output generated by the check modules must match the following format:
#
# HOSTNAME;stderr;PID;n/a;error;"OUTPUT"
#
# additionally the exit code must be printed on any error:
#
# HOSTNAME;stdout;PID;n/a;exit;"exit code CODE"
###

 view all matches for this distribution


App-numspeed

 view release on metacpan or  search on metacpan

bin/numspeed  view on Meta::CPAN

            exit 0;
        },
        'help|h'        => sub {
            print <<USAGE;
Usage:
  linespeed [OPTIONS]... < INPUT
  linespeed --version, -v
  linespeed --help, -h
Options:
For more details, see the manpage/documentation.
USAGE

 view all matches for this distribution


App-pandoc-preprocess

 view release on metacpan or  search on metacpan

ppp-Documentation.fls  view on Meta::CPAN

PWD /Users/dbruder/code/perl/App-pandoc-preprocess
INPUT /usr/local/texlive/2013/texmf.cnf
INPUT /usr/local/texlive/2013/texmf-dist/web2c/texmf.cnf
INPUT /usr/local/texlive/2013/texmf-var/web2c/pdftex/pdflatex.fmt
INPUT ppp-Documentation.tex
OUTPUT ppp-Documentation.log
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/base/article.cls
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/base/article.cls
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/base/size10.clo
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/base/size10.clo
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/base/fontenc.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/base/fontenc.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/base/t1enc.def
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/base/t1enc.def
INPUT /usr/local/texlive/2013/texmf-dist/fonts/map/fontname/texfonts.map
INPUT /usr/local/texlive/2013/texmf-dist/fonts/map/fontname/texfonts.map
INPUT /usr/local/texlive/2013/texmf-dist/fonts/tfm/jknappen/ec/ecrm1000.tfm
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/lm/lmodern.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/lm/lmodern.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/amsfonts/amssymb.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/amsfonts/amssymb.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/amsfonts/amsfonts.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/amsfonts/amsfonts.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/amsmath/amsmath.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/amsmath/amsmath.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/amsmath/amstext.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/amsmath/amstext.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/amsmath/amsgen.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/amsmath/amsgen.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/amsmath/amsbsy.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/amsmath/amsbsy.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/amsmath/amsopn.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/amsmath/amsopn.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/generic/ifxetex/ifxetex.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/generic/ifxetex/ifxetex.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/generic/oberdiek/ifluatex.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/generic/oberdiek/ifluatex.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/base/fixltx2e.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/base/fixltx2e.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/upquote/upquote.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/upquote/upquote.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/upquote/upquote.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/base/textcomp.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/base/textcomp.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/base/ts1enc.def
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/base/ts1enc.def
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/base/inputenc.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/base/inputenc.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/base/utf8.def
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/base/utf8.def
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/base/t1enc.dfu
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/base/t1enc.dfu
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/base/ot1enc.dfu
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/base/ot1enc.dfu
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/base/omsenc.dfu
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/base/omsenc.dfu
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/base/ts1enc.dfu
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/base/ts1enc.dfu
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/microtype/microtype.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/microtype/microtype.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/microtype/microtype.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/graphics/keyval.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/graphics/keyval.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/microtype/microtype-pdftex.def
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/microtype/microtype-pdftex.def
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/microtype/microtype.cfg
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/microtype/microtype.cfg
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/microtype/microtype.cfg
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/tools/longtable.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/tools/longtable.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/booktabs/booktabs.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/booktabs/booktabs.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/graphics/graphicx.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/graphics/graphicx.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/graphics/graphics.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/graphics/graphics.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/graphics/trig.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/graphics/trig.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/latexconfig/graphics.cfg
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/latexconfig/graphics.cfg
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/pdftex-def/pdftex.def
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/pdftex-def/pdftex.def
INPUT /usr/local/texlive/2013/texmf-dist/tex/generic/oberdiek/infwarerr.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/generic/oberdiek/infwarerr.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/generic/oberdiek/ltxcmds.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/generic/oberdiek/ltxcmds.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/hyperref/hyperref.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/hyperref/hyperref.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/generic/oberdiek/hobsub-hyperref.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/generic/oberdiek/hobsub-hyperref.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/generic/oberdiek/hobsub-hyperref.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/generic/oberdiek/hobsub-generic.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/generic/oberdiek/hobsub-generic.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/oberdiek/auxhook.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/oberdiek/auxhook.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/oberdiek/kvoptions.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/oberdiek/kvoptions.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/hyperref/pd1enc.def
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/hyperref/pd1enc.def
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/latexconfig/hyperref.cfg
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/latexconfig/hyperref.cfg
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/hyperref/puenc.def
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/hyperref/puenc.def
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/url/url.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/url/url.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/hyperref/hpdftex.def
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/hyperref/hpdftex.def
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/oberdiek/rerunfilecheck.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/oberdiek/rerunfilecheck.sty
INPUT ppp-Documentation.aux
INPUT ppp-Documentation.aux
OUTPUT ppp-Documentation.aux
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/base/ts1cmr.fd
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/base/ts1cmr.fd
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/lm/t1lmr.fd
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/lm/t1lmr.fd
INPUT /usr/local/texlive/2013/texmf-dist/fonts/tfm/public/lm/ec-lmr10.tfm
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/microtype/mt-cmr.cfg
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/microtype/mt-cmr.cfg
INPUT /usr/local/texlive/2013/texmf-dist/tex/context/base/supp-pdf.mkii
INPUT /usr/local/texlive/2013/texmf-dist/tex/context/base/supp-pdf.mkii
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/oberdiek/epstopdf-base.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/oberdiek/epstopdf-base.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/oberdiek/grfext.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/oberdiek/grfext.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/graphics/color.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/graphics/color.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/latexconfig/color.cfg
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/latexconfig/color.cfg
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/hyperref/nameref.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/hyperref/nameref.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/generic/oberdiek/gettitlestring.sty
INPUT /usr/local/texlive/2013/texmf-dist/tex/generic/oberdiek/gettitlestring.sty
INPUT ppp-Documentation.out
INPUT ppp-Documentation.out
INPUT ppp-Documentation.out
INPUT ppp-Documentation.out
OUTPUT ppp-Documentation.pdf
INPUT ./ppp-Documentation.out
INPUT ./ppp-Documentation.out
OUTPUT ppp-Documentation.out
INPUT /usr/local/texlive/2013/texmf-dist/fonts/tfm/public/lm/ec-lmr17.tfm
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/lm/t1lmtt.fd
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/lm/t1lmtt.fd
INPUT /usr/local/texlive/2013/texmf-dist/fonts/tfm/public/lm/ec-lmtt12.tfm
INPUT /usr/local/texlive/2013/texmf-dist/fonts/tfm/public/lm/ec-lmr12.tfm
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/lm/ot1lmr.fd
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/lm/ot1lmr.fd
INPUT /usr/local/texlive/2013/texmf-dist/fonts/tfm/public/lm/rm-lmr12.tfm
INPUT /usr/local/texlive/2013/texmf-dist/fonts/tfm/public/lm/rm-lmr8.tfm
INPUT /usr/local/texlive/2013/texmf-dist/fonts/tfm/public/lm/rm-lmr6.tfm
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/lm/omllmm.fd
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/lm/omllmm.fd
INPUT /usr/local/texlive/2013/texmf-dist/fonts/tfm/public/lm/lmmi12.tfm
INPUT /usr/local/texlive/2013/texmf-dist/fonts/tfm/public/lm/lmmi8.tfm
INPUT /usr/local/texlive/2013/texmf-dist/fonts/tfm/public/lm/lmmi6.tfm
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/lm/omslmsy.fd
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/lm/omslmsy.fd
INPUT /usr/local/texlive/2013/texmf-dist/fonts/tfm/public/lm/lmsy10.tfm
INPUT /usr/local/texlive/2013/texmf-dist/fonts/tfm/public/lm/lmsy8.tfm
INPUT /usr/local/texlive/2013/texmf-dist/fonts/tfm/public/lm/lmsy6.tfm
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/lm/omxlmex.fd
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/lm/omxlmex.fd
INPUT /usr/local/texlive/2013/texmf-dist/fonts/tfm/public/lm/lmex10.tfm
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/amsfonts/umsa.fd
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/amsfonts/umsa.fd
INPUT /usr/local/texlive/2013/texmf-dist/fonts/tfm/public/amsfonts/symbols/msam10.tfm
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/microtype/mt-msa.cfg
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/microtype/mt-msa.cfg
INPUT /usr/local/texlive/2013/texmf-dist/fonts/tfm/public/amsfonts/symbols/msam10.tfm
INPUT /usr/local/texlive/2013/texmf-dist/fonts/tfm/public/amsfonts/symbols/msam7.tfm
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/amsfonts/umsb.fd
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/amsfonts/umsb.fd
INPUT /usr/local/texlive/2013/texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm10.tfm
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/microtype/mt-msb.cfg
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/microtype/mt-msb.cfg
INPUT /usr/local/texlive/2013/texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm10.tfm
INPUT /usr/local/texlive/2013/texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm7.tfm
INPUT /usr/local/texlive/2013/texmf-var/fonts/map/pdftex/updmap/pdftex.map
INPUT /usr/local/texlive/2013/texmf-dist/fonts/tfm/public/lm/ec-lmr12.tfm
INPUT /usr/local/texlive/2013/texmf-dist/fonts/tfm/public/lm/ec-lmbx12.tfm
INPUT /usr/local/texlive/2013/texmf-dist/fonts/tfm/public/lm/ec-lmri10.tfm
INPUT /usr/local/texlive/2013/texmf-dist/fonts/tfm/public/lm/ec-lmtti10.tfm
INPUT ppp-Documentation.toc
INPUT ppp-Documentation.toc
INPUT /usr/local/texlive/2013/texmf-dist/fonts/tfm/public/lm/ec-lmbx10.tfm
INPUT /usr/local/texlive/2013/texmf-dist/fonts/tfm/public/lm/rm-lmr10.tfm
INPUT /usr/local/texlive/2013/texmf-dist/fonts/tfm/public/lm/rm-lmr7.tfm
INPUT /usr/local/texlive/2013/texmf-dist/fonts/tfm/public/lm/rm-lmr5.tfm
INPUT /usr/local/texlive/2013/texmf-dist/fonts/tfm/public/lm/lmmi10.tfm
INPUT /usr/local/texlive/2013/texmf-dist/fonts/tfm/public/lm/lmmi7.tfm
INPUT /usr/local/texlive/2013/texmf-dist/fonts/tfm/public/lm/lmmi5.tfm
INPUT /usr/local/texlive/2013/texmf-dist/fonts/tfm/public/lm/lmsy10.tfm
INPUT /usr/local/texlive/2013/texmf-dist/fonts/tfm/public/lm/lmsy7.tfm
INPUT /usr/local/texlive/2013/texmf-dist/fonts/tfm/public/lm/lmsy5.tfm
INPUT /usr/local/texlive/2013/texmf-dist/fonts/tfm/public/amsfonts/symbols/msam10.tfm
INPUT /usr/local/texlive/2013/texmf-dist/fonts/tfm/public/amsfonts/symbols/msam7.tfm
INPUT /usr/local/texlive/2013/texmf-dist/fonts/tfm/public/amsfonts/symbols/msam5.tfm
INPUT /usr/local/texlive/2013/texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm10.tfm
INPUT /usr/local/texlive/2013/texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm7.tfm
INPUT /usr/local/texlive/2013/texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm5.tfm
OUTPUT ppp-Documentation.toc
INPUT /usr/local/texlive/2013/texmf-dist/fonts/tfm/public/lm/ec-lmtt10.tfm
INPUT /usr/local/texlive/2013/texmf-dist/fonts/tfm/public/lm/ec-lmbx12.tfm
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/lm/ts1lmr.fd
INPUT /usr/local/texlive/2013/texmf-dist/tex/latex/lm/ts1lmr.fd
INPUT /usr/local/texlive/2013/texmf-dist/fonts/tfm/public/lm/ts1-lmr10.tfm
INPUT /usr/local/texlive/2013/texmf-dist/fonts/tfm/public/lm/ec-lmr7.tfm
INPUT /usr/local/texlive/2013/texmf-dist/fonts/tfm/public/lm/ec-lmtt8.tfm
INPUT /Users/dbruder/tmp/FQdjc5eyxZ/image-1.png
INPUT /Users/dbruder/tmp/FQdjc5eyxZ/image-1.png
INPUT /Users/dbruder/tmp/FQdjc5eyxZ/image-1.png
INPUT /Users/dbruder/tmp/FQdjc5eyxZ/image-2.png
INPUT /Users/dbruder/tmp/FQdjc5eyxZ/image-2.png
INPUT /Users/dbruder/tmp/FQdjc5eyxZ/image-2.png
INPUT /Users/dbruder/tmp/FQdjc5eyxZ/image-3.png
INPUT /Users/dbruder/tmp/FQdjc5eyxZ/image-3.png
INPUT /Users/dbruder/tmp/FQdjc5eyxZ/image-3.png
INPUT /Users/dbruder/tmp/FQdjc5eyxZ/image-4.png
INPUT /Users/dbruder/tmp/FQdjc5eyxZ/image-4.png
INPUT /Users/dbruder/tmp/FQdjc5eyxZ/image-4.png
INPUT /Users/dbruder/tmp/FQdjc5eyxZ/image-5.png
INPUT /Users/dbruder/tmp/FQdjc5eyxZ/image-5.png
INPUT /Users/dbruder/tmp/FQdjc5eyxZ/image-5.png
INPUT /Users/dbruder/tmp/FQdjc5eyxZ/image-6.png
INPUT /Users/dbruder/tmp/FQdjc5eyxZ/image-6.png
INPUT /Users/dbruder/tmp/FQdjc5eyxZ/image-6.png
INPUT /Users/dbruder/tmp/FQdjc5eyxZ/image-7.png
INPUT /Users/dbruder/tmp/FQdjc5eyxZ/image-7.png
INPUT /Users/dbruder/tmp/FQdjc5eyxZ/image-7.png
INPUT /Users/dbruder/tmp/FQdjc5eyxZ/image-8.png
INPUT /Users/dbruder/tmp/FQdjc5eyxZ/image-8.png
INPUT /Users/dbruder/tmp/FQdjc5eyxZ/image-8.png
INPUT /Users/dbruder/tmp/FQdjc5eyxZ/image-9.png
INPUT /Users/dbruder/tmp/FQdjc5eyxZ/image-9.png
INPUT /Users/dbruder/tmp/FQdjc5eyxZ/image-9.png
INPUT /Users/dbruder/tmp/FQdjc5eyxZ/image-10.png
INPUT /Users/dbruder/tmp/FQdjc5eyxZ/image-10.png
INPUT /Users/dbruder/tmp/FQdjc5eyxZ/image-10.png
INPUT /Users/dbruder/tmp/FQdjc5eyxZ/image-11.png
INPUT /Users/dbruder/tmp/FQdjc5eyxZ/image-11.png
INPUT /Users/dbruder/tmp/FQdjc5eyxZ/image-11.png
INPUT ppp-Documentation.lof
INPUT ppp-Documentation.lof
OUTPUT ppp-Documentation.lof
INPUT ppp-Documentation.aux
INPUT ./ppp-Documentation.out
INPUT ./ppp-Documentation.out
INPUT /usr/local/texlive/2013/texmf-dist/fonts/enc/dvips/lm/lm-ec.enc
INPUT /usr/local/texlive/2013/texmf-dist/fonts/enc/dvips/lm/lm-ts1.enc
INPUT /usr/local/texlive/2013/texmf-dist/fonts/type1/public/lm/lmbx10.pfb
INPUT /usr/local/texlive/2013/texmf-dist/fonts/type1/public/lm/lmbx12.pfb
INPUT /usr/local/texlive/2013/texmf-dist/fonts/type1/public/lm/lmr10.pfb
INPUT /usr/local/texlive/2013/texmf-dist/fonts/type1/public/lm/lmr12.pfb
INPUT /usr/local/texlive/2013/texmf-dist/fonts/type1/public/lm/lmr17.pfb
INPUT /usr/local/texlive/2013/texmf-dist/fonts/type1/public/lm/lmri10.pfb
INPUT /usr/local/texlive/2013/texmf-dist/fonts/type1/public/lm/lmtt10.pfb
INPUT /usr/local/texlive/2013/texmf-dist/fonts/type1/public/lm/lmtt12.pfb
INPUT /usr/local/texlive/2013/texmf-dist/fonts/type1/public/lm/lmtt8.pfb
INPUT /usr/local/texlive/2013/texmf-dist/fonts/type1/public/lm/lmtti10.pfb

 view all matches for this distribution


App-perlall

 view release on metacpan or  search on metacpan

lib/Devel/PatchPerl/Plugin/Asan.pm  view on Meta::CPAN

+    }
     else
 	op = PL_op->op_next;
 
@@ -4029,6 +4034,7 @@ PP(pp_entereval)
     PUTBACK;
 
     if (doeval(gimme, NULL, runcv, seq)) {
+	OP *ret;
 	if (was != PL_breakable_sub_gen /* Some subs defined here. */
 	    ? (PERLDB_LINE || PERLDB_SAVESRC)

 view all matches for this distribution


App-perlfind

 view release on metacpan or  search on metacpan

lib/App/perlfind.pm  view on Meta::CPAN

    perlfind xor
    perlfind foreach
    perlfind isa
    perlfind AUTOLOAD
    perlfind TIEARRAY
    perlfind INPUT_RECORD_SEPARATOR
    perlfind '$^F'
    perlfind '\Q'
    perlfind PERL5OPT
    perlfind :mmap
    perlfind __WARN__

 view all matches for this distribution


App-perlimports

 view release on metacpan or  search on metacpan

script/perlimports  view on Meta::CPAN

    print $req->content;

Where does C<GET> come from? If you're not familiar with
L<HTTP::Request::Common>, you may not realize that the statement C<use
HTTP::Request::Common> has implicitly imported the functions C<GET>, C<HEAD>,
C<PUT>, C<PATCH>, C<POST> and C<OPTIONS> into to this block of code.

What would happen if we used C<perlimports> to import all needed functions
explicitly? It might look something like this:

    use strict;

script/perlimports  view on Meta::CPAN

    my $req = $ua->request( GET 'https://metacpan.org/' );
    print $req->content;

The code above makes it immediately obvious where C<GET> originates, which in
turn makes it easier for us to look up its documentation. It has the added
bonus of also not importing C<HEAD>, C<PUT> or any of the other functions which
L<HTTP::Request::Common> exports by default. So, those functions cannot
unwittingly be used later in the code. This makes for more understandable code
for present day you, future you and any others tasked with reading your code at
some future point.

 view all matches for this distribution


App-perlrdf

 view release on metacpan or  search on metacpan

lib/App/perlrdf/Command/Canonicalize.pm  view on Meta::CPAN

	[ 'output|o=s',        'Output filename or URL' ],
	[]=>=>=>=>=>=>=>=>=>=>=>=>=>=>=>=>=>=>=>=>=>=>=>=>=>=>=>
	[ 'on-fail|x=s',       'Behaviour when graphs cannot be canonicalized' ],	
);

use constant usage_desc    => '%c canonicalize %o INPUT [OUTPUT]';

sub execute
{
	require App::perlrdf::FileSpec::InputRDF;
	require App::perlrdf::FileSpec::OutputRDF;

 view all matches for this distribution


App-phoebe

 view release on metacpan or  search on metacpan

lib/App/Phoebe.pm  view on Meta::CPAN

C<@extensions> is a list of code references allowing you to handle additional
URLs; return 1 if you handle a URL; each code reference gets called with $stream
(L<Mojo::IOLoop::Stream>), the first line of the request (a Gemini URL, a Gopher
selector, a finger user, a HTTP request line), a hash reference for the headers
(in the case of HTTP requests), and a buffer of bytes (e.g. for Titan or HTTP
PUT or POST requests).

C<@main_menu> adds more lines to the main menu, possibly links that aren't
simply links to existing pages.

C<@footer> is a list of code references allowing you to add things like licenses

 view all matches for this distribution


App-plx

 view release on metacpan or  search on metacpan

bin/plx-packed  view on Meta::CPAN

  $fatpacked{"File/pushd.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'FILE_PUSHD';
    use strict;use warnings;package File::pushd;our$VERSION='1.009';our@EXPORT=qw(pushd tempd);our@ISA=qw(Exporter);use Exporter;use Carp;use Cwd qw(getcwd abs_path);use File::Path qw(rmtree);use File::Temp qw();use File::Spec;use overload q{""}=>sub...
  FILE_PUSHD
  
  $fatpacked{"HTTP/Tiny.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'HTTP_TINY';
    package HTTP::Tiny;use strict;use warnings;our$VERSION='0.056';use Carp ();my@attributes;BEGIN {@attributes=qw(cookie_jar default_headers http_proxy https_proxy keep_alive local_address max_redirect max_size proxy no_proxy timeout SSL_options ver...
        sub $sub_name {
            my (\$self, \$url, \$args) = \@_;
            \@_ == 2 || (\@_ == 3 && ref \$args eq 'HASH')
            or Carp::croak(q/Usage: \$http->$sub_name(URL, [HASHREF])/ . "\n");
            return \$self->request('$req_method', \$url, \$args || {});

 view all matches for this distribution


App-pmuninstall

 view release on metacpan or  search on metacpan

lib/App/pmuninstall.pm  view on Meta::CPAN

my $cpanmetadb       = 'http://cpanmetadb.plackperl.org/v1.0/package';
my @core_modules_dir = do { my %h; grep !$h{$_}++, @Config{qw/archlib archlibexp privlib privlibexp/} };

$ENV{ANSI_COLORS_DISABLED} = 1 if $^O eq 'MSWin32';

our $OUTPUT_INDENT_LEVEL = 0;

sub new {
    my ($class, $inc) = @_;
    $inc = [@INC] unless ref $inc eq 'ARRAY';
    bless {

lib/App/pmuninstall.pm  view on Meta::CPAN


    my (@deps, %seen);
    for my $dep ($content =~ m|<li><a href=[^>]+>([a-zA-Z0-9_:-]+)|smg) {
        $dep =~ s/^\s+|\s+$//smg; # trim
        next if $seen{$dep}++;
        local $OUTPUT_INDENT_LEVEL = $OUTPUT_INDENT_LEVEL + 1;
        $self->puts("Finding $dep in your \@INC (dependencies)") if $self->{verbose};
        push @deps, $dep if $self->locate_pack($dep);
    }

    return @deps;

lib/App/pmuninstall.pm  view on Meta::CPAN

}

sub puts {
    my ($self, @msg) = @_;
    push @msg, '' unless @msg;
    print '  ' x $OUTPUT_INDENT_LEVEL if $OUTPUT_INDENT_LEVEL;
    print @msg, "\n";
}

sub usage {
    my $self = shift;

 view all matches for this distribution


App-ppgrep

 view release on metacpan or  search on metacpan

script/_ppgrep  view on Meta::CPAN

#        my $mode = '>';
#        if ($filename =~ /^\s*(>{1,2})\s*(.*)$/) {
#            ($mode, $filename) = ($1, $2);
#        }
#        open $OUT, $mode, $filename
#          or YAML::Old::Mo::Object->die('YAML_DUMP_ERR_FILE_OUTPUT', $filename, "$!");
#    }
#    binmode $OUT, ':utf8';  # if $Config{useperlio} eq 'define';
#    local $/ = "\n"; # reset special to "sane"
#    print $OUT Dump(@_);
#    unless (ref $filename eq 'GLOB') {
#        close $OUT
#          or do {
#              my $errsav = $!;
#              YAML::Old::Mo::Object->die('YAML_DUMP_ERR_FILE_OUTPUT_CLOSE', $filename, $errsav);
#          }
#    }
#}
#
#sub LoadFile {

script/_ppgrep  view on Meta::CPAN

#    if (openhandle $filename) {
#        $IN = $filename;
#    }
#    else {
#        open $IN, '<', $filename
#          or YAML::Old::Mo::Object->die('YAML_LOAD_ERR_FILE_INPUT', $filename, "$!");
#    }
#    binmode $IN, ':utf8';  # if $Config{useperlio} eq 'define';
#    return Load(do { local $/; <$IN> });
#}
#

script/_ppgrep  view on Meta::CPAN

#  Can't parse node
#YAML_PARSE_ERR_BAD_EXPLICIT
#  Unsupported explicit transfer: '%s'
#YAML_DUMP_USAGE_DUMPCODE
#  Invalid value for DumpCode: '%s'
#YAML_LOAD_ERR_FILE_INPUT
#  Couldn't open %s for input:\n%s
#YAML_DUMP_ERR_FILE_CONCATENATE
#  Can't concatenate to YAML file %s
#YAML_DUMP_ERR_FILE_OUTPUT
#  Couldn't open %s for output:\n%s
#YAML_DUMP_ERR_FILE_OUTPUT_CLOSE
#  Error closing %s:\n%s
#YAML_DUMP_ERR_NO_HEADER
#  With UseHeader=0, the node must be a plain hash or array
#YAML_DUMP_WARN_BAD_NODE_TYPE
#  Can't perform serialization for node type: '%s'

 view all matches for this distribution



App-pretty

 view release on metacpan or  search on metacpan

bin/pretty  view on Meta::CPAN

            exit 0;
        },
        'help|h'     => sub {
            print <<USAGE;
Usage:
  pretty [OPTIONS] < INPUT
  pretty --version
  pretty --help
Examples:
  pretty -o YAML data.json
Options:

bin/pretty  view on Meta::CPAN


=head1 SYNOPSIS

Usage:

 % pretty [OPTIONS] < INPUT

Examples:

 % echo '[1..5]' | pretty -i perl
 .----.

 view all matches for this distribution


App-rank

 view release on metacpan or  search on metacpan

script/rank  view on Meta::CPAN

        'show-percentile!' => \$Opts{show_percentile},
        '-p' => sub { $Opts{show_percentile} = 1 },
        'help|h' => sub {
            print <<USAGE;
Usage:
  rank [OPTIONS]... [INPUT]...
  rank --help

For more details, see the manpage/documentation.
USAGE
            exit 0;

 view all matches for this distribution


App-remarkpl

 view release on metacpan or  search on metacpan

lib/App/remarkpl/public/remark.min.js  view on Meta::CPAN

require=function e(t,a,r){function s(i,l){if(!a[i]){if(!t[i]){var o="function"==typeof require&&require;if(!l&&o)return o(i,!0);if(n)return n(i,!0);var c=new Error("Cannot find module '"+i+"'");throw c.code="MODULE_NOT_FOUND",c}var d=a[i]={exports:{}...
a.relevance>r.relevance&&(s=r,r=a)}),s.language&&(r.second_best=s),r}function u(e){return N.tabReplace||N.useBR?e.replace(x,function(e,t){return N.useBR&&"\n"===e?"<br>":N.tabReplace?t.replace(/\t/g,N.tabReplace):void 0}):e}function h(e,t,a){var r=t?...
}),e.COMMENT("#cs","#ce"),e.COMMENT("#comments-start","#comments-end")]},n={begin:"\\$[A-z0-9_]+"},i={className:"string",variants:[{begin:/"/,end:/"/,contains:[{begin:/""/,relevance:0}]},{begin:/'/,end:/'/,contains:[{begin:/''/,relevance:0}]}]},l={va...
beginKeywords:"class interface",end:/[{;=]/,illegal:/[^\s:]/,contains:[e.TITLE_MODE,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{beginKeywords:"namespace",end:/[{;=]/,illegal:/[^\s:]/,contains:[e.inherit(e.TITLE_MODE,{begin:"[a-zA-Z](\\.?\\w)*"}),...
},a={className:"params",begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0},r={className:"symbol",variants:[{begin:/\=[lgenxc]=/},{begin:/\$/}]},s={className:"comment",variants:[{begin:"'",end:"'"},{begin:'"',end:'"'}],illegal:"\\n",contains:[e.BACKSL...
},{begin:":\\s*"+t}]}]}}},{name:"hsp",create:function(e){return{case_insensitive:!0,lexemes:/[\w\._]+/,keywords:"goto gosub return break repeat loop continue wait await dim sdim foreach dimtype dup dupptr end stop newmod delmod mref run exgoto on mca...
},contains:[t,{className:"keyword",begin:"\\bend\\sif\\b"},{className:"function",beginKeywords:"function",end:"$",contains:[t,s,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,e.BINARY_NUMBER_MODE,e.C_NUMBER_MODE,r]},{className:"function",begin:"\\bend\\s+",e...
contains:[{className:"comment",begin:/\(\*/,end:/\*\)/},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,e.C_NUMBER_MODE,{begin:/\{/,end:/\}/,illegal:/:/}]}}},{name:"matlab",create:function(e){var t=[e.C_NUMBER_MODE,{className:"string",begin:"'",end:"'",contai...
illegal:"</",contains:[e.C_NUMBER_MODE,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{className:"string",begin:"`",end:"`",contains:[e.BACKSLASH_ESCAPE]},{begin:"[\\$\\%\\@](\\^\\w\\b|#\\w+|[^\\s\\w{]|{\\w+}|\\w+)"},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_M...
contains:[i]});return{aliases:["ps"],lexemes:/-?[A-z\.\-]+/,case_insensitive:!0,keywords:{keyword:"if else foreach return function do while until elseif begin for trap data dynamicparam end break throw param continue finally in switch exit filter try...
},{className:"meta",begin:"#\\!?\\[",end:"\\]",contains:[{className:"meta-string",begin:/"/,end:/"/}]},{className:"class",beginKeywords:"type",end:";",contains:[e.inherit(e.UNDERSCORE_TITLE_MODE,{endsParent:!0})],illegal:"\\S"},{className:"class",beg...
literal:"true false nil"},contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.NUMBER_MODE,a,t.preprocessor],illegal:/#/}}},{name:"sql",create:function(e){var t=e.COMMENT("--","$");return{case_insensitive:!0,illegal:/[<>{}*#]/,contains:[{beginKey...
return{aliases:["styl"],case_insensitive:!1,keywords:"if else for in",illegal:"("+o.join("|")+")",contains:[e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,a,{begin:"\\.[a-zA-Z][a-zA-Z0-9_-]*"+i,returnBegin:!0,cont...
built_in:"ip eip rip al ah bl bh cl ch dl dh sil dil bpl spl r8b r9b r10b r11b r12b r13b r14b r15b ax bx cx dx si di bp sp r8w r9w r10w r11w r12w r13w r14w r15w eax ebx ecx edx esi edi ebp esp eip r8d r9d r10d r11d r12d r13d r14d r15d rax rbx rcx rdx...
"atelier-lakeside-light":".hljs-atelier-lakeside-light .hljs-comment,.hljs-atelier-lakeside-light .hljs-quote{color:#5a7b8c}.hljs-atelier-lakeside-light .hljs-variable,.hljs-atelier-lakeside-light .hljs-template-variable,.hljs-atelier-lakeside-light ...
grayscale:".hljs-grayscale .hljs{display:block;overflow-x:auto;padding:.5em;color:#333;background:#fff}.hljs-grayscale .hljs-comment,.hljs-grayscale .hljs-quote{color:#777;font-style:italic}.hljs-grayscale .hljs-keyword,.hljs-grayscale .hljs-selector...
"solarized-dark":".hljs-solarized-dark .hljs{display:block;overflow-x:auto;padding:.5em;background:#002b36;color:#839496}.hljs-solarized-dark .hljs-comment,.hljs-solarized-dark .hljs-quote{color:#586e75}.hljs-solarized-dark .hljs-keyword,.hljs-solari...
containerLayout:'<div class="remark-notes-area">\n  <div class="remark-top-area">\n    <div class="remark-toolbar">\n      <a class="remark-toolbar-link" href="#increase">+</a>\n      <a class="remark-toolbar-link" href="#decrease">-</a>\n      <span...

 view all matches for this distribution


App-reposdb

 view release on metacpan or  search on metacpan

script/_reposdb-inline  view on Meta::CPAN

#        my $mode = '>';
#        if ($filename =~ /^\s*(>{1,2})\s*(.*)$/) {
#            ($mode, $filename) = ($1, $2);
#        }
#        open $OUT, $mode, $filename
#          or YAML::Old::Mo::Object->die('YAML_DUMP_ERR_FILE_OUTPUT', $filename, "$!");
#    }
#    binmode $OUT, ':utf8';  # if $Config{useperlio} eq 'define';
#    local $/ = "\n"; # reset special to "sane"
#    print $OUT Dump(@_);
#    unless (ref $filename eq 'GLOB') {
#        close $OUT
#          or do {
#              my $errsav = $!;
#              YAML::Old::Mo::Object->die('YAML_DUMP_ERR_FILE_OUTPUT_CLOSE', $filename, $errsav);
#          }
#    }
#}
#
#sub LoadFile {

script/_reposdb-inline  view on Meta::CPAN

#    if (openhandle $filename) {
#        $IN = $filename;
#    }
#    else {
#        open $IN, '<', $filename
#          or YAML::Old::Mo::Object->die('YAML_LOAD_ERR_FILE_INPUT', $filename, "$!");
#    }
#    binmode $IN, ':utf8';  # if $Config{useperlio} eq 'define';
#    return Load(do { local $/; <$IN> });
#}
#

script/_reposdb-inline  view on Meta::CPAN

#  Can't parse node
#YAML_PARSE_ERR_BAD_EXPLICIT
#  Unsupported explicit transfer: '%s'
#YAML_DUMP_USAGE_DUMPCODE
#  Invalid value for DumpCode: '%s'
#YAML_LOAD_ERR_FILE_INPUT
#  Couldn't open %s for input:\n%s
#YAML_DUMP_ERR_FILE_CONCATENATE
#  Can't concatenate to YAML file %s
#YAML_DUMP_ERR_FILE_OUTPUT
#  Couldn't open %s for output:\n%s
#YAML_DUMP_ERR_FILE_OUTPUT_CLOSE
#  Error closing %s:\n%s
#YAML_DUMP_ERR_NO_HEADER
#  With UseHeader=0, the node must be a plain hash or array
#YAML_DUMP_WARN_BAD_NODE_TYPE
#  Can't perform serialization for node type: '%s'

 view all matches for this distribution


App-revealup

 view release on metacpan or  search on metacpan

share/revealjs/plugin/highlight/highlight.esm.js  view on Meta::CPAN

function e(t){return(e="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(t)}function t(e,t){if(!(...
/*!
 * reveal.js plugin that adds syntax highlight support.
 */
var of={id:"highlight",HIGHLIGHT_STEP_DELIMITER:"|",HIGHLIGHT_LINE_DELIMITER:",",HIGHLIGHT_LINE_RANGE_DELIMITER:"-",hljs:rf,init:function(e){var t=e.getConfig().highlight||{};t.highlightOnLoad="boolean"!=typeof t.highlightOnLoad||t.highlightOnLoad,t....

 view all matches for this distribution


App-rs

 view release on metacpan or  search on metacpan

rs.xs  view on Meta::CPAN

					}
				}
			}
		}
		RETVAL = v;
	OUTPUT:
		RETVAL

void
rs_unparse(SV *v, int fd)
	CODE:

rs.xs  view on Meta::CPAN

	CODE:
		struct timespec	times[2];
		times[0].tv_nsec = UTIME_OMIT;
		times[1].tv_sec = t, times[1].tv_nsec = 0;
		RETVAL = !utimensat(AT_FDCWD, f, times, AT_SYMLINK_NOFOLLOW);
	OUTPUT:
		RETVAL

 view all matches for this distribution


App-sbozyp

 view release on metacpan or  search on metacpan

bin/sbozyp  view on Meta::CPAN

    return wantarray ? @pkg_queue : \@pkg_queue;
}

sub build_slackware_pkg {
    my ($pkg) = @_;
    local $ENV{OUTPUT} = $CONFIG{TMPDIR}; # all SlackBuilds use the $OUTPUT env var to determine output pkg location
    my $staging_dir = prepare_pkg($pkg);
    my $slackbuild = $pkg->{PRGNAM} . '.SlackBuild';
    my $cmd = sbozyp_open('-|', "cd '$staging_dir' && chmod +x ./$slackbuild && ./$slackbuild");
    my $slackware_pkg;
    while (my $line = <$cmd>) {

 view all matches for this distribution


App-scriptdist

 view release on metacpan or  search on metacpan

lib/App/scriptdist.pm  view on Meta::CPAN

    find( \%options, $directory );

    return @files;
	}

=item copy( INPUT_FILE, OUTPUT_FILE, CONFIG_HASH )

Copy the file from one place to another.

=cut

 view all matches for this distribution


App-sdview-Output-Tickit

 view release on metacpan or  search on metacpan

lib/App/sdview/Output/Tickit.pm  view on Meta::CPAN


=cut

# Override default output format
require App::sdview;
$App::sdview::DEFAULT_OUTPUT = "tickit"
   if $App::sdview::DEFAULT_OUTPUT eq "terminal" and -t STDOUT;

my @HIGHLIGHT_PEN = (
   fg => 16, # avoid bold-black
   bg => "magenta",
   b  => 1,

 view all matches for this distribution


App-sdview

 view release on metacpan or  search on metacpan

lib/App/sdview.pm  view on Meta::CPAN

   $ sdview Some::Module -o Markdown > module.md

=cut

# Permit loaded output modules to override
our $DEFAULT_OUTPUT = "terminal";

use Module::Pluggable
   search_path => "App::sdview::Parser",
   sub_name    => "PARSERS",
   inner       => 0,
   require     => 1;

use Module::Pluggable
   search_path => "App::sdview::Output",
   sub_name    => "OUTPUTS",
   inner       => 0,
   require     => 1;

# Must call this *before* ->run entersub so that DEFAULT_OUTPUT is overridden properly
my @OUTPUT_CLASSES = OUTPUTS();

method run ( $file,
   :$format = undef,
   :$output //= $DEFAULT_OUTPUT,
   :$highlight = 0,
   :$output_options //= [],
   %opts
) {
   my @PARSER_CLASSES = sort { $a->sort_order <=> $b->sort_order } PARSERS();

lib/App/sdview.pm  view on Meta::CPAN

      exit 0;
   }
   if( ( $output // "" ) eq "?" ) {
      say "Output format types:";
      $_->can( "format" ) and say "  " . $_->format . "  (provided by $_)"
         for @OUTPUT_CLASSES;
      exit 0;
   }

   if( -f( my $configpath = "$ENV{HOME}/.sdviewrc" ) ) {
      App::sdview::Style->load_config( $configpath );

lib/App/sdview.pm  view on Meta::CPAN

   $parser_class //= do {
      first { $_->can_parse_file( $file ) } @PARSER_CLASSES or
         die "Unable to find a handler for $file\n";
   };

   my $output_class = first { $_->can( "format" ) and $_->format eq $output } @OUTPUT_CLASSES or
      die "Unrecognised output name $output\n";

   my @paragraphs = $parser_class->new->parse_file( $file );

   if( $highlight ) {

 view all matches for this distribution


App-sitelenmute

 view release on metacpan or  search on metacpan

share/view/mootools-core-1.4.js  view on Meta::CPAN

}if(j&&e=="get"){f+=(f.contains("?")?"&":"?")+j;j=null;}var n=this.xhr;if(a){n.onloadstart=this.loadstart.bind(this);n.onprogress=this.progress.bind(this);
}n.open(e.toUpperCase(),f,this.options.async,this.options.user,this.options.password);if(this.options.user&&"withCredentials" in n){n.withCredentials=true;
}n.onreadystatechange=this.onStateChange.bind(this);Object.each(this.headers,function(q,p){try{n.setRequestHeader(p,q);}catch(r){this.fireEvent("exception",[p,q]);
}},this);this.fireEvent("request");n.send(j);if(!this.options.async){this.onStateChange();}else{if(this.options.timeout){this.timer=this.timeout.delay(this.options.timeout,this);
}}return this;},cancel:function(){if(!this.running){return this;}this.running=false;var e=this.xhr;e.abort();clearTimeout(this.timer);e.onreadystatechange=d;
if(a){e.onprogress=e.onloadstart=d;}this.xhr=new Browser.Request();this.fireEvent("cancel");return this;}});var b={};["get","post","put","delete","GET","POST","PUT","DELETE"].each(function(e){b[e]=function(g){var f={method:e};
if(g!=null){f.data=g;}return this.send(f);};});c.implement(b);Element.Properties.send={set:function(e){var f=this.get("send").cancel();f.setOptions(e);
return this;},get:function(){var e=this.retrieve("send");if(!e){e=new c({data:this,link:"cancel",method:this.get("method")||"post",url:this.get("action")});
this.store("send",e);}return e;}};Element.implement({send:function(e){var f=this.get("send");f.send({data:this,url:e||f.options.url});return this;}});})();
Request.HTML=new Class({Extends:Request,options:{update:false,append:false,evalScripts:true,filter:false,headers:{Accept:"text/html, application/xml, text/xml, */*"}},success:function(f){var e=this.options,c=this.response;
c.html=f.stripScripts(function(h){c.javascript=h;});var d=c.html.match(/<body[^>]*>([\s\S]*?)<\/body>/i);if(d){c.html=d[1];}var b=new Element("div").set("html",c.html);

 view all matches for this distribution


( run in 0.649 second using v1.01-cache-2.11-cpan-4e96b696675 )