Algorithm-Retry
view release on metacpan or search on metacpan
"Test::Pod::Coverage" : "1.08",
"Test::Rinci" : "0.151"
},
"x_spec" : {
"Rinci" : "v1.1.87"
}
},
"runtime" : {
"requires" : {
"Time::HiRes" : "0",
"parent" : "0",
"strict" : "0",
"warnings" : "0"
}
},
"test" : {
"requires" : {
"File::Spec" : "0",
"IO::Handle" : "0",
"IPC::Open3" : "0",
"Test::Exception" : "0",
ExtUtils::MakeMaker: '0'
dynamic_config: 0
generated_by: 'Dist::Zilla version 6.009, CPAN::Meta::Converter version 2.150010'
license: perl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: '1.4'
name: Algorithm-Retry
requires:
Time::HiRes: '0'
parent: '0'
strict: '0'
warnings: '0'
resources:
bugtracker: https://rt.cpan.org/Public/Dist/Display.html?Name=Algorithm-Retry
homepage: https://metacpan.org/release/Algorithm-Retry
repository: git://github.com/perlancar/perl-Algorithm-Retry.git
version: '0.002'
x_Dist_Zilla:
perl:
version: '5.026000'
Makefile.PL view on Meta::CPAN
"ABSTRACT" => "Various retry/backoff strategies",
"AUTHOR" => "perlancar <perlancar\@cpan.org>",
"CONFIGURE_REQUIRES" => {
"ExtUtils::MakeMaker" => 0
},
"DISTNAME" => "Algorithm-Retry",
"LICENSE" => "perl",
"NAME" => "Algorithm::Retry",
"PREREQ_PM" => {
"Time::HiRes" => 0,
"parent" => 0,
"strict" => 0,
"warnings" => 0
},
"TEST_REQUIRES" => {
"File::Spec" => 0,
"IO::Handle" => 0,
"IPC::Open3" => 0,
"Test::Exception" => 0,
"Test::More" => "0.98",
"Test::Number::Delta" => 0
Makefile.PL view on Meta::CPAN
my %FallbackPrereqs = (
"File::Spec" => 0,
"IO::Handle" => 0,
"IPC::Open3" => 0,
"Test::Exception" => 0,
"Test::More" => "0.98",
"Test::Number::Delta" => 0,
"Time::HiRes" => 0,
"parent" => 0,
"strict" => 0,
"warnings" => 0
);
unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
delete $WriteMakefileArgs{TEST_REQUIRES};
delete $WriteMakefileArgs{BUILD_REQUIRES};
$WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs;
}
[@Author::PERLANCAR]
:version=0.594
[Prereqs / TestRequires]
Test::Exception=0
Test::More=0.98
Test::Number::Delta=0
[Prereqs]
parent=0
strict=0
warnings=0
Time::HiRes=0
[Prereqs / DevelopX_spec]
-phase=develop
-relationship=x_spec
Rinci=1.1.87
lib/Algorithm/Retry/Constant.pm view on Meta::CPAN
package Algorithm::Retry::Constant;
our $DATE = '2019-04-10'; # DATE
our $VERSION = '0.002'; # VERSION
use strict;
use warnings;
use parent qw(Algorithm::Retry);
our %SPEC;
$SPEC{new} = {
v => 1.1,
is_class_meth => 1,
is_func => 0,
args => {
%Algorithm::Retry::attr_consider_actual_delay,
%Algorithm::Retry::attr_max_attempts,
lib/Algorithm/Retry/ExponentialBackoff.pm view on Meta::CPAN
package Algorithm::Retry::ExponentialBackoff;
our $DATE = '2019-04-10'; # DATE
our $VERSION = '0.002'; # VERSION
use strict;
use warnings;
use parent qw(Algorithm::Retry);
our %SPEC;
$SPEC{new} = {
v => 1.1,
is_class_meth => 1,
is_func => 0,
args => {
%Algorithm::Retry::attr_consider_actual_delay,
%Algorithm::Retry::attr_max_attempts,
lib/Algorithm/Retry/Fibonacci.pm view on Meta::CPAN
package Algorithm::Retry::Fibonacci;
our $DATE = '2019-04-10'; # DATE
our $VERSION = '0.002'; # VERSION
use strict;
use warnings;
use parent qw(Algorithm::Retry);
our %SPEC;
$SPEC{new} = {
v => 1.1,
is_class_meth => 1,
is_func => 0,
args => {
%Algorithm::Retry::attr_consider_actual_delay,
%Algorithm::Retry::attr_max_attempts,
( run in 0.644 second using v1.01-cache-2.11-cpan-a5abf4f5562 )