Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 111 - 120 of 1,197 for timestamp:[now/d-7d TO *] (0.06 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 May 29 21:43:25 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 May 29 22:41:03 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  3. base.txt

    use 5.008; package base; use strict 'vars'; our $VERSION = '2.27'; $VERSION =~ tr/_//d; # simplest way to avoid indexing of the package: no package statement sub base::__inc::unhook { @INC = grep !...
    perldoc.perl.org/base.txt
    Registered: Thu May 29 21:16:02 UTC 2025
    - 10.7K bytes
    - Viewed (0)
  4. sigtrap.txt

    package sigtrap; =head1 NAME sigtrap - Perl pragma to enable simple signal handling =cut use Carp; $VERSION = '1.10'; $Verbose ||= 0; sub import { my $pkg = shift; my $handler = \&handler_traceback...
    perldoc.perl.org/sigtrap.txt
    Registered: Thu May 29 20:17:56 UTC 2025
    - 8.5K bytes
    - Viewed (0)
  5. 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 May 29 20:53:51 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  6. 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: Thu May 29 20:50:10 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  7. ok.txt

    package ok; our $VERSION = '1.302199'; use strict; use Test::More (); sub import { shift; if (@_) { goto &Test::More::pass if $_[0] eq 'ok'; goto &Test::More::use_ok; } # No argument list - croak a...
    perldoc.perl.org/ok.txt
    Registered: Thu May 29 23:12:37 UTC 2025
    - 971 bytes
    - Viewed (0)
  8. DB_File.txt

    # DB_File.pm -- Perl 5 interface to Berkeley DB # # Written by Paul Marquess (pmqs@cpan.org) # # Copyright (c) 1995-2023 Paul Marquess. All rights reserved. # This program is free software; you can...
    perldoc.perl.org/DB_File.txt
    Registered: Fri May 30 04:32:40 UTC 2025
    - 64.9K bytes
    - Viewed (0)
  9. Archive::Tar::File.txt

    package Archive::Tar::File; use strict; use Carp (); use IO::File; use File::Spec::Unix (); use File::Spec (); use File::Basename (); use Archive::Tar::Constant; use vars qw[@ISA $VERSION]; #@ISA =...
    perldoc.perl.org/Archive::Tar::File.txt
    Registered: Thu May 29 23:52:44 UTC 2025
    - 18.4K bytes
    - Viewed (0)
  10. AutoLoader.txt

    package AutoLoader; use strict; use 5.006_001; our($VERSION, $AUTOLOAD); my $is_dosish; my $is_epoc; my $is_vms; my $is_macos; BEGIN { $is_dosish = $^O eq 'dos' || $^O eq 'os2' || $^O eq 'MSWin32' ...
    perldoc.perl.org/AutoLoader.txt
    Registered: Fri May 30 02:53:11 UTC 2025
    - 15.4K bytes
    - Viewed (0)
Back to top