AI-PredictionClient-Alien-TensorFlowServingProtos
view release on metacpan or search on metacpan
123456789100.01 2017-07-12
- Initial release to CPAN
0.02 2017-07-14
- Fix dependencies found by CPAN testers.
0.03 2017-07-16
- Bump up dependencies' version requirements
0.04 2017-07-16
- Bump up dependencies. Documentation maintenance.
0.05 2017-07-23
- Bump up dependencies.
205206207208209210211212213214215216217218219220221222223224225OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
POSSIBILITY OF SUCH DAMAGES.
END OF TERMS AND CONDITIONS
Appendix: How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
free software which everyone can redistribute and change under these
terms.
To
do
so, attach the following notices to the program. It is safest to
attach them to the start of
each
source file to most effectively convey
the exclusion of warranty; and
each
file should have at least the
"copyright"
line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
LICENSE.txt view on Meta::CPAN
205206207208209210211212213214215216217218219220221222223224225OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
POSSIBILITY OF SUCH DAMAGES.
END OF TERMS AND CONDITIONS
Appendix: How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
free software which everyone can redistribute and change under these
terms.
To
do
so, attach the following notices to the program. It is safest to
attach them to the start of
each
source file to most effectively convey
the exclusion of warranty; and
each
file should have at least the
"copyright"
line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
414243444546474849505152535455565758596061
},
"runtime"
: {
"requires"
: {
"Alien::Base"
:
"0"
,
"base"
:
"0"
,
"perl"
:
"5.01"
,
"strict"
:
"0"
,
"warnings"
:
"0"
}
},
"test"
: {
"requires"
: {
"Test::More"
:
"0"
}
}
},
"provides"
: {
"AI::PredictionClient::Alien::TensorFlowServingProtos"
: {
"file"
:
"lib/AI/PredictionClient/Alien/TensorFlowServingProtos.pm"
,
"version"
:
"0.05"
}
Makefile.PL view on Meta::CPAN
353637383940414243444546474849505152535455
"PREREQ_PM"
=> {
"Alien::Base"
=> 0,
"base"
=> 0,
"strict"
=> 0,
"warnings"
=> 0
},
"TEST_REQUIRES"
=> {
"Test::More"
=> 0
},
"VERSION"
=>
"0.05"
,
"test"
=> {
"TESTS"
=>
"t/*.t"
}
);
my
%FallbackPrereqs
= (
"Alien::Base"
=> 0,
"Alien::Build"
=>
"0.40"
,
"Alien::Build::MM"
=>
"0.40"
,
"ExtUtils::MakeMaker"
=>
"6.52"
,
"Test::More"
=> 0,
34567891011121314151617181920212223requires
"perl"
=>
"5.01"
;
requires
"strict"
=>
"0"
;
requires
"warnings"
=>
"0"
;
on
'build'
=>
sub
{
requires
"Alien::Build"
=>
"0.40"
;
requires
"Alien::Build::MM"
=>
"0.40"
;
requires
"ExtUtils::MakeMaker"
=>
"6.52"
;
};
on
'test'
=>
sub
{
requires
"Test::More"
=>
"0"
;
};
on
'configure'
=>
sub
{
requires
"Alien::Build"
=>
"0.40"
;
requires
"Alien::Build::MM"
=>
"0.40"
;
requires
"Alien::Google::GRPC"
=>
"0.06"
;
requires
"Archive::Extract"
=>
"0"
;
requires
"Env"
=>
"0"
;
requires
"ExtUtils::MakeMaker"
=>
"6.52"
;
lib/AI/PredictionClient/Alien/TensorFlowServingProtos.pm view on Meta::CPAN
7374757677787980818283848586878889909192$ [sudo] apt-get install build-essential make g++
See the Alien::Google::GRPC
for
potential additional build dependencies.
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.
=cut
1234567891011## no critic(RCS,VERSION,explicit,Module)
use
strict;
use
warnings;
use
Test::More;
BEGIN {
use_ok(
'AI::PredictionClient::Alien::TensorFlowServingProtos'
);
}
ok( 1,
'AI::PredictionClient::Alien::TensorFlowServingProtos.'
);
done_testing();
t/author-pod-spell.t view on Meta::CPAN
1234567891011121314BEGIN {
unless
(
$ENV
{AUTHOR_TESTING}) {
qq{1..0 # SKIP these tests are for testing by the author\n}
;
exit
}
}
use
strict;
use
warnings;
use
Test::More;
# generated by Dist::Zilla::Plugin::Test::PodSpelling 2.007004
use
Test::Spelling 0.12;
t/author-pod-syntax.t view on Meta::CPAN
123456789101112131415#!perl
BEGIN {
unless
(
$ENV
{AUTHOR_TESTING}) {
qq{1..0 # SKIP these tests are for testing by the author\n}
;
exit
}
}
# This file was automatically generated by Dist::Zilla::Plugin::PodSyntaxTests.
use
Test::More;
use
Test::Pod 1.41;
all_pod_files_ok();
( run in 0.335 second using v1.01-cache-2.11-cpan-bf8d7bb2d05 )