Algorithm-Backoff

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

            "Test::Pod::Coverage" : "1.08",
            "Test::Rinci" : "0.151"
         },
         "x_spec" : {
            "Rinci" : "v1.1.102"
         }
      },
      "runtime" : {
         "requires" : {
            "Time::HiRes" : "0",
            "parent" : "0",
            "perl" : "5.010001",
            "strict" : "0",
            "warnings" : "0"
         }
      },
      "test" : {
         "requires" : {
            "File::Spec" : "0",
            "IO::Handle" : "0",
            "IPC::Open3" : "0",

META.yml  view on Meta::CPAN

    file: lib/Algorithm/Backoff/LIMD.pm
    version: '0.010'
  Algorithm::Backoff::MILD:
    file: lib/Algorithm/Backoff/MILD.pm
    version: '0.010'
  Algorithm::Backoff::MIMD:
    file: lib/Algorithm/Backoff/MIMD.pm
    version: '0.010'
requires:
  Time::HiRes: '0'
  parent: '0'
  perl: '5.010001'
  strict: '0'
  warnings: '0'
resources:
  bugtracker: https://rt.cpan.org/Public/Dist/Display.html?Name=Algorithm-Backoff
  homepage: https://metacpan.org/release/Algorithm-Backoff
  repository: git://github.com/perlancar/perl-Algorithm-Backoff.git
version: '0.010'
x_Dist_Zilla:
  perl:

Makefile.PL  view on Meta::CPAN

  "AUTHOR" => "perlancar <perlancar\@cpan.org>",
  "CONFIGURE_REQUIRES" => {
    "ExtUtils::MakeMaker" => 0
  },
  "DISTNAME" => "Algorithm-Backoff",
  "LICENSE" => "perl",
  "MIN_PERL_VERSION" => "5.010001",
  "NAME" => "Algorithm::Backoff",
  "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;
}

dist.ini  view on Meta::CPAN

[@Author::PERLANCAR]
:version=0.610

[Prereqs / TestRequires]
Test::Exception=0
Test::More=0.98
Test::Number::Delta=0

[Prereqs]
perl=5.010001
parent=0
strict=0
warnings=0
Time::HiRes=0

[Prereqs / DevelopX_spec]
-phase=develop
-relationship=x_spec
Rinci=1.1.102

lib/Algorithm/Backoff/Constant.pm  view on Meta::CPAN

package Algorithm::Backoff::Constant;

use strict;
use warnings;

use parent qw(Algorithm::Backoff);

our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY
our $DATE = '2024-02-24'; # DATE
our $DIST = 'Algorithm-Backoff'; # DIST
our $VERSION = '0.010'; # VERSION

our %SPEC;

$SPEC{new} = {
    v => 1.1,

lib/Algorithm/Backoff/Exponential.pm  view on Meta::CPAN

package Algorithm::Backoff::Exponential;

use strict;
use warnings;

use parent qw(Algorithm::Backoff);

our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY
our $DATE = '2024-02-24'; # DATE
our $DIST = 'Algorithm-Backoff'; # DIST
our $VERSION = '0.010'; # VERSION

our %SPEC;

$SPEC{new} = {
    v => 1.1,

lib/Algorithm/Backoff/Fibonacci.pm  view on Meta::CPAN

package Algorithm::Backoff::Fibonacci;

use strict;
use warnings;

use parent qw(Algorithm::Backoff);

our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY
our $DATE = '2024-02-24'; # DATE
our $DIST = 'Algorithm-Backoff'; # DIST
our $VERSION = '0.010'; # VERSION

our %SPEC;

$SPEC{new} = {
    v => 1.1,

lib/Algorithm/Backoff/LILD.pm  view on Meta::CPAN

package Algorithm::Backoff::LILD;

use strict;
use warnings;

use parent qw(Algorithm::Backoff);

our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY
our $DATE = '2024-02-24'; # DATE
our $DIST = 'Algorithm-Backoff'; # DIST
our $VERSION = '0.010'; # VERSION

our %SPEC;

$SPEC{new} = {
    v => 1.1,

lib/Algorithm/Backoff/LIMD.pm  view on Meta::CPAN

package Algorithm::Backoff::LIMD;

use strict;
use warnings;

use parent qw(Algorithm::Backoff);

our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY
our $DATE = '2024-02-24'; # DATE
our $DIST = 'Algorithm-Backoff'; # DIST
our $VERSION = '0.010'; # VERSION

our %SPEC;

$SPEC{new} = {
    v => 1.1,

lib/Algorithm/Backoff/MILD.pm  view on Meta::CPAN

package Algorithm::Backoff::MILD;

use strict;
use warnings;

use parent qw(Algorithm::Backoff);

our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY
our $DATE = '2024-02-24'; # DATE
our $DIST = 'Algorithm-Backoff'; # DIST
our $VERSION = '0.010'; # VERSION

our %SPEC;

$SPEC{new} = {
    v => 1.1,

lib/Algorithm/Backoff/MIMD.pm  view on Meta::CPAN

package Algorithm::Backoff::MIMD;

use strict;
use warnings;

use parent qw(Algorithm::Backoff);

our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY
our $DATE = '2024-02-24'; # DATE
our $DIST = 'Algorithm-Backoff'; # DIST
our $VERSION = '0.010'; # VERSION

our %SPEC;

$SPEC{new} = {
    v => 1.1,



( run in 0.541 second using v1.01-cache-2.11-cpan-a5abf4f5562 )