TAP::Parser::Source - a TAP source & meta data about it

NAME VERSION SYNOPSIS DESCRIPTION METHODSClass Methods Instance Methods AUTHORS SEE ALSO NAME TAP::Parser::Source - a TAP source & meta data about it VERSION Version 3.35 SYNOPSIS use TAP::Parser::Source; my $source = TAP::Parser::Source->new; $source->raw( \'reference to raw TAP source' ) ->config( \%config ) ->merge( $boolean ) ->switches( \@switches ) ->test_args( \@args ) ->assemble_meta; do { ... } if $source->meta->{is

format

format Declare a picture format for use by the write function. For example: format Something = Test: @<<<<<<<< @||||| @>>>>> $str, $%, '$' . int($num) . $str = "widget"; $num = $cost/$quantity; $~ = 'Something'; write; See perlform for many details and examples.

Sys::Hostname - Try every conceivable way to get hostname

NAME SYNOPSIS DESCRIPTION AUTHOR NAME Sys::Hostname - Try every conceivable way to get hostname SYNOPSIS use Sys::Hostname; $host = hostname; DESCRIPTION Attempts several methods of getting the system hostname and then caches the result. It tries the first available of the C library's gethostname(), `$Config{aphostname}` , uname(2), syscall(SYS_gethostname), `hostname` , `uname -n` , and the file /com/host. If all that fails it croak s. All NULs, returns, and newlines are removed from the re

getservbyname

getservbyname NAME,PROTO

ExtUtils::MM_Win95 - method to customize MakeMaker for Win9X

NAME SYNOPSIS DESCRIPTIONOverridden methods AUTHOR NAME ExtUtils::MM_Win95 - method to customize MakeMaker for Win9X SYNOPSIS You should not be using this module directly. DESCRIPTION This is a subclass of ExtUtils::MM_Win32 containing changes necessary to get MakeMaker playing nice with command.com and other Win9Xisms. Overridden methods Most of these make up for limitations in the Win9x/nmake command shell. Mostly its lack of &&. xs_c The && problem. xs_cpp The &&am

$(

$( The real gid of this process. If you are on a machine that supports membership in multiple groups simultaneously, gives a space separated list of groups you are in. The first number is the one returned by getgid() , and the subsequent ones by getgroups() , one of which may be the same as the first number. However, a value assigned to $( must be a single number used to set the real gid. So the value given by $( should not be assigned back to $( without being forced numeric, such as by adding

perlhaiku - Perl version 5.10+ on Haiku

NAME DESCRIPTION BUILD AND INSTALL KNOWN PROBLEMS CONTACT NAME perlhaiku - Perl version 5.10+ on Haiku DESCRIPTION This file contains instructions how to build Perl for Haiku and lists known problems. BUILD AND INSTALL The build procedure is completely standard: ./Configure -de make make install Make perl executable and create a symlink for libperl: chmod a+x /boot/common/bin/perl cd /boot/common/lib; ln -s perl5/5.22.0/BePC-haiku/CORE/libperl.so . Replace 5.22.0 with your respective versio

perldbmfilter - Perl DBM Filters

NAME SYNOPSIS DESCRIPTIONThe Filter An Example: the NULL termination problem. Another Example: Key is a C int. SEE ALSO AUTHOR NAME perldbmfilter - Perl DBM Filters SYNOPSIS $db = tie %hash, 'DBM', ... $old_filter = $db->filter_store_key ( sub { ... } ); $old_filter = $db->filter_store_value( sub { ... } ); $old_filter = $db->filter_fetch_key ( sub { ... } ); $old_filter = $db->filter_fetch_value( sub { ... } ); DESCRIPTION The four filter_* methods shown above are available

Net::FTP::dataconn - FTP Client data connection class

NAME DESCRIPTION NAME Net::FTP::dataconn - FTP Client data connection class DESCRIPTION Some of the methods defined in Net::FTP return an object which will be derived from this class. The dataconn class itself is derived from the IO::Socket::INET class, so any normal IO operations can be performed. However the following methods are defined in the dataconn class and IO should be performed using these. read ( BUFFER, SIZE [, TIMEOUT ] ) Read SIZE bytes of data from the server and place it into

DBM_Filter::encode - filter for DBM_Filter

NAME SYNOPSIS DESCRIPTION SEE ALSO AUTHOR NAME DBM_Filter::encode - filter for DBM_Filter SYNOPSIS use SDBM_File; # or DB_File, GDBM_File, NDBM_File, ODBM_File use DBM_Filter ; $db = tie %hash, ... $db->Filter_Push('encode' => 'iso-8859-16'); DESCRIPTION This DBM filter allows you to choose the character encoding will be store in the DBM file. The usage is $db->Filter_Push('encode' => ENCODING); where "ENCODING" must be a valid encoding name that the Encode module recognises. A