SILENT KILLERPanel

Current Path: > > usr > share > perl5 > > vendor_perl > Pod > Simple >


Operation   : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
Software     : Apache
Server IP    : 162.0.232.56 | Your IP: 216.73.216.111
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: //usr/share/perl5//vendor_perl/Pod/Simple/

NameTypeSizeLast ModifiedActions
BlackBox.pm File 72598 bytes November 29 2016 23:14:16.
Checker.pm File 5339 bytes November 29 2016 23:14:16.
Debug.pm File 4625 bytes November 29 2016 23:14:16.
DumpAsText.pm File 4035 bytes November 29 2016 23:14:16.
DumpAsXML.pm File 4560 bytes November 29 2016 23:14:16.
HTML.pm File 34614 bytes November 29 2016 23:14:16.
HTMLBatch.pm File 40144 bytes November 29 2016 23:14:16.
HTMLLegacy.pm File 2758 bytes November 29 2016 23:14:16.
LinkSection.pm File 4344 bytes November 29 2016 23:14:16.
Methody.pm File 3571 bytes November 29 2016 23:14:16.
Progress.pm File 2413 bytes November 29 2016 23:14:16.
PullParser.pm File 25729 bytes November 29 2016 23:14:16.
PullParserEndToken.pm File 2884 bytes November 29 2016 23:14:16.
PullParserStartToken.pm File 4146 bytes November 29 2016 23:14:16.
PullParserTextToken.pm File 3363 bytes November 29 2016 23:14:16.
PullParserToken.pm File 4004 bytes November 29 2016 23:14:16.
RTF.pm File 22484 bytes November 29 2016 23:14:16.
Search.pm File 35108 bytes November 29 2016 23:14:16.
SimpleTree.pm File 4632 bytes November 29 2016 23:14:16.
Subclassing.pod File 33294 bytes November 29 2016 23:14:16.
Text.pm File 5103 bytes November 29 2016 23:14:16.
TextContent.pm File 2518 bytes November 29 2016 23:14:16.
TiedOutFH.pm File 2751 bytes November 29 2016 23:14:16.
Transcode.pm File 736 bytes November 29 2016 23:14:16.
TranscodeDumb.pm File 2693 bytes November 29 2016 23:14:16.
TranscodeSmart.pm File 715 bytes November 29 2016 23:14:16.
XHTML.pm File 26400 bytes November 29 2016 23:14:16.
XMLOutStream.pm File 4666 bytes November 29 2016 23:14:16.

Reading File: //usr/share/perl5//vendor_perl/Pod/Simple//Progress.pm

require 5;
package Pod::Simple::Progress;
$VERSION = '3.35';
use strict;

# Objects of this class are used for noting progress of an
#  operation every so often.  Messages delivered more often than that
#  are suppressed.
#
# There's actually nothing in here that's specific to Pod processing;
#  but it's ad-hoc enough that I'm not willing to give it a name that
#  implies that it's generally useful, like "IO::Progress" or something.
#
# -- sburke
#
#--------------------------------------------------------------------------

sub new {
  my($class,$delay) = @_;
  my $self = bless {'quiet_until' => 1},  ref($class) || $class;
  $self->to(*STDOUT{IO});
  $self->delay(defined($delay) ? $delay : 5);
  return $self;
}

sub copy { 
  my $orig = shift;
  bless {%$orig, 'quiet_until' => 1}, ref($orig);
}
#--------------------------------------------------------------------------

sub reach {
  my($self, $point, $note) = @_;
  if( (my $now = time) >= $self->{'quiet_until'}) {
    my $goal;
    my    $to = $self->{'to'};
    print $to join('',
      ($self->{'quiet_until'} == 1) ? () : '... ',
      (defined $point) ? (
        '#',
        ($goal = $self->{'goal'}) ? (
          ' ' x (length($goal) - length($point)),
          $point, '/', $goal,
        ) : $point,
        $note ? ': ' : (),
      ) : (),
      $note || '',
      "\n"
    );
    $self->{'quiet_until'} = $now + $self->{'delay'};
  }
  return $self;
}

#--------------------------------------------------------------------------

sub done {
  my($self, $note) = @_;
  $self->{'quiet_until'} = 1;
  return $self->reach( undef, $note );
}

#--------------------------------------------------------------------------
# Simple accessors:

sub delay {
  return $_[0]{'delay'} if @_ == 1; $_[0]{'delay'} = $_[1]; return $_[0] }
sub goal {
  return $_[0]{'goal' } if @_ == 1; $_[0]{'goal' } = $_[1]; return $_[0] }
sub to   {
  return $_[0]{'to'   } if @_ == 1; $_[0]{'to'   } = $_[1]; return $_[0] }

#--------------------------------------------------------------------------

unless(caller) { # Simple self-test:
  my $p = __PACKAGE__->new->goal(5);
  $p->reach(1, "Primus!");
  sleep 1;
  $p->reach(2, "Secundus!");
  sleep 3;
  $p->reach(3, "Tertius!");
  sleep 5;
  $p->reach(4);
  $p->reach(5, "Quintus!");
  sleep 1;
  $p->done("All done");
}

#--------------------------------------------------------------------------
1;
__END__


SILENT KILLER Tool