view release on metacpan or search on metacpan
lib/AI/PredictionClient/Alien/TensorFlowServingProtos.pm view on Meta::CPAN
At this time only Linux builds are supported.
=cut
=head2 CPAN Testers Note
This module may fail CPAN Testers' tests.
The build support tools needed by this module and especially the
Alien::Google::GRPC module are normally installed on the
CPAN Testers' machines, but not always.
The system build tools dependencies have been reduced, so hopefully
a large number of machines will build without manually installing
system dependencies.
view all matches for this distribution
view release on metacpan or search on metacpan
examples/schedule.pl view on Meta::CPAN
#!/usr/bin/perl
# http://xbean.cs.ccu.edu.tw/~dan/PL/PLTests/PLFinal2002.htm
# Write a Prolog program to schedule classes for a department of NG University.
# There are 6 class periods, 6-8pm and 8-10pm on Monday, Wednesday, and Friday
# evenings. There are classrooms A, B, and C, and teachers Jim, Sally, Susan,
# and George. There are classes algebra, geometry, calculus, and analysis, each
# of which has to be taught 2 class periods per week. Jim can only come on
view all matches for this distribution
view release on metacpan or search on metacpan
t/annealing_tests.t view on Meta::CPAN
#!/usr/bin/perl
####
# annealing_tests.t: Test the AI::SimulatedAnnealing module.
#
# Usage:
#
# perl -w annealing_tests.t market_distances.csv
####
view all matches for this distribution
view release on metacpan or search on metacpan
t/lib/TF_TestQuiet.pm view on Meta::CPAN
package TF_TestQuiet;
use strict;
use warnings;
sub import {
view all matches for this distribution
view release on metacpan or search on metacpan
t/AI-Termites.t view on Meta::CPAN
# change 'tests => 1' to 'tests => last_test_to_print';
use strict;
use warnings;
use Test::More tests => 1;
BEGIN { use_ok('AI::Termites') };
#########################
# Insert your test code below, the Test::More module is use()ed here so read
# its man page ( perldoc Test::More ) for help writing this test script.
view all matches for this distribution
view release on metacpan or search on metacpan
"strict" => 0,
"utf8" => 0,
"warnings" => 0
},
"test_requires" => {
"Test::More" => 0,
"Test::Most" => 0
}
);
my %fallback_build_requires = (
"Module::Build" => "0.28",
"Test::More" => 0,
"Test::Most" => 0
);
unless ( eval { Module::Build->VERSION(0.4004) } ) {
delete $module_build_args{test_requires};
view all matches for this distribution
view release on metacpan or search on metacpan
t/AIIA-GMT.t view on Meta::CPAN
#########################
# change 'tests => 1' to 'tests => last_test_to_print';
use Test::More tests => 1;
BEGIN { use_ok('AIIA::GMT') };
#########################
# Insert your test code below, the Test::More module is use()ed here so read
# its man page ( perldoc Test::More ) for help writing this test script.
view all matches for this distribution
view release on metacpan or search on metacpan
#########################
# change 'tests => 1' to 'tests => last_test_to_print';
use Test;
BEGIN { plan tests => 2 };
BEGIN {print <<EOF };
AIS::client redirects and exits, only achieving it's
aim of authenticating a user against a central AIS server
after at least three state-altering calls to itself.
use AIS::client;
ok(1); # If we made it this far, we're ok.
#########################
# Insert your test code below, the Test module is use()ed here so read
# its man page ( perldoc Test ) for help writing this test script.
view all matches for this distribution
view release on metacpan or search on metacpan
t/AIX-LVM.t view on Meta::CPAN
# Before `make install' is performed this script should be runnable with
# `make test'. After `make install' it should work as `perl AIX-LVM.t'
#########################
use Test::More tests => 17;
BEGIN { use_ok('AIX::LVM') };
use AIX::LVM;
#########################
@methods = (
view all matches for this distribution
view release on metacpan or search on metacpan
print "ok 1\n";
######################### End of black magic.
print ("\nTesting module AIX::ODM version $AIX::ODM::VERSION with Perl version $] running on $^O.\n\n");
my %odm = AIX::ODM::odm_dump('C');
while ( my ($ndx1, $lev2) = each %odm ) {
while ( my ($ndx2, $val) = each %$lev2 ) {
view all matches for this distribution
view release on metacpan or search on metacpan
inc/Devel/CheckLib.pm view on Meta::CPAN
=head2 assert_lib
This takes several named parameters, all of which are optional, and dies
with an error message if any of the libraries listed can
not be found. B<Note>: dying in a Makefile.PL or Build.PL may provoke
a 'FAIL' report from CPAN Testers' automated smoke testers. Use
C<check_lib_or_exit> instead.
The named parameters are:
=over
inc/Devel/CheckLib.pm view on Meta::CPAN
This is intended for use in Makefile.PL / Build.PL
when you might want to prompt the user for various paths and
things before checking that what they've told you is sane.
If any library or header is missing, it exits with an exit value of 0 to avoid
causing a CPAN Testers 'FAIL' report. CPAN Testers should ignore this
result -- which is what you want if an external library dependency is not
available.
=cut
view all matches for this distribution
view release on metacpan or search on metacpan
Makefile.PL view on Meta::CPAN
use ExtUtils::MakeMaker;
use Test::More;
die "FATAL ERROR: Can only run on AIX" unless ( $^O eq 'aix' );
WriteMakefile(
'NAME' => 'AIX::SysInfo',
view all matches for this distribution
view release on metacpan or search on metacpan
lib/ALBD.pm view on Meta::CPAN
print "Implicit Matrix with Explicit Removed\n";
_printMatrix($implicitMatrixRef, $matrixSize, $indexToCuiRef);
print "-----------------------\n";
print "\n\n";
#Test N11, N1P, etc...
#NOTE...always do n11 first, if n11 = -1, no need to compute the others...there is no co-occurrence between them
my $n11 = Rank::getN11('C0','C2',$explicitMatrixRef);
my $npp = Rank::getNPP($explicitMatrixRef);
my $n1p = Rank::getN1P('C0', $explicitMatrixRef);
my $np1 = Rank::getNP1('C2', $explicitMatrixRef);
lib/ALBD.pm view on Meta::CPAN
print "n11 = $n11\n";
print "npp = $npp\n";
print "n1p = $n1p\n";
print "np1 = $np1\n";
#Test other rank methods
my $scoresRef = Rank::scoreImplicit_fromAllPairs($startingMatrixRef, $explicitMatrixRef, $implicitMatrixRef, $lbdOptions{rankingMethod}, $umls_association);
my $ranksRef = Rank::rankDescending($scoresRef);
print "Scores: \n";
foreach my $cui (keys %{$scoresRef}) {
print " scores{$cui} = ${$scoresRef}{$cui}\n";
view all matches for this distribution
view release on metacpan or search on metacpan
* Release 2.01
** Fix tests to work with custom PKGEXT :BUGFIX:
Tests were failing to work when using a different PKGEXT.
** load_pkgfile error changes to croak instead of die :BUGFIX:
A minor problem I found.
view all matches for this distribution
view release on metacpan or search on metacpan
t/00_load.t view on Meta::CPAN
#########################
# change 'tests => 1' to 'tests => last_test_to_print';
use Test::More tests => 1;
BEGIN { use_ok('AMF::Connection') };
#########################
# Insert your test code below, the Test::More module is use()ed here so read
# its man page ( perldoc Test::More ) for help writing this test script.
view all matches for this distribution
view release on metacpan or search on metacpan
}
},
"runtime" : {
"requires" : {
"IO::Socket::Multicast" : 0,
"Test::More" : 0
}
}
},
"release_status" : "stable",
"version" : "0.03"
view all matches for this distribution
view release on metacpan or search on metacpan
Getting Dependencies
--------------------
carton install
Running Tests
-------------
carton exec prove
view all matches for this distribution
view release on metacpan or search on metacpan
}
},
"runtime" : {
"requires" : {
"Class::Accessor::Fast" : 0,
"Test::More" : 0
}
}
},
"release_status" : "stable",
"resources" : {
view all matches for this distribution
view release on metacpan or search on metacpan
"perl" : "5.006"
}
},
"test" : {
"requires" : {
"Test::More" : "0"
}
}
},
"release_status" : "stable",
"version" : "0.05",
view all matches for this distribution
view release on metacpan or search on metacpan
use Test::More tests => 1;
BEGIN { use_ok('AOLserver::CtrlPort') };
view all matches for this distribution
view release on metacpan or search on metacpan
"XML::XPath" : 0
}
},
"test" : {
"requires" : {
"Test::More" : 0
}
}
},
"release_status" : "stable",
"resources" : {
view all matches for this distribution
view release on metacpan or search on metacpan
use Test::More;
use_ok 'API::Basecamp';
ok 1 and done_testing;
view all matches for this distribution
view release on metacpan or search on metacpan
"Module::Build::Tiny" : "0.035"
}
},
"develop" : {
"requires" : {
"Test::CPAN::Meta" : "0",
"Test::MinimumVersion::Fast" : "0.04",
"Test::PAUSE::Permissions" : "0.07",
"Test::Pod" : "1.41",
"Test::Spellunker" : "v0.2.7"
}
},
"runtime" : {
"requires" : {
"Carp" : "0",
}
},
"test" : {
"requires" : {
"FindBin" : "0",
"Test::More" : "0.98",
"Test::Spec" : "0"
}
}
},
"provides" : {
"API::BigBlueButton" : {
view all matches for this distribution
view release on metacpan or search on metacpan
- 'Tina Müller <cpan2@tinita.de>'
build_requires:
File::Spec: '0'
IO::Handle: '0'
IPC::Open3: '0'
Test::More: '0'
blib: '1.01'
configure_requires:
ExtUtils::MakeMaker: '0'
File::ShareDir::Install: '0.06'
dynamic_config: 0
view all matches for this distribution
view release on metacpan or search on metacpan
t/01-test.t view on Meta::CPAN
$ONLINE = $ENV{auth_user} && $ENV{auth_passwd} && $ENV{host};
}
my $manipulate_user = 'zsezse';
use Test::More tests => $ONLINE ? 61 : 61;
my $test_host = $ENV{host} || '127.0.0.1';
ok(1, 'Test OK');
use_ok('API::CPanel');
$a = 'refs';
is( refs( undef ), '', $a);
view all matches for this distribution
view release on metacpan or search on metacpan
"Data::Object::Role::Buildable" : "0.03",
"Data::Object::Role::Stashable" : "2.01",
"Data::Object::Role::Throwable" : "2.01",
"FlightRecorder" : "0.03",
"Mojolicious" : "8.35",
"Test::Auto" : "0.10",
"perl" : "5.014",
"routines" : "0",
"strict" : "0",
"warnings" : "0"
}
view all matches for this distribution
view release on metacpan or search on metacpan
"Module::Build::Tiny" : "0.035"
}
},
"develop" : {
"requires" : {
"Test::CPAN::Meta" : "0",
"Test::MinimumVersion::Fast" : "0.04",
"Test::PAUSE::Permissions" : "0.04",
"Test::Pod" : "1.41",
"Test::Spellunker" : "v0.2.7"
}
},
"runtime" : {
"requires" : {
"Carp" : "1.50",
"perl" : "5.008001"
}
},
"test" : {
"requires" : {
"Test::Most" : "0.35"
}
}
},
"provides" : {
"API::DeutscheBahn::Fahrplan" : {
view all matches for this distribution
view release on metacpan or search on metacpan
t/01-test.t view on Meta::CPAN
$ONLINE = $ENV{auth_user} && $ENV{auth_passwd} && $ENV{host};
}
my $manipulate_user = 'zsezse';
use Test::More tests => $ONLINE ? 34 : 34;
my %connection_params = (
host => $ENV{host} || '127.0.0.1',
auth_user => $ENV{auth_user} || 'login',
auth_passwd => $ENV{auth_passwd} || 'passwd',
);
ok(1, 'Test OK');
use_ok('API::DirectAdmin');
my $da = API::DirectAdmin->new(%connection_params);
my $func = 'filter_hash';
view all matches for this distribution
view release on metacpan or search on metacpan
license => 'perl_5',
dist_author => q{Dan Wright <Dan@DWright.Org>},
dist_version_from => 'lib/API/Drip/Request.pm',
release_status => 'stable',
configure_requires => { 'Module::Build' => '0', },
build_requires => { 'Test::More' => '0', },
requires => {
'Carp' => 0,
'Data::Printer' => 0,
'File::HomeDir' => 0,
'File::Spec' => 0,
view all matches for this distribution