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


Acme-CPANModules-NewDistributions-202001

 view release on metacpan or  search on metacpan

lib/Acme/CPANModules/NewDistributions/202001.pm  view on Meta::CPAN

                     summary     => "Encryption of the FTN messages.",
                   },
                   {
                     description => "Distribution File-BackupCopy first released by SGRAY at 2020-01-20T07:48:10Z.",
                     module      => "File::BackupCopy",
                     summary     => "create a backup copy of the file.",
                   },
                   {
                     description => "Distribution Font-Fontconfig first released by VANHOESEL at 2020-01-20T16:38:30Z.",
                     module      => "Font::Fontconfig",
                     summary     => "An Object Oriented interface to fontconfig",

lib/Acme/CPANModules/NewDistributions/202001.pm  view on Meta::CPAN

=item * L<FTN::Crypt> - Encryption of the FTN messages.

Distribution FTN-Crypt first released by PIETRO at 2020-01-15T20:49:51Z.


=item * L<File::BackupCopy> - create a backup copy of the file.

Distribution File-BackupCopy first released by SGRAY at 2020-01-20T07:48:10Z.


=item * L<Font::Fontconfig> - An Object Oriented interface to fontconfig

 view all matches for this distribution


Acme-CPANModules-RenamingFiles

 view release on metacpan or  search on metacpan

lib/Acme/CPANModules/RenamingFiles.pm  view on Meta::CPAN

by Robin Barker (since 2005), and <pm:App::FileTools::BulkRename> by Stirling
Westrup (since 2010).

<prog:rename> by Peder Stray (you might have difficulty installing the archive
using CPAN client since it does not include a module) is based on Larry Wall's
`rename` script and has grown to feature dry-run mode, backup, interactive
prompt, etc.

<prog:rename> from <pm:File::Rename> by Robin Barker is also based on Larry
Wall's script and refactors the functionality into a module. It does not have as
many options as Peder's version but offers a Unicode option.

lib/Acme/CPANModules/RenamingFiles.pm  view on Meta::CPAN

by Robin Barker (since 2005), and L<App::FileTools::BulkRename> by Stirling
Westrup (since 2010).

L<rename> by Peder Stray (you might have difficulty installing the archive
using CPAN client since it does not include a module) is based on Larry Wall's
C<rename> script and has grown to feature dry-run mode, backup, interactive
prompt, etc.

L<rename> from L<File::Rename> by Robin Barker is also based on Larry
Wall's script and refactors the functionality into a module. It does not have as
many options as Peder's version but offers a Unicode option.

 view all matches for this distribution


Acme-Colour-Fuzzy

 view release on metacpan or  search on metacpan

MANIFEST.SKIP  view on Meta::CPAN

\b_build

# Avoid Devel::Cover generated files
\bcover_db

# Avoid temp and backup files.
~$
\.tmp$
\.old$
\.bak$
\#$

 view all matches for this distribution


Acme-Cow-Interpreter

 view release on metacpan or  search on metacpan

MANIFEST.SKIP  view on Meta::CPAN

\bbuild.com$

# and Module::Build::Tiny generated files
\b_build_params$

# Avoid temp and backup files.
~$
\.old$
\#$
\b\.#
\.bak$

 view all matches for this distribution


Acme-December-Eternal

 view release on metacpan or  search on metacpan

MANIFEST.SKIP  view on Meta::CPAN

\bBuild.bat$
\bBuild.COM$
\bBUILD.COM$
\bbuild.com$

# Avoid temp and backup files.
~$
\.old$
\#$
\b\.#
\.bak$

 view all matches for this distribution


Acme-DependOnEverything

 view release on metacpan or  search on metacpan

lib/Acme/DependOnEverything.pm  view on Meta::CPAN

use DBIx::Class::Sims::Type::Date;
use DBIx::Class::SingletonRows;
use DBIx::Class::Smooth;
use DBIx::Class::Snowflake;
use DBIx::Class::Stash;
use DBIx::Class::Storage::DBI::mysql::backup::tar;
use DBIx::Class::Storage::DBI::ODBC::OPENEDGE::ta;
use DBIx::Class::Storage::DBI::OpenEdge;
use DBIx::Class::StorageReadOnly;
use DBIx::Class::Storage::TxnEndHook;
use DBIx::Class::TableNames;

lib/Acme/DependOnEverything.pm  view on Meta::CPAN

use Decision::Markov;
use Decision::Markov::a;
use Decision::ParseTree;
use define;
use Deliantra::Client;
use delicious::backup;
use DelimMatch::a;
use detailed;
use Devel::Animator;
use Devel::Arena;
use Devel::ArgNames;

 view all matches for this distribution


Acme-FSM

 view release on metacpan or  search on metacpan

lib/FSM.pm  view on Meta::CPAN

sub state                        {
    my $self = shift @_;
    unless( @_ )                {
        return $self->{_}{state} }
    elsif( 1 == @_ )            {
        my $backup = $self->state;
        $self->diag( 5, q|changing state: (%s) (%s)|, $backup, $_[0] );
        $self->{_}{state} = shift @_;
        return $backup           }
    else                        {
        $self->carp( sprintf q|too many args (%i)|, scalar @_ );
        return undef             }}

=item B<fst()>

lib/FSM.pm  view on Meta::CPAN

    my $self = shift @_;
    unless( @_ )                                  {
        $self->carp( q|no args| );
        return undef                               }
    elsif( 2 == @_ && ref $_[1] eq q|HASH| )      {
        my $backup = $self->fst( $_[0] );
        $self->diag( 3, q|%s {%s} record|,
        ( $backup ? q|updating| : q|creating| ), $_[0] );
# XXX:202202150056:whynot: Copy is a side-effect instead.
        $self->{_}{fst}{shift @_} = {%{ pop @_ }};
        return $backup                             }
    elsif( !exists $self->{_}{fst}{$_[0]} )       {
        $self->carp( qq|($_[0]): no such {fst} record| );
        return undef                               }
    elsif( 1 == @_ )                              {
        return $self->{_}{fst}{shift @_}           }
    elsif( 2 == @_ )                              {
        return $self->{_}{fst}{shift @_}{shift @_} }
    elsif( 3 == @_ )                              {
        my $backup = $self->fst( $_[0] => $_[1] );
        $self->diag( 3, q|%s {%s}{%s} entry|,
        ( $backup ? q|updating| : q|creating| ), @_[0,1] );
        $self->{_}{fst}{shift @_}{shift @_} = pop @_;
        return $backup                             }
    else                                          {
        $self->carp( sprintf q|too many args (%i)|, scalar @_ );
        return undef                               }}

