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


App-Info

 view release on metacpan or  search on metacpan

MANIFEST  view on Meta::CPAN

t/testlib/libiconv.so
t/testlib/libsqlite3.so
t/testmod/mod_dir.so
t/testmod/mod_include.so
t/testmod/mod_perl.so
t/testmod/not_mod.txt
t/util.t
t/uuid.t
t/uuid_info.t
t/zpod.t

 view all matches for this distribution


App-IniDiff-IniFile

 view release on metacpan or  search on metacpan

xt/boilerplate.t  view on Meta::CPAN

use warnings;
use Test::More;

plan tests => 3;

sub not_in_file_ok {
    my ($filename, %regex) = @_;
    open( my $fh, '<', $filename )
        or die "couldn't open $filename for reading: $!";

    my %violated;

xt/boilerplate.t  view on Meta::CPAN

    }
}

sub module_boilerplate_ok {
    my ($module) = @_;
    not_in_file_ok($module =>
        'the great new $MODULENAME'   => qr/ - The great new /,
        'boilerplate description'     => qr/Quick summary of what the module/,
        'stub function definition'    => qr/function[12]/,
    );
}

TODO: {
  local $TODO = "Need to replace the boilerplate text";

  not_in_file_ok(README =>
    "The README is used..."       => qr/The README is used/,
    "'version information here'"  => qr/to provide version information/,
  );

  not_in_file_ok(Changes =>
    "placeholder date/time"       => qr(Date/time)
  );

  module_boilerplate_ok('lib/App/IniDiff/IniFile.pm');

 view all matches for this distribution


App-Install

 view release on metacpan or  search on metacpan

t/boilerplate.t  view on Meta::CPAN


use strict;
use warnings;
use Test::More tests => 3;

sub not_in_file_ok {
    my ($filename, %regex) = @_;
    open my $fh, "<", $filename
        or die "couldn't open $filename for reading: $!";

    my %violated;

t/boilerplate.t  view on Meta::CPAN

    } else {
        pass("$filename contains no boilerplate text");
    }
}

not_in_file_ok(README =>
    "The README is used..."       => qr/The README is used/,
    "'version information here'"  => qr/to provide version information/,
);

not_in_file_ok(Changes =>
    "placeholder date/time"       => qr(Date/time)
);

sub module_boilerplate_ok {
    my ($module) = @_;
    not_in_file_ok($module =>
        'the great new $MODULENAME'   => qr/ - The great new /,
        'boilerplate description'     => qr/Quick summary of what the module/,
        'stub function definition'    => qr/function[12]/,
    );
}

 view all matches for this distribution


App-IsGitSynced

 view release on metacpan or  search on metacpan

t/author-boilerplate.t  view on Meta::CPAN


use strict;
use warnings;
use Test::More tests => 3;

sub not_in_file_ok {
    my ($filename, %regex) = @_;
    open( my $fh, '<', $filename )
        or die "couldn't open $filename for reading: $!";

    my %violated;

t/author-boilerplate.t  view on Meta::CPAN

    }
}

sub module_boilerplate_ok {
    my ($module) = @_;
    not_in_file_ok($module =>
        'the great new $MODULENAME'   => qr/ - The great new /,
        'boilerplate description'     => qr/Quick summary of what the module/,
        'stub function definition'    => qr/function[12]/,
    );
}

not_in_file_ok(README =>
"The README is used..."       => qr/The README is used/,
"'version information here'"  => qr/to provide version information/,
);

not_in_file_ok(Changes =>
"placeholder date/time"       => qr(Date/time)
);

module_boilerplate_ok('lib/App/IsGitSynced.pm');

 view all matches for this distribution


App-JESP

 view release on metacpan or  search on metacpan

t/home_mysql/patches/sakila2.sql  view on Meta::CPAN


DELIMITER ;

DELIMITER $$

CREATE PROCEDURE film_not_in_stock(IN p_film_id INT, IN p_store_id INT, OUT p_film_count INT)
READS SQL DATA
BEGIN
     SELECT inventory_id
     FROM inventory
     WHERE film_id = p_film_id

 view all matches for this distribution


App-Jawk

 view release on metacpan or  search on metacpan

t/boilerplate.t  view on Meta::CPAN


use strict;
use warnings;
use Test::More tests => 3;

sub not_in_file_ok {
    my ($filename, %regex) = @_;
    open( my $fh, '<', $filename )
        or die "couldn't open $filename for reading: $!";

    my %violated;

t/boilerplate.t  view on Meta::CPAN

    }
}

sub module_boilerplate_ok {
    my ($module) = @_;
    not_in_file_ok($module =>
        'the great new $MODULENAME'   => qr/ - The great new /,
        'boilerplate description'     => qr/Quick summary of what the module/,
        'stub function definition'    => qr/function[12]/,
    );
}

