How to Install and Uninstall perl-Time-Out Package on openSuSE Tumbleweed

Last updated: July 02,2024

1. Install "perl-Time-Out" package

Please follow the step by step instructions below to install perl-Time-Out on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install perl-Time-Out

2. Uninstall "perl-Time-Out" package

In this section, we are going to explain the necessary steps to uninstall perl-Time-Out on openSuSE Tumbleweed:

$ sudo zypper remove perl-Time-Out

3. Information about the perl-Time-Out package on openSuSE Tumbleweed

Information for package perl-Time-Out:
--------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-Time-Out
Version : 0.240.0-2.1
Arch : noarch
Vendor : openSUSE
Installed Size : 31.0 KiB
Installed : No
Status : not installed
Source package : perl-Time-Out-0.240.0-2.1.src
Upstream URL : https://metacpan.org/release/Time-Out
Summary : Easily timeout long running operations
Description :
The 'Time::Out' module provides an easy interface to alarm(2) based
timeouts. Nested timeouts are supported. The module exports the 'timeout()'
function by default. The function returns whatever the code placed inside
the subroutine reference returns:
use Time::Out qw( timeout );
my $result = timeout 5 => sub {
return 7;
};
If 'Time::Out' sees that Time::HiRes has been loaded, it will use that
'alarm()' function (if available) instead of the default one, allowing
float timeout values to be used effectively:
use Time::HiRes qw();
use Time::Out qw( timeout );
timeout 3.1416 => sub {
};