=item B<turn()>

lib/FSM.pm  view on Meta::CPAN

sub action                        {
    my $self = shift @_;
    unless( @_ )                 {
        return $self->{_}{action} }
    elsif( 1 == @_ )             {
        my $backup = $self->action;
        $self->diag( 5, q|changing action: (%s) (%s)|, $backup, $_[0] );
        $self->{_}{action} = shift @_;
        return $backup            }
    else                         {
        $self->carp( sprintf q|too many args (%i)|, scalar @_ );
        return undef              }}

=item B<query()>

lib/FSM.pm  view on Meta::CPAN

     q|[%s]: %s isa (%s): no way to resolve this|,
     $caller, $manifest, ref $topic;
    defined $self->{_}{namespace}                                     or croak
     qq|[$caller]: {namespace} !isa defined|;
    my $anchor = $self->{_}{namespace};
    my $backup = $topic;
    if( ref $anchor eq '' && $anchor eq '' ) {
        $self->diag( 5, q|[%s]: defaulting %s to $self|, $caller, $manifest );
        $anchor = $self                       }
    $self->diag( 5, q|[%s]: {namespace} isa (%s)|, $caller, ref $anchor );
    unless( ref $anchor eq '' )     {
        $self->diag( 5, q|[%s]: going for <%s>->[%s]|,
          $caller, ref $anchor, $topic );
        $topic = $anchor->can( $topic );
        $topic     or croak sprintf q|[%s]: object of <%s> can't [%s] method|,
         $caller, ref $anchor, $backup;
        return $anchor->$topic( @_ ) }
    else                            {
        $self->diag( 5, q|[%s]: going for <%s>::[%s]|,
          $caller, $anchor, $topic );
        $topic = UNIVERSAL::can( $anchor, $topic );
        $topic   or croak sprintf q|[%s]: <%s> package can't [%s] subroutine|,
         $caller, $anchor, $backup;
        return $topic->( $self, @_ ) }}