TODO: {
  local $TODO = "Need to replace the boilerplate text";

  not_in_file_ok(README =>
    "The README is used..."       => qr/The README is used/,
    "'version information here'"  => qr/to provide version information/,
  );

  not_in_file_ok(Changes =>
    "placeholder date/time"       => qr(Date/time)
  );

  #module_boilerplate_ok('lib/App/Jawk.pm');
  module_boilerplate_ok('bin/jawk');

 view all matches for this distribution


App-JenkinsCli

 view release on metacpan or  search on metacpan

t/boilerplate.t  view on Meta::CPAN

use strict;
use warnings;
use Test::More;
use Test::Warnings;

sub not_in_file_ok {
    my ($filename, %regex) = @_;
    open( my $fh, '<', $filename )
        or die "couldn't open $filename for reading: $!";

    my %violated;

t/boilerplate.t  view on Meta::CPAN

}

sub module_boilerplate_ok {
    my ($module) = @_;
    subtest $module => sub {
        not_in_file_ok($module =>
            'the great new $MODULENAME' => qr/ - The great new /,
            'boilerplate description'   => qr/Quick summary of what the module/,
            'stub function definition'  => qr/function[12]/,
            'module description'        => qr/One-line description of module/,
            'description'               => qr/A full description of the module/,

t/boilerplate.t  view on Meta::CPAN

        );
    };
}

subtest 'README' => sub {
    not_in_file_ok((-f 'README' ? 'README' : 'README.pod') =>
        "The README is used..."       => qr/The README is used/,
        "'version information here'"  => qr/to provide version information/,
    );
};

subtest 'Changes' => sub {
    not_in_file_ok(Changes =>
        "placeholder date/time"       => qr(Date/time)
    );
};

module_boilerplate_ok('bin/jenkins-cli');

 view all matches for this distribution


App-KBLIUtils

 view release on metacpan or  search on metacpan

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


=item * B<code.min> => I<str>

Only return records where the 'code' field is greater than or equal to specified value.

=item * B<code.not_contains> => I<str>

Only return records where the 'code' field does not contain specified text.

=item * B<code.not_in> => I<array[str]>

Only return records where the 'code' field is not in the specified values.

=item * B<code.xmax> => I<str>

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


=item * B<description.min> => I<str>

Only return records where the 'description' field is greater than or equal to specified value.

=item * B<description.not_contains> => I<str>

Only return records where the 'description' field does not contain specified text.

=item * B<description.not_in> => I<array[str]>

Only return records where the 'description' field is not in the specified values.

=item * B<description.xmax> => I<str>

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


=item * B<name.min> => I<str>

Only return records where the 'name' field is greater than or equal to specified value.

=item * B<name.not_contains> => I<str>

Only return records where the 'name' field does not contain specified text.

=item * B<name.not_in> => I<array[str]>

Only return records where the 'name' field is not in the specified values.

=item * B<name.xmax> => I<str>

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


=item * B<code.min> => I<str>

Only return records where the 'code' field is greater than or equal to specified value.

=item * B<code.not_contains> => I<str>

Only return records where the 'code' field does not contain specified text.

=item * B<code.not_in> => I<array[str]>

Only return records where the 'code' field is not in the specified values.

=item * B<code.xmax> => I<str>

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


=item * B<description.min> => I<str>

Only return records where the 'description' field is greater than or equal to specified value.

=item * B<description.not_contains> => I<str>

Only return records where the 'description' field does not contain specified text.

=item * B<description.not_in> => I<array[str]>

Only return records where the 'description' field is not in the specified values.

=item * B<description.xmax> => I<str>

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


=item * B<title.min> => I<str>

Only return records where the 'title' field is greater than or equal to specified value.

=item * B<title.not_contains> => I<str>

Only return records where the 'title' field does not contain specified text.

=item * B<title.not_in> => I<array[str]>

Only return records where the 'title' field is not in the specified values.

=item * B<title.xmax> => I<str>

 view all matches for this distribution


App-Kritika

 view release on metacpan or  search on metacpan

kritika.fatpack  view on Meta::CPAN

              if ( $_[0]->{_incr_parser}->{incr_pos} ) {
                  Carp::croak("incr_text cannot be called when the incremental parser already started parsing");
              }
              $_[0]->{_incr_parser}->{incr_text};
          }
      } if ($] >= 5.006)}BEGIN {eval 'require Scalar::Util';unless($@){*JSON::PP::blessed=\&Scalar::Util::blessed;*JSON::PP::reftype=\&Scalar::Util::reftype;*JSON::PP::refaddr=\&Scalar::Util::refaddr}else{eval 'sub UNIVERSAL::a_sub_not_likely_to_be_h...
JSON_BACKPORTPP

$fatpacked{"JSON/backportPP/Boolean.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'JSON_BACKPORTPP_BOOLEAN';
  package JSON::PP::Boolean;use strict;use overload ("0+"=>sub {${$_[0]}},"++"=>sub {$_[0]=${$_[0]}+ 1},"--"=>sub {$_[0]=${$_[0]}- 1},fallback=>1,);$JSON::backportPP::Boolean::VERSION='0.05';1;
JSON_BACKPORTPP_BOOLEAN

 view all matches for this distribution


App-LDAP

 view release on metacpan or  search on metacpan

inc/Test/More.pm  view on Meta::CPAN

    {
        $tb->_unoverload_str( \$e1, \$e2 );

        # Either they're both references or both not.
        my $same_ref = !( !ref $e1 xor !ref $e2 );
        my $not_ref = ( !ref $e1 and !ref $e2 );

        if( defined $e1 xor defined $e2 ) {
            $ok = 0;
        }
        elsif( !defined $e1 and !defined $e2 ) {

inc/Test/More.pm  view on Meta::CPAN

            $ok = 0;
        }
        elsif( $same_ref and( $e1 eq $e2 ) ) {
            $ok = 1;
        }
        elsif($not_ref) {
            push @Data_Stack, { type => '', vals => [ $e1, $e2 ] };
            $ok = 0;
        }
        else {
            if( $Refs_Seen{$e1} ) {

 view all matches for this distribution


App-LXC-Container

 view release on metacpan or  search on metacpan

lib/App/LXC/Container/Run.pm  view on Meta::CPAN

			 uids => [],
			 user => $user,
			 x11 => '-');
    my $self = bless \%configuration, $class;
    -e _ROOT_DIR_  or  fatal 'link_to_root_missing';
    -l _ROOT_DIR_  or  fatal '_1_is_not_a_symbolic_link' , _ROOT_DIR_;

    open my $in, '<', $self->{rc}  or  fatal 'can_t_open__1__2', $self->{rc}, $!;
    my $found = 0;
    while (<$in>)
    {

 view all matches for this distribution


App-Lastmsg

 view release on metacpan or  search on metacpan

t/lastmsg.config  view on Meta::CPAN

---
inbox:
 - inbox
 - does_not_exist
sent: sent
track:
  user1: user1@example.com
  user2:
    - user2@example.com

 view all matches for this distribution


App-Lazyd

 view release on metacpan or  search on metacpan

inc/Test/More.pm  view on Meta::CPAN


        $tb->_unoverload_str( \$e1, \$e2 );

        # Either they're both references or both not.
        my $same_ref = !( !ref $e1 xor !ref $e2 );
        my $not_ref = ( !ref $e1 and !ref $e2 );

        if( defined $e1 xor defined $e2 ) {
            $ok = 0;
        }
        elsif( _dne($e1) xor _dne($e2) ) {
            $ok = 0;
        }
        elsif( $same_ref and( $e1 eq $e2 ) ) {
            $ok = 1;
        }
        elsif($not_ref) {
            push @Data_Stack, { type => '', vals => [ $e1, $e2 ] };
            $ok = 0;
        }
        else {
            if( $Refs_Seen{$e1} ) {

 view all matches for this distribution


App-LedgerSMB-Admin

 view release on metacpan or  search on metacpan

t/boilerplate.t  view on Meta::CPAN

use warnings FATAL => 'all';
use Test::More;

plan tests => 3;

sub not_in_file_ok {
    my ($filename, %regex) = @_;
    open( my $fh, '<', $filename )
        or die "couldn't open $filename for reading: $!";

    my %violated;

t/boilerplate.t  view on Meta::CPAN

    }
}

sub module_boilerplate_ok {
    my ($module) = @_;
    not_in_file_ok($module =>
        'the great new $MODULENAME'   => qr/ - The great new /,
        'boilerplate description'     => qr/Quick summary of what the module/,
        'stub function definition'    => qr/function[12]/,
    );
}


  not_in_file_ok(README =>
    "The README is used..."       => qr/The README is used/,
    "'version information here'"  => qr/to provide version information/,
  );

  not_in_file_ok(Changes =>
    "placeholder date/time"       => qr(Date/time)
  );

  module_boilerplate_ok('lib/App/LedgerSMB/Admin.pm');

 view all matches for this distribution


App-ListAndroidReleases

 view release on metacpan or  search on metacpan

bin/list-android-releases  view on Meta::CPAN

 api_level.in (see --api-level-in)
 api_level.is (see --api-level-is)
 api_level.isnt (see --api-level-isnt)
 api_level.max (see --api-level-max)
 api_level.min (see --api-level-min)
 api_level.not_in (see --api-level-not-in)
 api_level.xmax (see --api-level-xmax)
 api_level.xmin (see --api-level-xmin)
 code_name (see --code-name)
 code_name.contains (see --code-name-contains)
 code_name.in (see --code-name-in)
 code_name.is (see --code-name-is)
 code_name.isnt (see --code-name-isnt)
 code_name.max (see --code-name-max)
 code_name.min (see --code-name-min)
 code_name.not_contains (see --code-name-not-contains)
 code_name.not_in (see --code-name-not-in)
 code_name.xmax (see --code-name-xmax)
 code_name.xmin (see --code-name-xmin)
 detail (see --detail)
 fields (see --field)
 format (see --format)

bin/list-android-releases  view on Meta::CPAN

 reldate.in (see --reldate-in)
 reldate.is (see --reldate-is)
 reldate.isnt (see --reldate-isnt)
 reldate.max (see --reldate-max)
 reldate.min (see --reldate-min)
 reldate.not_in (see --reldate-not-in)
 reldate.xmax (see --reldate-xmax)
 reldate.xmin (see --reldate-xmin)
 result_limit (see --result-limit)
 result_start (see --result-start)
 sort (see --sort)

bin/list-android-releases  view on Meta::CPAN

 version.in (see --version-in)
 version.is (see --version-is)
 version.isnt (see --version-isnt)
 version.max (see --version-max)
 version.min (see --version-min)
 version.not_contains (see --version-not-contains)
 version.not_in (see --version-not-in)
 version.xmax (see --version-xmax)
 version.xmin (see --version-xmin)
 with_field_names (see --with-field-names)

=head1 FILES

 view all matches for this distribution


App-ListCentosReleases

 view release on metacpan or  search on metacpan

bin/list-centos-releases  view on Meta::CPAN

 apache_httpd_version.in (see --apache-httpd-version-in)
 apache_httpd_version.is (see --apache-httpd-version-is)
 apache_httpd_version.isnt (see --apache-httpd-version-isnt)
 apache_httpd_version.max (see --apache-httpd-version-max)
 apache_httpd_version.min (see --apache-httpd-version-min)
 apache_httpd_version.not_contains (see --apache-httpd-version-not-contains)
 apache_httpd_version.not_in (see --apache-httpd-version-not-in)
 apache_httpd_version.xmax (see --apache-httpd-version-xmax)
 apache_httpd_version.xmin (see --apache-httpd-version-xmin)
 bash_version (see --bash-version)
 bash_version.contains (see --bash-version-contains)
 bash_version.in (see --bash-version-in)
 bash_version.is (see --bash-version-is)
 bash_version.isnt (see --bash-version-isnt)
 bash_version.max (see --bash-version-max)
 bash_version.min (see --bash-version-min)
 bash_version.not_contains (see --bash-version-not-contains)
 bash_version.not_in (see --bash-version-not-in)
 bash_version.xmax (see --bash-version-xmax)
 bash_version.xmin (see --bash-version-xmin)
 code_name (see --code-name)
 code_name.contains (see --code-name-contains)
 code_name.in (see --code-name-in)
 code_name.is (see --code-name-is)
 code_name.isnt (see --code-name-isnt)
 code_name.max (see --code-name-max)
 code_name.min (see --code-name-min)
 code_name.not_contains (see --code-name-not-contains)
 code_name.not_in (see --code-name-not-in)
 code_name.xmax (see --code-name-xmax)
 code_name.xmin (see --code-name-xmin)
 detail (see --detail)
 eoldate (see --eoldate)
 eoldate.in (see --eoldate-in)
 eoldate.is (see --eoldate-is)
 eoldate.isnt (see --eoldate-isnt)
 eoldate.max (see --eoldate-max)
 eoldate.min (see --eoldate-min)
 eoldate.not_in (see --eoldate-not-in)
 eoldate.xmax (see --eoldate-xmax)
 eoldate.xmin (see --eoldate-xmin)
 fields (see --field)
 format (see --format)
 linux_version (see --linux-version)

bin/list-centos-releases  view on Meta::CPAN

 linux_version.in (see --linux-version-in)
 linux_version.is (see --linux-version-is)
 linux_version.isnt (see --linux-version-isnt)
 linux_version.max (see --linux-version-max)
 linux_version.min (see --linux-version-min)
 linux_version.not_contains (see --linux-version-not-contains)
 linux_version.not_in (see --linux-version-not-in)
 linux_version.xmax (see --linux-version-xmax)
 linux_version.xmin (see --linux-version-xmin)
 mariadb_version (see --mariadb-version)
 mariadb_version.contains (see --mariadb-version-contains)
 mariadb_version.in (see --mariadb-version-in)
 mariadb_version.is (see --mariadb-version-is)
 mariadb_version.isnt (see --mariadb-version-isnt)
 mariadb_version.max (see --mariadb-version-max)
 mariadb_version.min (see --mariadb-version-min)
 mariadb_version.not_contains (see --mariadb-version-not-contains)
 mariadb_version.not_in (see --mariadb-version-not-in)
 mariadb_version.xmax (see --mariadb-version-xmax)
 mariadb_version.xmin (see --mariadb-version-xmin)
 mysql_version (see --mysql-version)
 mysql_version.contains (see --mysql-version-contains)
 mysql_version.in (see --mysql-version-in)
 mysql_version.is (see --mysql-version-is)
 mysql_version.isnt (see --mysql-version-isnt)
 mysql_version.max (see --mysql-version-max)
 mysql_version.min (see --mysql-version-min)
 mysql_version.not_contains (see --mysql-version-not-contains)
 mysql_version.not_in (see --mysql-version-not-in)
 mysql_version.xmax (see --mysql-version-xmax)
 mysql_version.xmin (see --mysql-version-xmin)
 naked_res (see --naked-res)
 nginx_version (see --nginx-version)
 nginx_version.contains (see --nginx-version-contains)
 nginx_version.in (see --nginx-version-in)
 nginx_version.is (see --nginx-version-is)
 nginx_version.isnt (see --nginx-version-isnt)
 nginx_version.max (see --nginx-version-max)
 nginx_version.min (see --nginx-version-min)
 nginx_version.not_contains (see --nginx-version-not-contains)
 nginx_version.not_in (see --nginx-version-not-in)
 nginx_version.xmax (see --nginx-version-xmax)
 nginx_version.xmin (see --nginx-version-xmin)
 perl_version (see --perl-version)
 perl_version.contains (see --perl-version-contains)
 perl_version.in (see --perl-version-in)
 perl_version.is (see --perl-version-is)
 perl_version.isnt (see --perl-version-isnt)
 perl_version.max (see --perl-version-max)
 perl_version.min (see --perl-version-min)
 perl_version.not_contains (see --perl-version-not-contains)
 perl_version.not_in (see --perl-version-not-in)
 perl_version.xmax (see --perl-version-xmax)
 perl_version.xmin (see --perl-version-xmin)
 php_version (see --php-version)
 php_version.contains (see --php-version-contains)
 php_version.in (see --php-version-in)
 php_version.is (see --php-version-is)
 php_version.isnt (see --php-version-isnt)
 php_version.max (see --php-version-max)
 php_version.min (see --php-version-min)
 php_version.not_contains (see --php-version-not-contains)
 php_version.not_in (see --php-version-not-in)
 php_version.xmax (see --php-version-xmax)
 php_version.xmin (see --php-version-xmin)
 postgresql_version (see --postgresql-version)
 postgresql_version.contains (see --postgresql-version-contains)
 postgresql_version.in (see --postgresql-version-in)
 postgresql_version.is (see --postgresql-version-is)
 postgresql_version.isnt (see --postgresql-version-isnt)
 postgresql_version.max (see --postgresql-version-max)
 postgresql_version.min (see --postgresql-version-min)
 postgresql_version.not_contains (see --postgresql-version-not-contains)
 postgresql_version.not_in (see --postgresql-version-not-in)
 postgresql_version.xmax (see --postgresql-version-xmax)
 postgresql_version.xmin (see --postgresql-version-xmin)
 python_version (see --python-version)
 python_version.contains (see --python-version-contains)
 python_version.in (see --python-version-in)
 python_version.is (see --python-version-is)
 python_version.isnt (see --python-version-isnt)
 python_version.max (see --python-version-max)
 python_version.min (see --python-version-min)
 python_version.not_contains (see --python-version-not-contains)
 python_version.not_in (see --python-version-not-in)
 python_version.xmax (see --python-version-xmax)
 python_version.xmin (see --python-version-xmin)
 query (see --query)
 random (see --random)
 reldate (see --reldate)
 reldate.in (see --reldate-in)
 reldate.is (see --reldate-is)
 reldate.isnt (see --reldate-isnt)
 reldate.max (see --reldate-max)
 reldate.min (see --reldate-min)
 reldate.not_in (see --reldate-not-in)
 reldate.xmax (see --reldate-xmax)
 reldate.xmin (see --reldate-xmin)
 result_limit (see --result-limit)
 result_start (see --result-start)
 ruby_version (see --ruby-version)

bin/list-centos-releases  view on Meta::CPAN

 ruby_version.in (see --ruby-version-in)
 ruby_version.is (see --ruby-version-is)
 ruby_version.isnt (see --ruby-version-isnt)
 ruby_version.max (see --ruby-version-max)
 ruby_version.min (see --ruby-version-min)
 ruby_version.not_contains (see --ruby-version-not-contains)
 ruby_version.not_in (see --ruby-version-not-in)
 ruby_version.xmax (see --ruby-version-xmax)
 ruby_version.xmin (see --ruby-version-xmin)
 sort (see --sort)
 version (see --version-arg)
 version.contains (see --version-contains)
 version.in (see --version-in)
 version.is (see --version-is)
 version.isnt (see --version-isnt)
 version.max (see --version-max)
 version.min (see --version-min)
 version.not_contains (see --version-not-contains)
 version.not_in (see --version-not-in)
 version.xmax (see --version-xmax)
 version.xmin (see --version-xmin)
 with_field_names (see --with-field-names)

=head1 FILES

 view all matches for this distribution


App-ListCountries

 view release on metacpan or  search on metacpan

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


=item * B<alpha2.min> => I<str>

Only return records where the 'alpha2' field is greater than or equal to specified value.

=item * B<alpha2.not_contains> => I<str>

Only return records where the 'alpha2' field does not contain specified text.

=item * B<alpha2.not_in> => I<array[str]>

Only return records where the 'alpha2' field is not in the specified values.

=item * B<alpha2.xmax> => I<str>

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


=item * B<alpha3.min> => I<str>

Only return records where the 'alpha3' field is greater than or equal to specified value.

=item * B<alpha3.not_contains> => I<str>

Only return records where the 'alpha3' field does not contain specified text.

=item * B<alpha3.not_in> => I<array[str]>

Only return records where the 'alpha3' field is not in the specified values.

=item * B<alpha3.xmax> => I<str>

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


=item * B<en_name.min> => I<str>

Only return records where the 'en_name' field is greater than or equal to specified value.

=item * B<en_name.not_contains> => I<str>

Only return records where the 'en_name' field does not contain specified text.

=item * B<en_name.not_in> => I<array[str]>

Only return records where the 'en_name' field is not in the specified values.

=item * B<en_name.xmax> => I<str>

 view all matches for this distribution


App-ListCurrencies

 view release on metacpan or  search on metacpan

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


=item * B<alpha.min> => I<str>

Only return records where the 'alpha' field is greater than or equal to specified value.

=item * B<alpha.not_contains> => I<str>

Only return records where the 'alpha' field does not contain specified text.

=item * B<alpha.not_in> => I<array[str]>

Only return records where the 'alpha' field is not in the specified values.

=item * B<alpha.xmax> => I<str>

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


=item * B<en_name.min> => I<str>

Only return records where the 'en_name' field is greater than or equal to specified value.

=item * B<en_name.not_contains> => I<str>

Only return records where the 'en_name' field does not contain specified text.

=item * B<en_name.not_in> => I<array[str]>

Only return records where the 'en_name' field is not in the specified values.

=item * B<en_name.xmax> => I<str>

 view all matches for this distribution


App-ListIntlPhoneCodes

 view release on metacpan or  search on metacpan

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


=item * B<alpha2.min> => I<str>

Only return records where the 'alpha2' field is greater than or equal to specified value.

=item * B<alpha2.not_contains> => I<str>

Only return records where the 'alpha2' field does not contain specified text.

=item * B<alpha2.not_in> => I<array[str]>

Only return records where the 'alpha2' field is not in the specified values.

=item * B<alpha2.xmax> => I<str>

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


=item * B<codes.min> => I<str>

Only return records where the 'codes' field is greater than or equal to specified value.

=item * B<codes.not_contains> => I<str>

Only return records where the 'codes' field does not contain specified text.

=item * B<codes.not_in> => I<array[str]>

Only return records where the 'codes' field is not in the specified values.

=item * B<codes.xmax> => I<str>

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


=item * B<en_country_name.min> => I<str>

Only return records where the 'en_country_name' field is greater than or equal to specified value.

=item * B<en_country_name.not_contains> => I<str>

Only return records where the 'en_country_name' field does not contain specified text.

=item * B<en_country_name.not_in> => I<array[str]>

Only return records where the 'en_country_name' field is not in the specified values.

=item * B<en_country_name.xmax> => I<str>

 view all matches for this distribution


App-ListLanguages

 view release on metacpan or  search on metacpan

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


=item * B<alpha2.min> => I<str>

Only return records where the 'alpha2' field is greater than or equal to specified value.

=item * B<alpha2.not_contains> => I<str>

Only return records where the 'alpha2' field does not contain specified text.

=item * B<alpha2.not_in> => I<array[str]>

Only return records where the 'alpha2' field is not in the specified values.

=item * B<alpha2.xmax> => I<str>

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


=item * B<alpha3.min> => I<str>

Only return records where the 'alpha3' field is greater than or equal to specified value.

=item * B<alpha3.not_contains> => I<str>

Only return records where the 'alpha3' field does not contain specified text.

=item * B<alpha3.not_in> => I<array[str]>

Only return records where the 'alpha3' field is not in the specified values.

=item * B<alpha3.xmax> => I<str>

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


=item * B<en_name.min> => I<str>

Only return records where the 'en_name' field is greater than or equal to specified value.

=item * B<en_name.not_contains> => I<str>

Only return records where the 'en_name' field does not contain specified text.

=item * B<en_name.not_in> => I<array[str]>

Only return records where the 'en_name' field is not in the specified values.

=item * B<en_name.xmax> => I<str>

 view all matches for this distribution


App-ListLinuxmintReleases

 view release on metacpan or  search on metacpan

bin/list-linuxmint-releases  view on Meta::CPAN

 apache_httpd_version.in (see --apache-httpd-version-in)
 apache_httpd_version.is (see --apache-httpd-version-is)
 apache_httpd_version.isnt (see --apache-httpd-version-isnt)
 apache_httpd_version.max (see --apache-httpd-version-max)
 apache_httpd_version.min (see --apache-httpd-version-min)
 apache_httpd_version.not_contains (see --apache-httpd-version-not-contains)
 apache_httpd_version.not_in (see --apache-httpd-version-not-in)
 apache_httpd_version.xmax (see --apache-httpd-version-xmax)
 apache_httpd_version.xmin (see --apache-httpd-version-xmin)
 bash_version (see --bash-version)
 bash_version.contains (see --bash-version-contains)
 bash_version.in (see --bash-version-in)
 bash_version.is (see --bash-version-is)
 bash_version.isnt (see --bash-version-isnt)
 bash_version.max (see --bash-version-max)
 bash_version.min (see --bash-version-min)
 bash_version.not_contains (see --bash-version-not-contains)
 bash_version.not_in (see --bash-version-not-in)
 bash_version.xmax (see --bash-version-xmax)
 bash_version.xmin (see --bash-version-xmin)
 code_name (see --code-name)
 code_name.contains (see --code-name-contains)
 code_name.in (see --code-name-in)
 code_name.is (see --code-name-is)
 code_name.isnt (see --code-name-isnt)
 code_name.max (see --code-name-max)
 code_name.min (see --code-name-min)
 code_name.not_contains (see --code-name-not-contains)
 code_name.not_in (see --code-name-not-in)
 code_name.xmax (see --code-name-xmax)
 code_name.xmin (see --code-name-xmin)
 detail (see --detail)
 eoldate (see --eoldate)
 eoldate.in (see --eoldate-in)
 eoldate.is (see --eoldate-is)
 eoldate.isnt (see --eoldate-isnt)
 eoldate.max (see --eoldate-max)
 eoldate.min (see --eoldate-min)
 eoldate.not_in (see --eoldate-not-in)
 eoldate.xmax (see --eoldate-xmax)
 eoldate.xmin (see --eoldate-xmin)
 fields (see --field)
 format (see --format)
 linux_version (see --linux-version)

bin/list-linuxmint-releases  view on Meta::CPAN

 linux_version.in (see --linux-version-in)
 linux_version.is (see --linux-version-is)
 linux_version.isnt (see --linux-version-isnt)
 linux_version.max (see --linux-version-max)
 linux_version.min (see --linux-version-min)
 linux_version.not_contains (see --linux-version-not-contains)
 linux_version.not_in (see --linux-version-not-in)
 linux_version.xmax (see --linux-version-xmax)
 linux_version.xmin (see --linux-version-xmin)
 mariadb_version (see --mariadb-version)
 mariadb_version.contains (see --mariadb-version-contains)
 mariadb_version.in (see --mariadb-version-in)
 mariadb_version.is (see --mariadb-version-is)
 mariadb_version.isnt (see --mariadb-version-isnt)
 mariadb_version.max (see --mariadb-version-max)
 mariadb_version.min (see --mariadb-version-min)
 mariadb_version.not_contains (see --mariadb-version-not-contains)
 mariadb_version.not_in (see --mariadb-version-not-in)
 mariadb_version.xmax (see --mariadb-version-xmax)
 mariadb_version.xmin (see --mariadb-version-xmin)
 mysql_version (see --mysql-version)
 mysql_version.contains (see --mysql-version-contains)
 mysql_version.in (see --mysql-version-in)
 mysql_version.is (see --mysql-version-is)
 mysql_version.isnt (see --mysql-version-isnt)
 mysql_version.max (see --mysql-version-max)
 mysql_version.min (see --mysql-version-min)
 mysql_version.not_contains (see --mysql-version-not-contains)
 mysql_version.not_in (see --mysql-version-not-in)
 mysql_version.xmax (see --mysql-version-xmax)
 mysql_version.xmin (see --mysql-version-xmin)
 naked_res (see --naked-res)
 nginx_version (see --nginx-version)
 nginx_version.contains (see --nginx-version-contains)
 nginx_version.in (see --nginx-version-in)
 nginx_version.is (see --nginx-version-is)
 nginx_version.isnt (see --nginx-version-isnt)
 nginx_version.max (see --nginx-version-max)
 nginx_version.min (see --nginx-version-min)
 nginx_version.not_contains (see --nginx-version-not-contains)
 nginx_version.not_in (see --nginx-version-not-in)
 nginx_version.xmax (see --nginx-version-xmax)
 nginx_version.xmin (see --nginx-version-xmin)
 perl_version (see --perl-version)
 perl_version.contains (see --perl-version-contains)
 perl_version.in (see --perl-version-in)
 perl_version.is (see --perl-version-is)
 perl_version.isnt (see --perl-version-isnt)
 perl_version.max (see --perl-version-max)
 perl_version.min (see --perl-version-min)
 perl_version.not_contains (see --perl-version-not-contains)
 perl_version.not_in (see --perl-version-not-in)
 perl_version.xmax (see --perl-version-xmax)
 perl_version.xmin (see --perl-version-xmin)
 php_version (see --php-version)
 php_version.contains (see --php-version-contains)
 php_version.in (see --php-version-in)
 php_version.is (see --php-version-is)
 php_version.isnt (see --php-version-isnt)
 php_version.max (see --php-version-max)
 php_version.min (see --php-version-min)
 php_version.not_contains (see --php-version-not-contains)
 php_version.not_in (see --php-version-not-in)
 php_version.xmax (see --php-version-xmax)
 php_version.xmin (see --php-version-xmin)
 postgresql_version (see --postgresql-version)
 postgresql_version.contains (see --postgresql-version-contains)
 postgresql_version.in (see --postgresql-version-in)
 postgresql_version.is (see --postgresql-version-is)
 postgresql_version.isnt (see --postgresql-version-isnt)
 postgresql_version.max (see --postgresql-version-max)
 postgresql_version.min (see --postgresql-version-min)
 postgresql_version.not_contains (see --postgresql-version-not-contains)
 postgresql_version.not_in (see --postgresql-version-not-in)
 postgresql_version.xmax (see --postgresql-version-xmax)
 postgresql_version.xmin (see --postgresql-version-xmin)
 python_version (see --python-version)
 python_version.contains (see --python-version-contains)
 python_version.in (see --python-version-in)
 python_version.is (see --python-version-is)
 python_version.isnt (see --python-version-isnt)
 python_version.max (see --python-version-max)
 python_version.min (see --python-version-min)
 python_version.not_contains (see --python-version-not-contains)
 python_version.not_in (see --python-version-not-in)
 python_version.xmax (see --python-version-xmax)
 python_version.xmin (see --python-version-xmin)
 query (see --query)
 random (see --random)
 reldate (see --reldate)
 reldate.in (see --reldate-in)
 reldate.is (see --reldate-is)
 reldate.isnt (see --reldate-isnt)
 reldate.max (see --reldate-max)
 reldate.min (see --reldate-min)
 reldate.not_in (see --reldate-not-in)
 reldate.xmax (see --reldate-xmax)
 reldate.xmin (see --reldate-xmin)
 result_limit (see --result-limit)
 result_start (see --result-start)
 ruby_version (see --ruby-version)

bin/list-linuxmint-releases  view on Meta::CPAN

 ruby_version.in (see --ruby-version-in)
 ruby_version.is (see --ruby-version-is)
 ruby_version.isnt (see --ruby-version-isnt)
 ruby_version.max (see --ruby-version-max)
 ruby_version.min (see --ruby-version-min)
 ruby_version.not_contains (see --ruby-version-not-contains)
 ruby_version.not_in (see --ruby-version-not-in)
 ruby_version.xmax (see --ruby-version-xmax)
 ruby_version.xmin (see --ruby-version-xmin)
 sort (see --sort)
 version (see --version-arg)
 version.contains (see --version-contains)
 version.in (see --version-in)
 version.is (see --version-is)
 version.isnt (see --version-isnt)
 version.max (see --version-max)
 version.min (see --version-min)
 version.not_contains (see --version-not-contains)
 version.not_in (see --version-not-in)
 version.xmax (see --version-xmax)
 version.xmin (see --version-xmin)
 with_field_names (see --with-field-names)

=head1 FILES

 view all matches for this distribution


App-ListPerlReleases

 view release on metacpan or  search on metacpan

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


=item * B<tarball.min> => I<str>

Only return records where the 'tarball' field is greater than or equal to specified value.

=item * B<tarball.not_contains> => I<str>

Only return records where the 'tarball' field does not contain specified text.

=item * B<tarball.not_in> => I<array[str]>

Only return records where the 'tarball' field is not in the specified values.

=item * B<tarball.xmax> => I<str>

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


=item * B<version.min> => I<str>

Only return records where the 'version' field is greater than or equal to specified value.

=item * B<version.not_contains> => I<str>

Only return records where the 'version' field does not contain specified text.

=item * B<version.not_in> => I<array[str]>

Only return records where the 'version' field is not in the specified values.

=item * B<version.xmax> => I<str>

 view all matches for this distribution


App-ListRedhatReleases

 view release on metacpan or  search on metacpan

bin/list-redhat-releases  view on Meta::CPAN

 apache_httpd_version.in (see --apache-httpd-version-in)
 apache_httpd_version.is (see --apache-httpd-version-is)
 apache_httpd_version.isnt (see --apache-httpd-version-isnt)
 apache_httpd_version.max (see --apache-httpd-version-max)
 apache_httpd_version.min (see --apache-httpd-version-min)
 apache_httpd_version.not_contains (see --apache-httpd-version-not-contains)
 apache_httpd_version.not_in (see --apache-httpd-version-not-in)
 apache_httpd_version.xmax (see --apache-httpd-version-xmax)
 apache_httpd_version.xmin (see --apache-httpd-version-xmin)
 bash_version (see --bash-version)
 bash_version.contains (see --bash-version-contains)
 bash_version.in (see --bash-version-in)
 bash_version.is (see --bash-version-is)
 bash_version.isnt (see --bash-version-isnt)
 bash_version.max (see --bash-version-max)
 bash_version.min (see --bash-version-min)
 bash_version.not_contains (see --bash-version-not-contains)
 bash_version.not_in (see --bash-version-not-in)
 bash_version.xmax (see --bash-version-xmax)
 bash_version.xmin (see --bash-version-xmin)
 code_name (see --code-name)
 code_name.contains (see --code-name-contains)
 code_name.in (see --code-name-in)
 code_name.is (see --code-name-is)
 code_name.isnt (see --code-name-isnt)
 code_name.max (see --code-name-max)
 code_name.min (see --code-name-min)
 code_name.not_contains (see --code-name-not-contains)
 code_name.not_in (see --code-name-not-in)
 code_name.xmax (see --code-name-xmax)
 code_name.xmin (see --code-name-xmin)
 detail (see --detail)
 eoldate (see --eoldate)
 eoldate.in (see --eoldate-in)
 eoldate.is (see --eoldate-is)
 eoldate.isnt (see --eoldate-isnt)
 eoldate.max (see --eoldate-max)
 eoldate.min (see --eoldate-min)
 eoldate.not_in (see --eoldate-not-in)
 eoldate.xmax (see --eoldate-xmax)
 eoldate.xmin (see --eoldate-xmin)
 fields (see --field)
 format (see --format)
 linux_version (see --linux-version)

bin/list-redhat-releases  view on Meta::CPAN

 linux_version.in (see --linux-version-in)
 linux_version.is (see --linux-version-is)
 linux_version.isnt (see --linux-version-isnt)
 linux_version.max (see --linux-version-max)
 linux_version.min (see --linux-version-min)
 linux_version.not_contains (see --linux-version-not-contains)
 linux_version.not_in (see --linux-version-not-in)
 linux_version.xmax (see --linux-version-xmax)
 linux_version.xmin (see --linux-version-xmin)
 mariadb_version (see --mariadb-version)
 mariadb_version.contains (see --mariadb-version-contains)
 mariadb_version.in (see --mariadb-version-in)
 mariadb_version.is (see --mariadb-version-is)
 mariadb_version.isnt (see --mariadb-version-isnt)
 mariadb_version.max (see --mariadb-version-max)
 mariadb_version.min (see --mariadb-version-min)
 mariadb_version.not_contains (see --mariadb-version-not-contains)
 mariadb_version.not_in (see --mariadb-version-not-in)
 mariadb_version.xmax (see --mariadb-version-xmax)
 mariadb_version.xmin (see --mariadb-version-xmin)
 mysql_version (see --mysql-version)
 mysql_version.contains (see --mysql-version-contains)
 mysql_version.in (see --mysql-version-in)
 mysql_version.is (see --mysql-version-is)
 mysql_version.isnt (see --mysql-version-isnt)
 mysql_version.max (see --mysql-version-max)
 mysql_version.min (see --mysql-version-min)
 mysql_version.not_contains (see --mysql-version-not-contains)
 mysql_version.not_in (see --mysql-version-not-in)
 mysql_version.xmax (see --mysql-version-xmax)
 mysql_version.xmin (see --mysql-version-xmin)
 naked_res (see --naked-res)
 nginx_version (see --nginx-version)
 nginx_version.contains (see --nginx-version-contains)
 nginx_version.in (see --nginx-version-in)
 nginx_version.is (see --nginx-version-is)
 nginx_version.isnt (see --nginx-version-isnt)
 nginx_version.max (see --nginx-version-max)
 nginx_version.min (see --nginx-version-min)
 nginx_version.not_contains (see --nginx-version-not-contains)
 nginx_version.not_in (see --nginx-version-not-in)
 nginx_version.xmax (see --nginx-version-xmax)
 nginx_version.xmin (see --nginx-version-xmin)
 perl_version (see --perl-version)
 perl_version.contains (see --perl-version-contains)
 perl_version.in (see --perl-version-in)
 perl_version.is (see --perl-version-is)
 perl_version.isnt (see --perl-version-isnt)
 perl_version.max (see --perl-version-max)
 perl_version.min (see --perl-version-min)
 perl_version.not_contains (see --perl-version-not-contains)
 perl_version.not_in (see --perl-version-not-in)
 perl_version.xmax (see --perl-version-xmax)
 perl_version.xmin (see --perl-version-xmin)
 php_version (see --php-version)
 php_version.contains (see --php-version-contains)
 php_version.in (see --php-version-in)
 php_version.is (see --php-version-is)
 php_version.isnt (see --php-version-isnt)
 php_version.max (see --php-version-max)
 php_version.min (see --php-version-min)
 php_version.not_contains (see --php-version-not-contains)
 php_version.not_in (see --php-version-not-in)
 php_version.xmax (see --php-version-xmax)
 php_version.xmin (see --php-version-xmin)
 postgresql_version (see --postgresql-version)
 postgresql_version.contains (see --postgresql-version-contains)
 postgresql_version.in (see --postgresql-version-in)
 postgresql_version.is (see --postgresql-version-is)
 postgresql_version.isnt (see --postgresql-version-isnt)
 postgresql_version.max (see --postgresql-version-max)
 postgresql_version.min (see --postgresql-version-min)
 postgresql_version.not_contains (see --postgresql-version-not-contains)
 postgresql_version.not_in (see --postgresql-version-not-in)
 postgresql_version.xmax (see --postgresql-version-xmax)
 postgresql_version.xmin (see --postgresql-version-xmin)
 python_version (see --python-version)
 python_version.contains (see --python-version-contains)
 python_version.in (see --python-version-in)
 python_version.is (see --python-version-is)
 python_version.isnt (see --python-version-isnt)
 python_version.max (see --python-version-max)
 python_version.min (see --python-version-min)
 python_version.not_contains (see --python-version-not-contains)
 python_version.not_in (see --python-version-not-in)
 python_version.xmax (see --python-version-xmax)
 python_version.xmin (see --python-version-xmin)
 query (see --query)
 random (see --random)
 reldate (see --reldate)
 reldate.in (see --reldate-in)
 reldate.is (see --reldate-is)
 reldate.isnt (see --reldate-isnt)
 reldate.max (see --reldate-max)
 reldate.min (see --reldate-min)
 reldate.not_in (see --reldate-not-in)
 reldate.xmax (see --reldate-xmax)
 reldate.xmin (see --reldate-xmin)
 result_limit (see --result-limit)
 result_start (see --result-start)
 ruby_version (see --ruby-version)

bin/list-redhat-releases  view on Meta::CPAN

 ruby_version.in (see --ruby-version-in)
 ruby_version.is (see --ruby-version-is)
 ruby_version.isnt (see --ruby-version-isnt)
 ruby_version.max (see --ruby-version-max)
 ruby_version.min (see --ruby-version-min)
 ruby_version.not_contains (see --ruby-version-not-contains)
 ruby_version.not_in (see --ruby-version-not-in)
 ruby_version.xmax (see --ruby-version-xmax)
 ruby_version.xmin (see --ruby-version-xmin)
 sort (see --sort)
 version (see --version-arg)
 version.contains (see --version-contains)
 version.in (see --version-in)
 version.is (see --version-is)
 version.isnt (see --version-isnt)
 version.max (see --version-max)
 version.min (see --version-min)
 version.not_contains (see --version-not-contains)
 version.not_in (see --version-not-in)
 version.xmax (see --version-xmax)
 version.xmin (see --version-xmin)
 with_field_names (see --with-field-names)

=head1 FILES

 view all matches for this distribution


App-ListSoftwareLicenses

 view release on metacpan or  search on metacpan

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


=item * B<meta2_name.min> => I<str>

Only return records where the 'meta2_name' field is greater than or equal to specified value.

=item * B<meta2_name.not_contains> => I<str>

Only return records where the 'meta2_name' field does not contain specified text.

=item * B<meta2_name.not_in> => I<array[str]>

Only return records where the 'meta2_name' field is not in the specified values.

=item * B<meta2_name.xmax> => I<str>

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


=item * B<meta_name.min> => I<str>

Only return records where the 'meta_name' field is greater than or equal to specified value.

=item * B<meta_name.not_contains> => I<str>

Only return records where the 'meta_name' field does not contain specified text.

=item * B<meta_name.not_in> => I<array[str]>

Only return records where the 'meta_name' field is not in the specified values.

=item * B<meta_name.xmax> => I<str>

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


=item * B<module.min> => I<str>

Only return records where the 'module' field is greater than or equal to specified value.

=item * B<module.not_contains> => I<str>

Only return records where the 'module' field does not contain specified text.

=item * B<module.not_in> => I<array[str]>

Only return records where the 'module' field is not in the specified values.

=item * B<module.xmax> => I<str>

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


=item * B<name.min> => I<str>

Only return records where the 'name' field is greater than or equal to specified value.

=item * B<name.not_contains> => I<str>

Only return records where the 'name' field does not contain specified text.

=item * B<name.not_in> => I<array[str]>

Only return records where the 'name' field is not in the specified values.

=item * B<name.xmax> => I<str>

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


=item * B<notice.min> => I<str>

Only return records where the 'notice' field is greater than or equal to specified value.

=item * B<notice.not_contains> => I<str>

Only return records where the 'notice' field does not contain specified text.

=item * B<notice.not_in> => I<array[str]>

Only return records where the 'notice' field is not in the specified values.

=item * B<notice.xmax> => I<str>

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


=item * B<text.min> => I<str>

Only return records where the 'text' field is greater than or equal to specified value.

=item * B<text.not_contains> => I<str>

Only return records where the 'text' field does not contain specified text.

=item * B<text.not_in> => I<array[str]>

Only return records where the 'text' field is not in the specified values.

=item * B<text.xmax> => I<str>

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


=item * B<url.min> => I<str>

Only return records where the 'url' field is greater than or equal to specified value.

=item * B<url.not_contains> => I<str>

Only return records where the 'url' field does not contain specified text.

=item * B<url.not_in> => I<array[str]>

Only return records where the 'url' field is not in the specified values.

=item * B<url.xmax> => I<str>

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


=item * B<version.min> => I<str>

Only return records where the 'version' field is greater than or equal to specified value.

=item * B<version.not_contains> => I<str>

Only return records where the 'version' field does not contain specified text.

=item * B<version.not_in> => I<array[str]>

Only return records where the 'version' field is not in the specified values.

=item * B<version.xmax> => I<str>

 view all matches for this distribution


App-ListUbuntuReleases

 view release on metacpan or  search on metacpan

bin/list-ubuntu-releases  view on Meta::CPAN

 code_name.in (see --code-name-in)
 code_name.is (see --code-name-is)
 code_name.isnt (see --code-name-isnt)
 code_name.max (see --code-name-max)
 code_name.min (see --code-name-min)
 code_name.not_contains (see --code-name-not-contains)
 code_name.not_in (see --code-name-not-in)
 code_name.xmax (see --code-name-xmax)
 code_name.xmin (see --code-name-xmin)
 detail (see --detail)
 fields (see --field)
 format (see --format)

bin/list-ubuntu-releases  view on Meta::CPAN

 kernelver.in (see --kernelver-in)
 kernelver.is (see --kernelver-is)
 kernelver.isnt (see --kernelver-isnt)
 kernelver.max (see --kernelver-max)
 kernelver.min (see --kernelver-min)
 kernelver.not_contains (see --kernelver-not-contains)
 kernelver.not_in (see --kernelver-not-in)
 kernelver.xmax (see --kernelver-xmax)
 kernelver.xmin (see --kernelver-xmin)
 naked_res (see --naked-res)
 perlver (see --perlver)
 perlver.contains (see --perlver-contains)
 perlver.in (see --perlver-in)
 perlver.is (see --perlver-is)
 perlver.isnt (see --perlver-isnt)
 perlver.max (see --perlver-max)
 perlver.min (see --perlver-min)
 perlver.not_contains (see --perlver-not-contains)
 perlver.not_in (see --perlver-not-in)
 perlver.xmax (see --perlver-xmax)
 perlver.xmin (see --perlver-xmin)
 query (see --query)
 random (see --random)
 reldate (see --reldate)
 reldate.in (see --reldate-in)
 reldate.is (see --reldate-is)
 reldate.isnt (see --reldate-isnt)
 reldate.max (see --reldate-max)
 reldate.min (see --reldate-min)
 reldate.not_in (see --reldate-not-in)
 reldate.xmax (see --reldate-xmax)
 reldate.xmin (see --reldate-xmin)
 result_limit (see --result-limit)
 result_start (see --result-start)
 sort (see --sort)

bin/list-ubuntu-releases  view on Meta::CPAN

 supdate_desktop.in (see --supdate-desktop-in)
 supdate_desktop.is (see --supdate-desktop-is)
 supdate_desktop.isnt (see --supdate-desktop-isnt)
 supdate_desktop.max (see --supdate-desktop-max)
 supdate_desktop.min (see --supdate-desktop-min)
 supdate_desktop.not_in (see --supdate-desktop-not-in)
 supdate_desktop.xmax (see --supdate-desktop-xmax)
 supdate_desktop.xmin (see --supdate-desktop-xmin)
 supdate_server (see --supdate-server)
 supdate_server.in (see --supdate-server-in)
 supdate_server.is (see --supdate-server-is)
 supdate_server.isnt (see --supdate-server-isnt)
 supdate_server.max (see --supdate-server-max)
 supdate_server.min (see --supdate-server-min)
 supdate_server.not_in (see --supdate-server-not-in)
 supdate_server.xmax (see --supdate-server-xmax)
 supdate_server.xmin (see --supdate-server-xmin)
 version (see --version-arg)
 version.contains (see --version-contains)
 version.in (see --version-in)
 version.is (see --version-is)
 version.isnt (see --version-isnt)
 version.max (see --version-max)
 version.min (see --version-min)
 version.not_contains (see --version-not-contains)
 version.not_in (see --version-not-in)
 version.xmax (see --version-xmax)
 version.xmin (see --version-xmin)
 with_field_names (see --with-field-names)

=head1 FILES

 view all matches for this distribution


App-LocaleCodesUtils

 view release on metacpan or  search on metacpan

lib/App/LocaleCodesUtils/ListCountries.pm  view on Meta::CPAN


=item * B<alpha2.min> => I<str>

Only return records where the 'alpha2' field is greater than or equal to specified value.

=item * B<alpha2.not_contains> => I<str>

Only return records where the 'alpha2' field does not contain specified text.

=item * B<alpha2.not_in> => I<array[str]>

Only return records where the 'alpha2' field is not in the specified values.

=item * B<alpha2.xmax> => I<str>

lib/App/LocaleCodesUtils/ListCountries.pm  view on Meta::CPAN


=item * B<alpha3.min> => I<str>

Only return records where the 'alpha3' field is greater than or equal to specified value.

=item * B<alpha3.not_contains> => I<str>

Only return records where the 'alpha3' field does not contain specified text.

=item * B<alpha3.not_in> => I<array[str]>

Only return records where the 'alpha3' field is not in the specified values.

=item * B<alpha3.xmax> => I<str>

lib/App/LocaleCodesUtils/ListCountries.pm  view on Meta::CPAN


=item * B<name.min> => I<str>

Only return records where the 'name' field is greater than or equal to specified value.

=item * B<name.not_contains> => I<str>

Only return records where the 'name' field does not contain specified text.

=item * B<name.not_in> => I<array[str]>

Only return records where the 'name' field is not in the specified values.

=item * B<name.xmax> => I<str>

 view all matches for this distribution


App-MARC-List

 view release on metacpan or  search on metacpan

t/App-MARC-List/04-run.t  view on Meta::CPAN

	'Run filter for MARC XML file with bad arguments (bad).');
clean();

# Test.
@ARGV = (
	'file_not_exists',
	'015',
	'a',
);
eval {
	App::MARC::List->new->run;
};
is($EVAL_ERROR, "File 'file_not_exists' doesn't exist.\n",
	"File 'file_not_exists' doesn't exist.");
clean();

# Test.
@ARGV = (
	$data_dir->file('ex1.xml')->s,

 view all matches for this distribution


App-MARC-Validator-Report

 view release on metacpan or  search on metacpan

Report.pm  view on Meta::CPAN

			print "Plugin '$plugin':\n";
			foreach my $error (sort keys %{$self->{'_list'}->{$plugin}}) {
				if ($self->{'_opts'}->{'e'} eq 'all' || $self->{'_opts'}->{'e'} eq $error) {
					print "- $error\n";
					foreach my $id (sort @{$self->{'_list'}->{$plugin}->{$error}}) {
						my @err = @{$self->{'_report'}->{$plugin}->{'checks'}->{'not_valid'}->{$id}};
						my @structs;
						foreach my $err_hr (@err) {
							if ($err_hr->{'error'} eq $error) {
								push @structs, $err_hr->{'params'};
							}

Report.pm  view on Meta::CPAN

	foreach my $plugin (keys %{$self->{'_report'}}) {
		if (! exists $self->{'_report'}->{$plugin}->{'checks'}) {
			print STDERR "Doesn't exist key 'checks' in plugin $plugin.";
			return 1;
		}
		if (! exists $self->{'_report'}->{$plugin}->{'checks'}->{'not_valid'}) {
			print STDERR "Doesn't exist key 'checks'->'not_valid' in plugin $plugin.";
			return 1;
		}
		if (! exists $self->{'_list'}->{$plugin}) {
			$self->{'_list'}->{$plugin} = {};
		}
		my $not_valid_hr = $self->{'_report'}->{$plugin}->{'checks'}->{'not_valid'};
		foreach my $record_id (keys %{$not_valid_hr}) {
			foreach my $error_hr (@{$not_valid_hr->{$record_id}}) {
				if (! exists $self->{'_list'}->{$plugin}->{$error_hr->{'error'}}) {
					$self->{'_list'}->{$plugin}->{$error_hr->{'error'}} = [$record_id];
				} else {
					if (none { $_ eq $record_id } @{$self->{'_list'}->{$plugin}->{$error_hr->{'error'}}}) {
						push @{$self->{'_list'}->{$plugin}->{$error_hr->{'error'}}}, $record_id;

 view all matches for this distribution


App-MARC-Validator

 view release on metacpan or  search on metacpan

Validator/Utils.pm  view on Meta::CPAN


	my $struct_hr = {};
	foreach my $plugin (@{$report->plugins}) {
		$struct_hr->{$plugin->name} = {
			'checks' => {
				'not_valid' => {},
			},
			'datetime' => $report->datetime->iso8601,
			'module_name' => $plugin->module_name,
			'module_version' => $plugin->version,
			'name' => $plugin->name,
		},
		my $not_valid_hr = $struct_hr->{$plugin->name}->{'checks'}->{'not_valid'};
		foreach my $plugin_errors (@{$plugin->plugin_errors}) {
			$not_valid_hr->{$plugin_errors->record_id} = [];
			foreach my $error (@{$plugin_errors->errors}) {
				push @{$not_valid_hr->{$plugin_errors->record_id}}, {
					'error' => $error->error,
					'params' => $error->params,
				};
			}
		}

 view all matches for this distribution


App-MFILE-WWW

 view release on metacpan or  search on metacpan

lib/App/MFILE/WWW.pm  view on Meta::CPAN

        }
    }

    # * load site configuration
    my $status = _load_config( %ARGS );
    return $status if $status->not_ok;

    # * mode-specific meta configuration
    $meta->set( 'META_WWW_STANDALONE_MODE', ( $mode eq 'STANDALONE' ) );

    # * set up logging
    return $CELL->status_not_ok( "MFILE_APPNAME not set!" ) if not $site->MFILE_APPNAME;
    my $debug_mode;
    if ( exists $ARGS{'debug_mode'} ) {
        $debug_mode = $ARGS{'debug_mode'};
    } else {
        $debug_mode = $site->MFILE_WWW_DEBUG_MODE || 0;

lib/App/MFILE/WWW.pm  view on Meta::CPAN


    # always load the App::MFILE::WWW distro sharedir
    my $target = File::Spec->catfile( $dist_dir, 'config' );
    print "Loading App::MFILE::WWW configuration parameters from $target\n";
    $status = $CELL->load( sitedir => $target );
    return $status if $status->not_ok;

    # load additional sitedir if provided by caller in argument list
    if ( $ARGS{sitedir} ) {
        $target = $ARGS{sitedir};
        print "Loading App::MFILE::WWW configuration parameters from $target\n";
        $status = $CELL->load( sitedir => $target );
        return $status if $status->not_ok;
        $sitedir_loaded = 1;
    }

    # if ddist_sharedir was given, attempt to load configuration from that, too
    if ( $ARGS{ddist_sharedir} and ! $sitedir_loaded ) {
        $target = File::Spec->catfile( $ARGS{ddist_sharedir}, 'config' );
        print "Loading App::MFILE::WWW configuration parameters from $target\n";
        $status = $CELL->load( sitedir => $target );
        return $status if $status->not_ok;
    }

    return $CELL->status_ok;
}

 view all matches for this distribution


( run in 1.000 second using v1.01-cache-2.11-cpan-39bf76dae61 )