Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Popular Words: test ใƒ†ใ‚นใƒˆ

Results 1 - 10 of 790 for label:perl (0.02 sec)

  1. Pod::Simple::DumpAsText.txt

    require 5; package Pod::Simple::DumpAsText; $VERSION = '3.43'; use Pod::Simple (); BEGIN {@ISA = ('Pod::Simple')} use strict; use Carp (); BEGIN { *DEBUG = \&Pod::Simple::DEBUG unless defined &DEBU...
    perldoc.perl.org/Pod::Simple::DumpAsText.txt
    Registered: Sun Apr 28 11:38:59 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. 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: Mon May 06 05:13:37 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. B::Terse.txt

    package B::Terse; our $VERSION = '1.09'; use strict; use B qw(class @specialsv_name); use B::Concise qw(concise_subref set_style_standard); use Carp; sub terse { my ($order, $subref) = @_; set_styl...
    perldoc.perl.org/B::Terse.txt
    Registered: Mon May 06 06:54:22 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. 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: Mon May 06 07:18:19 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. ok.txt

    package ok; our $VERSION = '1.302194'; 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: Mon May 06 08:36:19 UTC 2024
    - 967 bytes
    - Viewed (2)
  6. DBM_Filter::null.txt

    package DBM_Filter::null ; use strict; use warnings; our $VERSION = '0.03'; sub Store { no warnings 'uninitialized'; $_ .= "\x00" ; } sub Fetch { no warnings 'uninitialized'; s/\x00$// ; } 1; __END...
    perldoc.perl.org/DBM_Filter::null.txt
    Registered: Mon May 06 07:54:20 UTC 2024
    - 967 bytes
    - Viewed (0)
  7. DBM_Filter::compress.txt

    package DBM_Filter::compress ; use strict; use warnings; use Carp; our $VERSION = '0.03'; BEGIN { eval { require Compress::Zlib; Compress::Zlib->import() }; croak "Compress::Zlib module not found.\...
    perldoc.perl.org/DBM_Filter::compress.txt
    Registered: Mon May 06 07:46:00 UTC 2024
    - 854 bytes
    - Viewed (0)
  8. Errno.txt

    # -*- buffer-read-only: t -*- # # This file is auto-generated by ext/Errno/Errno_pm.PL. # ***ANY*** changes here will be lost. # package Errno; use Exporter 'import'; use strict; use Config; "$Conf...
    perldoc.perl.org/Errno.txt
    Registered: Tue May 07 02:47:55 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. ExtUtils::MakeMaker::Tutorial.txt

    package ExtUtils::MakeMaker::Tutorial; our $VERSION = '7.70'; $VERSION =~ tr/_//d; =head1 NAME ExtUtils::MakeMaker::Tutorial - Writing a module with MakeMaker =head1 SYNOPSIS use ExtUtils::MakeMake...
    perldoc.perl.org/ExtUtils::MakeMaker::Tutorial.txt
    Registered: Tue May 07 04:01:46 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. IO::File.txt

    # package IO::File; =head1 NAME IO::File - supply object methods for filehandles =head1 SYNOPSIS use IO::File; my $fh = IO::File->new(); if ($fh->open("< file")) { print <$fh>; $fh->close; } my $fh...
    perldoc.perl.org/IO::File.txt
    Registered: Tue May 07 04:56:00 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top