=item B<query_switch()>

    ( $rule, $item ) = $self->query_switch( $item );

 view all matches for this distribution


Acme-Free-API-Geodata-GeoIP

 view release on metacpan or  search on metacpan

MANIFEST.SKIP  view on Meta::CPAN

\bBuild.bat$
\bBuild.COM$
\bBUILD.COM$
\bbuild.com$

# Avoid temp and backup files.
~$
\.old$
\.swp$
\#$
\b\.#

 view all matches for this distribution


Acme-GLOINBG-Utils

 view release on metacpan or  search on metacpan

MANIFEST.SKIP  view on Meta::CPAN

\bbuild.com$

# and Module::Build::Tiny generated files
\b_build_params$

# Avoid temp and backup files.
~$
\.old$
\#$
\b\.#
\.bak$

 view all matches for this distribution


Acme-Hidek

 view release on metacpan or  search on metacpan

MANIFEST.SKIP  view on Meta::CPAN

\bBuild.bat$
\bBuild.COM$
\bBUILD.COM$
\bbuild.com$

# Avoid temp and backup files.
~$
\.old$
\#$
\b\.#
\.bak$

 view all matches for this distribution


Acme-Innuendo

 view release on metacpan or  search on metacpan

MANIFEST.SKIP  view on Meta::CPAN

\bBuild.bat$
\bBuild.COM$
\bBUILD.COM$
\bbuild.com$

# Avoid temp and backup files.
~$
\.old$
\#$
\b\.#
\.bak$

 view all matches for this distribution


Acme-MITHALDU-BleedingOpenGL

 view release on metacpan or  search on metacpan

MANIFEST.SKIP  view on Meta::CPAN


# Avoid Module::Build generated and utility files.
\bBuild$
\b_build/

# Avoid temp and backup files.
~$
\.old$
\#$
\b\.#
\.bak$

 view all matches for this distribution


Acme-MJD-FR

 view release on metacpan or  search on metacpan

MANIFEST.SKIP  view on Meta::CPAN

^Makefile$
^blib/
^MakeMaker-\d
^pm_to_blib$

# Avoid temp and backup files.
~$
\.old$
\#$
^\.#

 view all matches for this distribution


Acme-MetaSyntactic-Themes

 view release on metacpan or  search on metacpan

lib/Acme/MetaSyntactic/services.pm  view on Meta::CPAN

acp_policy
acp_port
acp_proto
acptsys
acr_nema
acronis_backup
ac_tech
acter
actifio_c2c
actifioreplic
actifioudsagent

lib/Acme/MetaSyntactic/services.pm  view on Meta::CPAN

b2_runtime
babel
backburner
BackOrifice
backroomnet
backupedge
backupexec
backup_express
bacnet
bacula_dir
bacula_fd
bacula_sd
badm_priv

lib/Acme/MetaSyntactic/services.pm  view on Meta::CPAN

bootserver
borland_dsj
boscap
bosswave
bounzza
boxbackupstore
boxp
bpcd
bpcp_poll
bpcp_trap
bpdbm

lib/Acme/MetaSyntactic/services.pm  view on Meta::CPAN

ca_idms
caids_sensor
caistoragemgr
cajo_discovery
cal
caldsoft_backup
caller9
call_logging
call_sig_trans
calltrax
callwaveiam

lib/Acme/MetaSyntactic/services.pm  view on Meta::CPAN

d_cinema_csp
d_cinema_rrp
dcp
dcs
dcs_config
dcsl_backup
dcsoftware
dctp
dcutility
d_data
d_data_control

