You are here: Home

Modified items

All recently modified items, latest first.
RPMPackage perl-Time-Local-1.300-479.fc36.noarch
This module provides functions that are the inverse of built-in perl functions localtime() and gmtime(). They accept a date as a six-element array, and return the corresponding time(2) value in seconds since the system epoch (Midnight, January 1, 1970 GMT on Unix, for example). This value can be positive or negative, though POSIX only requires support for positive values, so dates before the system's epoch may not work on all operating systems.
RPMPackage perl-Time-HiRes-1.9767-480.fc36.x86_64
The Time::HiRes module implements a Perl interface to the usleep, nanosleep, ualarm, gettimeofday, and setitimer/getitimer system calls, in other words, high resolution time and timers.
RPMPackage perl-Time-1.03-486.fc36.noarch
This package provides an object-oriented interface to Perl built-in gmtime() and localtime () functions.
RPMPackage perl-Tie-RefHash-1.40-479.fc36.noarch
This module provides the ability to use references as hash keys if you first "tie" the hash variable to this module. Normally, only the keys of the tied hash itself are preserved as references; to use references as keys in hashes-of-hashes, use Tie::RefHash::Nestable, included as part of Tie::RefHash.
RPMPackage perl-Tie-Memoize-1.1-486.fc36.noarch
This package allows a tied hash to load its values automatically on the first access, and to use the cached value on the following accesses.
RPMPackage perl-Tie-File-1.06-486.fc36.noarch
Tie::File represents a regular text file as a Perl array. Each element in the array corresponds to a record in the file. The first line of the file is element 0 of the array; the second line is element 1, and so on. The file is not loaded into memory, so this will work even for gigantic files. Changes to the array are reflected in the file immediately.
RPMPackage perl-Tie-Cycle-1.227-2.fc36.noarch
This Perl module can be used to go through a list over and over again. Once you get to the end of the list, you go back to the beginning. You do not have to worry about any of this since the magic of tie does that for you.
RPMPackage perl-Tie-4.6-486.fc36.noarch
These are Perl modules that helps connecting classes with arrays, hashes, handles, and scalars.
RPMPackage perl-Thread-Semaphore-2.13-486.fc36.noarch
Semaphores provide a mechanism to regulate access to resources. Unlike locks, semaphores aren't tied to particular scalars, and so may be used to control access to anything you care to use them for. Semaphores don't limit their values to zero and one, so they can be used to control access to some resource that there may be more than one of (e.g., file handles). Increment and decrement amounts aren't fixed at one either, so threads can reserve or return multiple resources at once.
RPMPackage perl-Thread-Queue-3.14-479.fc36.noarch
This module provides thread-safe FIFO queues that can be accessed safely by any number of threads.
RPMPackage perl-Thread-3.05-486.fc36.noarch
This Thread module served as the front end to the old-style thread model, called 5005threads, that has been removed in version 5.10. For old code and interim backwards compatibility, the Thread module has been reworked to function as a front end for the new interpreter threads (ithreads) model. However, some previous functionality is not available. Further, the data sharing models between the two thread models are completely different, and anything to do with data sharing has to be thought differently. You are strongly encouraged to migrate any existing threaded code to the new model (i.e., use the threads and threads::shared modules) as soon as possible.
RPMPackage perl-Text-Unidecode-1.30-17.fc36.noarch
Text::Unidecode provides a function, `unidecode(...)' that takes Unicode data and tries to represent it in US-ASCII characters (i.e., the universally displayable characters between 0x00 and 0x7F). The representation is almost always an attempt at *transliteration* -- i.e., conveying, in Roman letters, the pronunciation expressed by the text in some other writing system.
RPMPackage perl-Text-Tabs+Wrap-2021.0814-2.fc36.noarch
Text::Tabs performs the same job that the UNIX expand(1) and unexpand(1) commands do: adding or removing tabs from a document. Text::Wrap::wrap() will reformat lines into paragraphs. All it does is break up long lines, it will not join short lines together.
RPMPackage perl-Text-Soundex-3.05-21.fc36.x86_64
Soundex is a phonetic algorithm for indexing names by sound, as pronounced in English. This module implements the original soundex algorithm developed by Robert Russell and Margaret Odell, as well as a variation called "American Soundex".
RPMPackage perl-Text-Roman-3.5-21.fc36.noarch
This package supports both conventional Roman algorisms (which range from 1 to 3999) and Milhar Romans, a variation which uses a bar across the algorism to indicate multiplication by 1000.
RPMPackage perl-Text-Patch-1.8-30.fc36.noarch
Text::Patch combines source text with given diff (difference) data. Diff data is produced by Text::Diff module or by the standard diff utility (man diff, see -u option).
RPMPackage perl-Text-ParseWords-3.31-1.fc36.noarch
The nested_quotewords() and quotewords() functions accept a delimiter (which can be a regular expression) and a list of lines and then breaks those lines up into a list of words ignoring delimiters that appear inside quotes. quotewords() returns all of the tokens in a single long list, while nested_quotewords() returns a list of token lists corresponding to the elements of @lines. parse_line() does tokenizing on a single string. The quotewords() functions simply call parse_line(), so if you're only splitting one line you can call parse_line() directly and save a function call.
RPMPackage perl-Text-Glob-0.11-16.fc36.noarch
Text::Glob implements glob(3) style matching that can be used to match against text, rather than fetching names from a file-system. If you want to do full file globbing use the File::Glob module instead.
RPMPackage perl-Text-Format-0.62-5.fc36.noarch
The format routine will format under all circumstances even if the width isn't enough to contain the longest words. Text::Wrap will die under these circumstances, although I am told this is fixed. If columns is set to a small number and words are longer than that and the leading 'whitespace' than there will be a single word on each line. This will let you make a simple word list which could be indented or right aligned. There is a chance for croaking if you try to subvert the module. If you don't pass in text then the internal text is worked on, though not modified. Text::Format is meant for more powerful text formatting than Text::Wrap allows.
RPMPackage perl-Text-ExtractWords-0.08-29.fc36.x86_64
Extract words from texts or emails, for example to identify spam.