Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 1 - 10 of 337 for timestamp:[now/d-1d TO *] (0.02 sec)

  1. autodie::hints.txt

    package autodie::hints; use strict; use warnings; use constant PERL58 => ( $] < 5.009 ); our $VERSION = '2.37'; # VERSION: Generated by DZP::OurPkg:Version # ABSTRACT: Provide hints about user subr...
    perldoc.perl.org/autodie::hints.txt
    Registered: Thu Apr 03 23:09:50 UTC 2025
    - 16.7K bytes
    - Viewed (0)
  2. builtin.txt

    package builtin 0.014; use strict; use warnings; # All code, including &import, is implemented by always-present # functions in the perl interpreter itself. # See also `builtin.c` in perl source 1;...
    perldoc.perl.org/builtin.txt
    Registered: Thu Apr 03 22:41:26 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  3. CPAN::Queue.txt

    # -*- Mode: cperl; coding: utf-8; cperl-indent-level: 4 -*- use strict; package CPAN::Queue::Item; # CPAN::Queue::Item::new ; sub new { my($class,@attr) = @_; my $self = bless { @attr }, $class; re...
    perldoc.perl.org/CPAN::Queue.txt
    Registered: Fri Apr 04 01:55:01 UTC 2025
    - 7K bytes
    - Viewed (0)
  4. deprecate.txt

    package deprecate; use strict; use warnings; our $VERSION = 0.04; # our %Config can ignore %Config::Config, e.g. for testing our %Config; unless (%Config) { require Config; *Config = \%Config::Conf...
    perldoc.perl.org/deprecate.txt
    Registered: Thu Apr 03 23:30:23 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  5. filetest.txt

    package filetest; our $VERSION = '1.03'; =head1 NAME filetest - Perl pragma to control the filetest permission operators =head1 SYNOPSIS $can_perhaps_read = -r "file"; # use the mode bits { use fil...
    perldoc.perl.org/filetest.txt
    Registered: Fri Apr 04 00:02:33 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  6. sort.txt

    package sort; use strict; use warnings; our $VERSION = '2.05'; sub import { shift; if (@_ == 0) { require Carp; Carp::croak("sort pragma requires arguments"); } $^H{sort} //= 0; for my $subpragma (...
    perldoc.perl.org/sort.txt
    Registered: Fri Apr 04 01:31:13 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  7. AnyDBM_File.txt

    package AnyDBM_File; use warnings; use strict; use 5.006_001; our $VERSION = '1.01'; our @ISA = qw(NDBM_File DB_File GDBM_File SDBM_File ODBM_File) unless @ISA; my $mod; for $mod (@ISA) { if (eval ...
    perldoc.perl.org/AnyDBM_File.txt
    Registered: Fri Apr 04 01:46:57 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  8. Config::Extensions.txt

    package Config::Extensions; use strict; our (%Extensions, $VERSION, @ISA, @EXPORT_OK); use Config; require Exporter; $VERSION = '0.03'; @ISA = 'Exporter'; @EXPORT_OK = '%Extensions'; foreach my $ty...
    perldoc.perl.org/Config::Extensions.txt
    Registered: Fri Apr 04 00:17:48 UTC 2025
    - 1.3K bytes
    - Viewed (0)
  9. Math::BigInt.txt

    # -*- coding: utf-8-unix -*- package Math::BigInt; # # "Mike had an infinite amount to do and a negative amount of time in which # to do it." - Before and After # # The following hash values are us...
    perldoc.perl.org/Math::BigInt.txt
    Registered: Thu Apr 03 20:28:01 UTC 2025
    - 284.9K bytes
    - Viewed (0)
  10. use.txt

    =over =item use Module VERSION LIST X<use> X<module> X<import> =item use Module VERSION =item use Module LIST =item use Module Imports some semantics into the current package from the named module,...
    perldoc.perl.org/functions/use.txt
    Registered: Thu Apr 03 03:52:45 UTC 2025
    - 7.9K bytes
    - Viewed (0)
Back to top