lib/Acme/MetaSyntactic/services.pm  view on Meta::CPAN

efs
eftp
egptlm
egs
ehome_ms
ehp_backup
ehs
ehs_ssl
ehtp
eicon_server
eicon_slp

lib/Acme/MetaSyntactic/services.pm  view on Meta::CPAN

netapp_sync
netarx
netaspi
netassistant
netattachsdmp
netbackup
netbill_auth
netbill_cred
netbill_keyrep
netbill_prod
netbill_trans

lib/Acme/MetaSyntactic/services.pm  view on Meta::CPAN

sasp
sas_remote_hlp
satvid_datalnk
sauterdongle
savant
sbackup
sbcap
s_bfd
sbi_agent
sbl
sbook

lib/Acme/MetaSyntactic/services.pm  view on Meta::CPAN

surfcontrolcpa
surfpass
sur_meas
surveyinst
suucp
svbackup
svcloud
svdrp
svn
svnet
svnetworks

lib/Acme/MetaSyntactic/services.pm  view on Meta::CPAN

watilapp
wbem_exp_https
wbem_http
wbem_https
wbem_rmi
wcbackup
wcpp
wcr_remlib
wdbrpc
weandsf
weave

lib/Acme/MetaSyntactic/services.pm  view on Meta::CPAN

x2e_disc
x500ms
x510
x9_icue
xaapi
xact_backup
xadmin
xandros_cms
xap_ha
xaudio
x_bone_api

 view all matches for this distribution


Acme-MetaSyntactic-nethack

 view release on metacpan or  search on metacpan

Build.PL  view on Meta::CPAN

            MANIFEST
            MANIFEST.bak
            META.yml
            Makefile
            Makefile.PL
            *.nethack_backup
            pod2htm?.tmp
            Acme-MetaSyntactic-nethack-*
        }
    ],
);

 view all matches for this distribution


Acme-MetaSyntactic-vim

 view release on metacpan or  search on metacpan

lib/Acme/MetaSyntactic/vim.pm  view on Meta::CPAN

autoread
autowrite
autowriteall
background
backspace
backup
backupcopy
backupdir
backupext
backupskip
balloondelay
ballooneval
balloonexpr
binary
bioskey

lib/Acme/MetaSyntactic/vim.pm  view on Meta::CPAN

wrap
wrapmargin
wrapscan
write
writeany
writebackup
writedelay
# names options/abbreviated
al
ari
akm

 view all matches for this distribution


Acme-MetaSyntactic

 view release on metacpan or  search on metacpan

script/metafy  view on Meta::CPAN


Modify a bunch of files in-place:

    $ metafy --in-place foo:batman *.c

There is currently no way to create backup files (like perl's I<-i> option
allows).

=back

Each word from the original theme is replaced by the same word of the

 view all matches for this distribution


Acme-MirrorTracer

 view release on metacpan or  search on metacpan

MANIFEST.SKIP  view on Meta::CPAN


# Avoid Module::Build generated and utility files.
\bBuild$
\b_build/

# Avoid temp and backup files.
~$
\.old$
\#$
\b\.#
#\.bak$

 view all matches for this distribution


Acme-Mobile-Therbligs

 view release on metacpan or  search on metacpan

MANIFEST.SKIP  view on Meta::CPAN

\bBuild.bat$
\bBuild.COM$
\bBUILD.COM$
\bbuild.com$

# Avoid temp and backup files.
~$
\.old$
\#$
\b\.#
\.bak$

 view all matches for this distribution


Acme-MyFirstModule-BDFOY

 view release on metacpan or  search on metacpan

MANIFEST.SKIP  view on Meta::CPAN

\bbuild.com$

# and Module::Build::Tiny generated files
\b_build_params$

# Avoid temp and backup files.
~$
\.old$
\#$
\b\.#
\.bak$

 view all matches for this distribution


Acme-PM-Berlin-Meetings

 view release on metacpan or  search on metacpan

MANIFEST.SKIP  view on Meta::CPAN

