App-Oozie

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

            "List::MoreUtils" : "0",
            "List::Util" : "0",
            "Log::Log4perl" : "0",
            "Moo" : "0",
            "Moo::Role" : "0",
            "MooX::Options" : "4.103",
            "Net::Hadoop::Oozie" : "0",
            "Net::Hadoop::WebHDFS::LWP" : "0.011",
            "Net::Hadoop::YARN::NameNode::JMX" : "0",
            "Path::Tiny" : "0",
            "Ref::Util" : "0",
            "Scalar::Util" : "0",
            "Sub::Quote" : "0",
            "Sys::Hostname" : "0",
            "Template" : "0",
            "Template::Base" : "0",
            "Text::Glob" : "0",
            "Text::ParseWords" : "0",
            "Text::Trim" : "0",
            "Time::Duration" : "0",
            "Time::HiRes" : "0",

META.yml  view on Meta::CPAN

  List::MoreUtils: '0'
  List::Util: '0'
  Log::Log4perl: '0'
  Moo: '0'
  Moo::Role: '0'
  MooX::Options: '4.103'
  Net::Hadoop::Oozie: '0'
  Net::Hadoop::WebHDFS::LWP: '0.011'
  Net::Hadoop::YARN::NameNode::JMX: '0'
  Path::Tiny: '0'
  Ref::Util: '0'
  Scalar::Util: '0'
  Sub::Quote: '0'
  Sys::Hostname: '0'
  Template: '0'
  Template::Base: '0'
  Text::Glob: '0'
  Text::ParseWords: '0'
  Text::Trim: '0'
  Time::Duration: '0'
  Time::HiRes: '0'

Makefile.PL  view on Meta::CPAN

    "List::MoreUtils" => 0,
    "List::Util" => 0,
    "Log::Log4perl" => 0,
    "Moo" => 0,
    "Moo::Role" => 0,
    "MooX::Options" => "4.103",
    "Net::Hadoop::Oozie" => 0,
    "Net::Hadoop::WebHDFS::LWP" => "0.011",
    "Net::Hadoop::YARN::NameNode::JMX" => 0,
    "Path::Tiny" => 0,
    "Ref::Util" => 0,
    "Scalar::Util" => 0,
    "Sub::Quote" => 0,
    "Sys::Hostname" => 0,
    "Template" => 0,
    "Template::Base" => 0,
    "Text::Glob" => 0,
    "Text::ParseWords" => 0,
    "Text::Trim" => 0,
    "Time::Duration" => 0,
    "Time::HiRes" => 0,

lib/App/Oozie/Deploy/Template.pm  view on Meta::CPAN

use File::Basename;
use File::Path qw(
    make_path
    remove_tree
);
use File::Spec;
use File::Temp ();
use Hash::Flatten ();
use Moo;
use MooX::Options;
use Ref::Util qw(
    is_ref
    is_arrayref
    is_hashref
);
use Template ();
use Text::Trim qw( trim  );
use Types::Standard qw(
    ArrayRef
    CodeRef
    HashRef

lib/App/Oozie/Deploy/Validate/DAG/Workflow.pm  view on Meta::CPAN

our $VERSION = '0.016'; # VERSION

use namespace::autoclean -except => [qw/_options_data _options_config/];

use App::Oozie::Constants qw( EMPTY_STRING );
use App::Oozie::Deploy::Validate::DAG::Vertex;

use Carp ();
use Graph::Directed;
use Moo;
use Ref::Util       qw( is_hashref );
use Types::Standard qw( HashRef    );
use XML::LibXML;

with qw(
    App::Oozie::Role::Log
);

has node_types => (
    is      => 'ro',
    isa     => HashRef,

lib/App/Oozie/Role/Info.pm  view on Meta::CPAN


use 5.014;
use strict;
use warnings;

our $VERSION = '0.016'; # VERSION

use namespace::autoclean -except => [qw/_options_data _options_config/];

use Moo::Role;
use Ref::Util qw( is_arrayref );

with qw(
    App::Oozie::Role::Log
);

sub log_versions {
    my $self      = shift;
    my $log_level = shift || 'debug';
    my $me        = ref $self;
    my @classes   = ( [ $me, $self->VERSION ] );

lib/App/Oozie/Run.pm  view on Meta::CPAN

    trim_slashes
);

use Config::Properties;
use Cwd;
use File::Basename;
use File::Spec;
use File::Temp ();
use IO::Interactive qw( is_interactive );
use IPC::Cmd        ();
use Ref::Util       qw( is_ref is_hashref is_arrayref );
use Template;
use Time::Duration  qw( duration_exact );
use Types::Standard qw( Int );
use XML::LibXML::Simple;

use Moo;
use MooX::Options prefer_commandline => 0,
                  protect_argv       => 0,
                  usage_string       => <<'USAGE',
Usage: %c %o [options] workflow-name

lib/App/Oozie/Update/Coordinator.pm  view on Meta::CPAN

use App::Oozie::Util::Misc qw( resolve_tmp_dir );

use Config::General qw( ParseConfig );
use Cwd;
use Date::Format ();
use Date::Parse  ();
use File::Spec::Functions qw( catfile );
use File::Temp ();
use Getopt::Long;
use IPC::Cmd ();
use Ref::Util       qw( is_ref );
use Types::Standard qw( HashRef );
use XML::Twig;

use Moo;
use MooX::Options prefer_commandline => 0,
                  protect_argv       => 0,
                  usage_string       => <<'USAGE',
Usage: %c %o [options] --coord <coord id>
USAGE
;

lib/App/Oozie/XML.pm  view on Meta::CPAN

);
use App::Oozie::Types::Common qw( IsFile );
use App::Oozie::Util::Misc    qw( resolve_tmp_dir );

use Archive::Zip;
use Clone qw( clone );
use File::Temp ();
use Text::Trim qw( trim );
use Moo;
use MooX::Options;
use Ref::Util qw( is_ref is_hashref is_arrayref is_scalarref );
use Scalar::Util qw( blessed );
use Types::Standard qw( Str );
use XML::Compile::Cache;
use XML::Compile::Util;
use XML::LibXML;

with qw(
    App::Oozie::Role::Log
    App::Oozie::Role::Fields::Generic
);

t/00-report-prereqs.dd  view on Meta::CPAN

                                      'List::MoreUtils' => '0',
                                      'List::Util' => '0',
                                      'Log::Log4perl' => '0',
                                      'Moo' => '0',
                                      'Moo::Role' => '0',
                                      'MooX::Options' => '4.103',
                                      'Net::Hadoop::Oozie' => '0',
                                      'Net::Hadoop::WebHDFS::LWP' => '0.011',
                                      'Net::Hadoop::YARN::NameNode::JMX' => '0',
                                      'Path::Tiny' => '0',
                                      'Ref::Util' => '0',
                                      'Scalar::Util' => '0',
                                      'Sub::Quote' => '0',
                                      'Sys::Hostname' => '0',
                                      'Template' => '0',
                                      'Template::Base' => '0',
                                      'Text::Glob' => '0',
                                      'Text::ParseWords' => '0',
                                      'Text::Trim' => '0',
                                      'Time::Duration' => '0',
                                      'Time::HiRes' => '0',

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 3.072 seconds using v1.00-cache-2.02-grep-82fe00e-cpan-c30982ac1bc3 )