view release on metacpan or search on metacpan
# This file was automatically generated by Dist::Zilla::Plugin::ModuleBuild v6.024.
use strict;
use warnings;
use Module::Build 0.28;
use lib qw{inc}; use AU::Build;
my %module_build_args = (
"build_requires" => {
"IO::Socket::SSL" => "1.42",
"Module::Build" => "0.28"
view all matches for this distribution
view release on metacpan or search on metacpan
# This file was automatically generated by Dist::Zilla::Plugin::ModuleBuild v6.012.
use strict;
use warnings;
use Module::Build 0.28;
use lib qw{inc}; use AU::Build;
my %module_build_args = (
"build_requires" => {
"IO::Socket::SSL" => "1.42",
"Module::Build" => "0.28"
view all matches for this distribution
view release on metacpan or search on metacpan
use strict;
use warnings;
use lib 'inc';
use Alien::make::Module::Build;
my $build = Alien::make::Module::Build->new(
module_name => 'Alien::unibilium',
tarball => 'unibilium-2.0.0+PR39.tar.gz',
view all matches for this distribution
view release on metacpan or search on metacpan
libuv/docs/src/guide/introduction.rst view on Meta::CPAN
If you are reading this book, you are either:
1) a systems programmer, creating low-level programs such as daemons or network
services and clients. You have found that the event loop approach is well
suited for your application and decided to use libuv.
2) a node.js module writer, who wants to wrap platform APIs
written in C or C++ with a set of (a)synchronous APIs that are exposed to
JavaScript. You will use libuv purely in the context of node.js. For
this you will require some other resources as the book does not cover parts
specific to v8/node.js.
This book assumes that you are comfortable with the C programming language.
view all matches for this distribution
view release on metacpan or search on metacpan
inc/My/Build/Base.pm view on Meta::CPAN
use File::Basename ();
use Fatal qw(open close unlink);
use Data::Dumper;
use File::Glob qw(bsd_glob);
use Carp;
use lib '.';
# Ensure deterministic output
$Data::Dumper::Sortkeys = 1;
# use the system version of a module if present; in theory this could lead to
view all matches for this distribution
view release on metacpan or search on metacpan
t/00_compile.t view on Meta::CPAN
use strict;
use warnings;
use lib 'lib', '../blib/lib', '../lib';
use Test2::V0;
use Env qw[@PATH];
#
use Alien::xmake;
#
view all matches for this distribution
view release on metacpan or search on metacpan
t/10_align.t view on Meta::CPAN
use open qw(:locale);
use strict;
use warnings;
use utf8;
use lib qw(../lib/);
use Test::More;
my $class = 'Align::Sequence';
view all matches for this distribution
view release on metacpan or search on metacpan
t/06_sum_register_bechmark_test.pl view on Meta::CPAN
#!/usr/bin/perl
use strict;
use lib './lib';
use Test::Simple 'no_plan';
use Alister::Base::Sums ':all';
# generate random sums and get ids for them
view all matches for this distribution
view release on metacpan or search on metacpan
script/all-knowing-dns view on Meta::CPAN
use strict;
use warnings;
# These modules are in core:
use FindBin;
use lib "$FindBin::Bin/../lib";
use Getopt::Long;
use Sys::Syslog;
# All these modules are not in core:
use App::AllKnowingDNS::Util;
use App::AllKnowingDNS::Handler;
view all matches for this distribution
view release on metacpan or search on metacpan
inc/Inline/CPP/Config.pm view on Meta::CPAN
my $os = $^O;
my $msg = "Unsupported OS/Compiler for Inline::Module+Inline::CPP '$os'";
die $msg unless
$ENV{PERL5_MINISMOKEBOX} ||
$ENV{PERL_CR_SMOKER_CURRENT};
eval 'use lib "inc"; use Inline::Module; 1' or die $@;
Inline::Module->smoke_system_info_dump($msg);
}
sub _trim_whitespace {
my $string = shift;
view all matches for this distribution
view release on metacpan or search on metacpan
inc/Inline/Module.pm view on Meta::CPAN
die <<"...";
First element of \@INC should be 'inc'.
It's '$first'.
Add this line to the top of your '$program':
use lib 'inc';
...
}
}
view all matches for this distribution
view release on metacpan or search on metacpan
inc/Inline/Module.pm view on Meta::CPAN
die <<"...";
First element of \@INC should be 'inc'.
It's '$first'.
Add this line to the top of your '$program':
use lib 'inc';
...
}
}
view all matches for this distribution
view release on metacpan or search on metacpan
Makefile.PL view on Meta::CPAN
use warnings;
use 5.008001;
use ExtUtils::MakeMaker;
use lib 'inc';
use Inline::Module;
my %WriteMakefileArgs = (
"ABSTRACT" => "Math is HARD (faster)",
"AUTHOR" => "Ingy d\x{f6}t Net <ingy\@cpan.org>",
view all matches for this distribution
view release on metacpan or search on metacpan
t/01-basics.t view on Meta::CPAN
#!perl
use strict;
use warnings;
use FindBin '$Bin';
use lib "$Bin/lib";
use Module::Load;
use Test::Exception;
use Test::More 0.98;
view all matches for this distribution
view release on metacpan or search on metacpan
Makefile.PL view on Meta::CPAN
use ExtUtils::MakeMaker;
use lib 'inc'; # load our bundled version of Devel::CheckLib
use Devel::CheckLib;
my %bigint_preq;
if ( check_lib(lib => 'gmp', header => 'gmp.h') ) {
view all matches for this distribution
view release on metacpan or search on metacpan
Makefile.PL view on Meta::CPAN
or die "Couldn't install Module::Build, giving up.\n";
chdir $cwd or die "Cannot chdir() back to $cwd: $!";
}
eval "use Module::Build::Compat 0.02; 1" or die $@;
use lib '_build/lib';
Module::Build::Compat->run_build_pl(args => \@ARGV);
my $build_script = 'Build';
$build_script .= '.com' if $^O eq 'VMS';
exit(0) unless(-e $build_script); # cpantesters convention
require MyModuleBuilder;
view all matches for this distribution
view release on metacpan or search on metacpan
inc/Inline/Module.pm view on Meta::CPAN
die <<"...";
First element of \@INC should be 'inc'.
It's '$first'.
Add this line to the top of your '$program':
use lib 'inc';
...
}
}
view all matches for this distribution
view release on metacpan or search on metacpan
t/ffi_raw.t view on Meta::CPAN
use Test2::V0 -no_srand => 1;
use Test2::Tools::FFI;
use lib 't/lib';
use FFI::Raw;
use Math::BigInt;
use POSIX;
use File::Spec;
use Env qw(@PATH);
view all matches for this distribution
view release on metacpan or search on metacpan
t/expectations.t view on Meta::CPAN
use lib 'inc';
use TestML;
TestML->new(
testml => join('', <DATA>),
bridge => 'TestMLBridge',
view all matches for this distribution
view release on metacpan or search on metacpan
inc/Inline/CPP/Config.pm view on Meta::CPAN
my $os = $^O;
my $msg = "Unsupported OS/Compiler for Inline::Module+Inline::CPP '$os'";
die $msg unless
$ENV{PERL5_MINISMOKEBOX} ||
$ENV{PERL_CR_SMOKER_CURRENT};
eval 'use lib "inc"; use Inline::Module; 1' or die $@;
Inline::Module->smoke_system_info_dump($msg);
}
sub _trim_whitespace {
my $string = shift;
view all matches for this distribution
view release on metacpan or search on metacpan
#!/usr/bin/perl -w
use lib 't';
use Test::More tests => 26;
BEGIN { use_ok 'Sub::Delete' };
view all matches for this distribution
view release on metacpan or search on metacpan
#!perl
use strict;
use warnings;
use FindBin '$Bin';
use lib "$Bin/lib";
use Test::Exception;
use Test::More;
sub use_ {
view all matches for this distribution
view release on metacpan or search on metacpan
inc/Alzabo/GUI/Mason/Build.pm view on Meta::CPAN
package Alzabo::GUI::Mason::Build;
use strict;
use lib './lib', './blib';
use Module::Build 0.16;
use base 'Module::Build';
use Cwd;
view all matches for this distribution
view release on metacpan or search on metacpan
use 5.005;
use Data::Dumper;
use File::Spec;
use lib 'inc';
use Alzabo::Build;
use Getopt::Long qw( :config pass_through );
view all matches for this distribution
view release on metacpan or search on metacpan
examples/mpd.pl view on Meta::CPAN
use strict;
use warnings;
use FindBin;
use lib "$FindBin::Bin/../lib";
use Amazon::Dash::Button ();
use constant MPC => q{/usr/bin/mpc};
view all matches for this distribution
view release on metacpan or search on metacpan
t/#02-tables-gsi.t# view on Meta::CPAN
#!perl
use strict;
use warnings;
use lib ('lib', './t');
use Test::Most;
use TestSettings;
use String::Random;
use Data::Dumper;
view all matches for this distribution
view release on metacpan or search on metacpan
Makefile.PL view on Meta::CPAN
use lib qw/lib/;
use Module::Build::Compat;
Module::Build::Compat->run_build_pl(args => \@ARGV);
Module::Build::Compat->write_makefile(build_class => 'Module::Build');
view all matches for this distribution
view release on metacpan or search on metacpan
#!/usr/bin/env perl
# command tool like aws s3
use strict;
use warnings;
use FindBin;
use lib $FindBin::Bin . '/../lib';
use Amazon::S3::Thin;
use Config::Tiny;
S3::CLI->new->run(@ARGV);
view all matches for this distribution
view release on metacpan or search on metacpan
#!/usr/bin/env perl -w
use warnings;
use strict;
use lib qw( . lib);
use Data::Dumper;
use Digest::MD5::File qw(file_md5_hex);
use English qw{-no_match_vars};
use File::Temp qw{ tempfile };
view all matches for this distribution
view release on metacpan or search on metacpan
t/01-compile.t view on Meta::CPAN
#!perl
use strict;
use warnings;
use lib 'lib';
use Test::More;
plan tests => 8;
view all matches for this distribution