view release on metacpan or search on metacpan
lib/Device/Firewall/PaloAlto.pm view on Meta::CPAN
ok( $flow, 'Flow was allowed' );
say "Flow hit rule: ".$flow->rulename;
# Add and remove user ID information on the firewall
$fw->user_id->add_ip_mapping('192.0.2.1', 'localdomain\greg.foletta');
# If the module is used in a one liner, fw() sub is exported to make
# it easier to use, and to_json() automatically prints to STDOUT.
bash% perl -MDevice::Firewall::PaloAlto -E 'fw()->op->arp_table->to_json'
lib/Device/Firewall/PaloAlto.pm view on Meta::CPAN
=head2 user_id
Provides access to the L<Device::Firewall::PaloAlto::UserID> module. This module contains subroutines to add and remove dynamic IP to user mappings:
# Add a mapping
$fw->user_id->add_ip_mapping('192.0.2.1', 'localdomain\greg.foletta');
# Remove a mapping
$fw->user_id->rm_ip_mapping('192.0.2.1', 'localdomain\greg.foletta');
Refer to the module documentation for more information.
=head2 test
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Dita/GB/Standard.pm view on Meta::CPAN
searched for content, paste that file name into the L<commandLine> after
entering any command such as B<ll> and then press B<.> followed by the L<tab>
key to have the L<shell> expand it to locate the L<GBStandard> file that
corresponds to the located L<Companion File>. For example:
\\grep -r 'SR-dashboard-ds.png'
png_f940c7db293fe377e7d49c4e0c654cb2: source => "/home/phil/r/pureStorage/docBook/download/OE_User_Guide/SRRBeta/images/screenshots/dashboard/SR-dashboard-ds.png",
ls png_f940c7db293fe377e7d49c4e0c654cb2.png
lib/Dita/GB/Standard.pm view on Meta::CPAN
searched for content, paste that file name into the L<command line|https://en.wikipedia.org/wiki/Command-line_interface> after
entering any command such as B<ll> and then press B<.> followed by the L<tab|https://en.wikipedia.org/wiki/Tab_key>
key to have the L<shell|https://en.wikipedia.org/wiki/Shell_(computing)> expand it to locate the L<GB Standard|http://metacpan.org/pod/Dita::GB::Standard> file that
corresponds to the located L<Companion File>. For example:
\\grep -r 'SR-dashboard-ds.png'
png_f940c7db293fe377e7d49c4e0c654cb2: source => "/home/phil/r/pureStorage/docBook/download/OE_User_Guide/SRRBeta/images/screenshots/dashboard/SR-dashboard-ds.png",
ls png_f940c7db293fe377e7d49c4e0c654cb2.png
view all matches for this distribution
view release on metacpan or search on metacpan
dyncall/doc/manual/manual.tex view on Meta::CPAN
\lstset{frame=tblr}
\lstset{frameround=tttt}
\lstset{basicstyle=\ttfamily}
% text building blocks
\newcommand{\group}[1]{\textit{$<$#1$>$}}
\newcommand{\sigchar}[1]{'{\tt #1}'}
\newcommand{\sigstr}[1]{"{\tt #1}"}
\newcommand{\cenum}[1]{#1}
\newcommand{\product}[1]{\emph{#1}}
view all matches for this distribution
view release on metacpan or search on metacpan
lib/EBook/Generator/Exporter/PDF.pm view on Meta::CPAN
$self->{'log'} = [];
$self->{'handlers'} = {
# garamond shapes:
#
# {\garamond normal}
# {\slshape This is garamond slanted} \\
# {\bfseries This is garamond bold face} \\
# {\scshape This is in small caps} \\
# {\slshape \bfseries This is slanted and bold face} \\
lib/EBook/Generator/Exporter/PDF.pm view on Meta::CPAN
'\usepackage{listings}'."\n".
'\lstset{numbers=left, numberstyle=\tiny, numbersep=5pt} \lstset{language=Perl}'."\n".
'\begin{document}'."\n".
'\garamond'."\n".
'\maketitle'."\n".
'\newpage'."\n".
'\garamond'."\n".
($self->{'has-section'} > 1 ?
'\tableofcontents'."\n".
'\newpage'."\n" : '').
'\garamond'."\n".
$content.
'\end{document}'."\n";
},
'paragraph' => sub {
my ($self, $node) = @_;
view all matches for this distribution
view release on metacpan or search on metacpan
lib/ETL/Yertl/LineStream.pm view on Meta::CPAN
$self->SUPER::configure( %args );
}
sub on_read {
my ( $self, $buffref, $eof ) = @_;
my @lines = $$buffref =~ s{\g(.+$/)}{}g;
for my $line ( @lines ) {
$self->invoke_event( on_line => $line, $eof );
}
return 0;
}
view all matches for this distribution