\bBuild.bat$
\bBuild.COM$
\bBUILD.COM$
\bbuild.com$

# Avoid temp and backup files.
~$
\.old$
\#$
\b\.#
\.bak$

 view all matches for this distribution


Acme-PM-Paris-Meetings

 view release on metacpan or  search on metacpan

MANIFEST.SKIP  view on Meta::CPAN

\bbuild.com$

# Avoid Devel::Cover generated files
\bcover_db\b

# Avoid temp and backup files.
~$
\.tmp$
\.old$
\.bak$
\#$

 view all matches for this distribution


Acme-Perl-VM

 view release on metacpan or  search on metacpan

MANIFEST.SKIP  view on Meta::CPAN


# Avoid Module::Build generated and utility files.
\bBuild$
\b_build/

# Avoid temp and backup files.
~$
\.old$
\#$
\b\.#
\.bak$

 view all matches for this distribution


Acme-Pointer

 view release on metacpan or  search on metacpan

lib/Acme/ppport.h  view on Meta::CPAN

av_tindex||5.017009|
av_top_index||5.017009|
av_undef|||
av_unshift|||
ax|||n
backup_one_SB|||
backup_one_WB|||
bad_type_gv|||
bad_type_pv|||
bind_match|||
block_end||5.004000|
block_gimme||5.004000|

 view all matches for this distribution


Acme-September-Eternal

 view release on metacpan or  search on metacpan

MANIFEST.SKIP  view on Meta::CPAN

\bBuild.bat$
\bBuild.COM$
\bBUILD.COM$
\bbuild.com$

# Avoid temp and backup files.
~$
\.old$
\#$
\b\.#
\.bak$

 view all matches for this distribution


Acme-State

 view release on metacpan or  search on metacpan

lib/Acme/State.pm  view on Meta::CPAN

Serializes scalars, hashes, and arrays declared using C<our>, C<use vars>, or otherwise
not declared using C<my>. 
Uses L<Storable> to write the data.
The save is placed in the home directory of the user the script is executing as.
The file name is the same as the script's name (C<$0>) plus ".save".
It also keeps one backup around, named C<$0.save.last>, and it may leave a
C<$0.save.new> if interrupted.

Web apps written using L<Continuity> get persistant state, so why shouldn't command
line apps?
Hey, and maybe L<Continuity> apps want to persist some state in case the server implodes.

 view all matches for this distribution


Acme-TLDR

 view release on metacpan or  search on metacpan

MANIFEST.SKIP  view on Meta::CPAN

\bBuild.bat$
\bBuild.COM$
\bBUILD.COM$
\bbuild.com$

# Avoid temp and backup files.
~$
\.old$
\#$
\b\.#
\.bak$

 view all matches for this distribution


Acme-TestDist-Cpp-EUMM-EUCppGuess

 view release on metacpan or  search on metacpan

ppport.h  view on Meta::CPAN

av_tindex||5.017009|
av_top_index||5.017009|
av_undef|||
av_unshift|||
ax|||n
backup_one_SB|||
backup_one_WB|||
bad_type_gv|||
bad_type_pv|||
bind_match|||
block_end||5.004000|
block_gimme||5.004000|

 view all matches for this distribution


Acme-XKCD-DebianRandom

 view release on metacpan or  search on metacpan

MANIFEST.SKIP  view on Meta::CPAN

\bBuild.bat$
\bBuild.COM$
\bBUILD.COM$
\bbuild.com$

# Avoid temp and backup files.
~$
\.old$
\#$
\b\.#
\.bak$

 view all matches for this distribution


Acme-YAPC-Asia-2012-LTthon-Hakushu

 view release on metacpan or  search on metacpan

MANIFEST.SKIP  view on Meta::CPAN

\bBuild.bat$
\bBuild.COM$
\bBUILD.COM$
\bbuild.com$

# Avoid temp and backup files.
~$
\.old$
\#$
\b\.#
\.bak$

 view all matches for this distribution


( run in 1.015 second using v1.01-cache-2.11-cpan-49f99fa48dc )