view release on metacpan or search on metacpan
libcares/ares_destroy.3
libcares/ares_destroy.c
libcares/ares_destroy_options.3
libcares/ares_dns.h
libcares/ares_dup.3
libcares/ares_expand_name.3
libcares/ares_expand_name.c
libcares/ares_expand_string.3
libcares/ares_expand_string.c
libcares/ares_fds.3
libcares/ares_fds.c
libcares/ares_free_data.3
libcares/ares_free_hostent.3
libcares/ares_free_hostent.c
view all matches for this distribution
view release on metacpan or search on metacpan
src/catch.hpp view on Meta::CPAN
struct ITagAliasRegistry {
virtual ~ITagAliasRegistry();
// Nullptr if not present
virtual TagAlias const* find( std::string const& alias ) const = 0;
virtual std::string expandAliases( std::string const& unexpandedTestSpec ) const = 0;
static ITagAliasRegistry const& get();
};
} // end namespace Catch
src/catch.hpp view on Meta::CPAN
bool assertionEnded(AssertionStats const& assertionStats) override {
assert(!m_sectionStack.empty());
// AssertionResult holds a pointer to a temporary DecomposedExpression,
// which getExpandedExpression() calls to build the expression string.
// Our section stack copy of the assertionResult will likely outlive the
// temporary, so it must be expanded or discarded now to avoid calling
// a destroyed object later.
prepareExpandedExpression(const_cast<AssertionResult&>( assertionStats.assertionResult ) );
SectionNode& sectionNode = *m_sectionStack.back();
sectionNode.assertions.push_back(assertionStats);
return true;
src/catch.hpp view on Meta::CPAN
class TagAliasRegistry : public ITagAliasRegistry {
public:
~TagAliasRegistry() override;
TagAlias const* find( std::string const& alias ) const override;
std::string expandAliases( std::string const& unexpandedTestSpec ) const override;
void add( std::string const& alias, std::string const& tag, SourceLineInfo const& lineInfo );
private:
std::map<std::string, TagAlias> m_registry;
};
src/catch.hpp view on Meta::CPAN
return &(it->second);
else
return nullptr;
}
std::string TagAliasRegistry::expandAliases( std::string const& unexpandedTestSpec ) const {
std::string expandedTestSpec = unexpandedTestSpec;
for( auto const& registryKvp : m_registry ) {
std::size_t pos = expandedTestSpec.find( registryKvp.first );
if( pos != std::string::npos ) {
expandedTestSpec = expandedTestSpec.substr( 0, pos ) +
registryKvp.second.tag +
expandedTestSpec.substr( pos + registryKvp.first.size() );
}
}
return expandedTestSpec;
}
void TagAliasRegistry::add( std::string const& alias, std::string const& tag, SourceLineInfo const& lineInfo ) {
CATCH_ENFORCE( startsWith(alias, "[@") && endsWith(alias, ']'),
"error: tag alias, '" << alias << "' is not of the form [@alias name].\n" << lineInfo );
src/catch.hpp view on Meta::CPAN
TestSpecParser& TestSpecParser::parse( std::string const& arg ) {
m_mode = None;
m_exclusion = false;
m_start = std::string::npos;
m_arg = m_tagAliases->expandAliases( arg );
m_escapeChars.clear();
for( m_pos = 0; m_pos < m_arg.size(); ++m_pos )
visitChar( m_arg[m_pos] );
if( m_mode == Name )
addPattern<TestSpec::NamePattern>();
view all matches for this distribution
view release on metacpan or search on metacpan
patch/flex-2.6.4.diff view on Meta::CPAN
- if test -z "$SED"; then
- ac_path_SED_found=false
- # Loop through the user's path and test for each of PROGNAME-LIST
- as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-for as_dir in $PATH
+ # Double quotes because CPP needs to be expanded
+ for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp"
+ do
+ ac_preproc_ok=false
+for ac_c_preproc_warn_flag in '' yes
do
patch/flex-2.6.4.diff view on Meta::CPAN
-fi
-if test -z "$CPP"; then
- if ${ac_cv_prog_CPP+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- # Double quotes because CPP needs to be expanded
- for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp"
- do
- ac_preproc_ok=false
-for ac_c_preproc_warn_flag in '' yes
-do
patch/flex-2.6.4.diff view on Meta::CPAN
+}
for ac_header in dlfcn.h
do :
@@ -11494,7 +11553,7 @@ CC=$lt_save_CC
# Only expand once:
-am__api_version='1.15'
+am__api_version='1.16'
patch/flex-2.6.4.diff view on Meta::CPAN
+++ b/src/ccl.c
@@ -73,6 +73,13 @@ void ccladd (int cclp, int ch)
newpos = ind + len;
+ /* For a non-last cclp, expanding the set will overflow and overwrite a
+ * char in the next cclp.
+ * FIXME: Need another allocation scheme for ccl's. */
+ if (cclp != lastccl) {
+ flexfatal(_("internal error: trying to add a char to a non-last ccl.\n"));
+ }
view all matches for this distribution
view release on metacpan or search on metacpan
libsecp256k1/build/CMakeFiles/CMakeOutput.log view on Meta::CPAN
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_f6fbd.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_f6fbd.dir/'
/usr/libexec/gcc/x86_64-slackware-linux/11.2.0/cc1 -quiet -v /usr/share/cmake-3.21/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_f6fbd.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=x86-64 -version -o /tmp/...
GNU C17 (GCC) version 11.2.0 (x86_64-slackware-linux)
compiled by GNU C version 11.2.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
ignoring nonexistent directory "/usr/lib64/gcc/x86_64-slackware-linux/11.2.0/../../../../x86_64-slackware-linux/include"
#include "..." search starts here:
#include <...> search starts here:
/usr/lib64/gcc/x86_64-slackware-linux/11.2.0/include
/usr/local/include
libsecp256k1/build/CMakeFiles/CMakeOutput.log view on Meta::CPAN
/usr/include
End of search list.
GNU C17 (GCC) version 11.2.0 (x86_64-slackware-linux)
compiled by GNU C version 11.2.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
Compiler executable checksum: ea079ab2d42d4201c0dfe2a35a43a2b8
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_f6fbd.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_f6fbd.dir/'
as -v --64 -o CMakeFiles/cmTC_f6fbd.dir/CMakeCCompilerABI.c.o /tmp/ccZLbOg3.s
GNU assembler version 2.37 (x86_64-slackware-linux) using BFD version version 2.37-slack15
COMPILER_PATH=/usr/libexec/gcc/x86_64-slackware-linux/11.2.0/:/usr/libexec/gcc/x86_64-slackware-linux/11.2.0/:/usr/libexec/gcc/x86_64-slackware-linux/:/usr/lib64/gcc/x86_64-slackware-linux/11.2.0/:/usr/lib64/gcc/x86_64-slackware-linux/:/usr/lib64/gcc...
libsecp256k1/build/CMakeFiles/CMakeOutput.log view on Meta::CPAN
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_f6fbd.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_f6fbd.dir/']
ignore line: [ /usr/libexec/gcc/x86_64-slackware-linux/11.2.0/cc1 -quiet -v /usr/share/cmake-3.21/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_f6fbd.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=x86-64 -...
ignore line: [GNU C17 (GCC) version 11.2.0 (x86_64-slackware-linux)]
ignore line: [ compiled by GNU C version 11.2.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP]
ignore line: []
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
ignore line: [ignoring nonexistent directory "/usr/lib64/gcc/x86_64-slackware-linux/11.2.0/../../../../x86_64-slackware-linux/include"]
ignore line: [#include "..." search starts here:]
ignore line: [#include <...> search starts here:]
ignore line: [ /usr/lib64/gcc/x86_64-slackware-linux/11.2.0/include]
ignore line: [ /usr/local/include]
libsecp256k1/build/CMakeFiles/CMakeOutput.log view on Meta::CPAN
ignore line: [ /usr/include]
ignore line: [End of search list.]
ignore line: [GNU C17 (GCC) version 11.2.0 (x86_64-slackware-linux)]
ignore line: [ compiled by GNU C version 11.2.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP]
ignore line: []
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
ignore line: [Compiler executable checksum: ea079ab2d42d4201c0dfe2a35a43a2b8]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_f6fbd.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_f6fbd.dir/']
ignore line: [ as -v --64 -o CMakeFiles/cmTC_f6fbd.dir/CMakeCCompilerABI.c.o /tmp/ccZLbOg3.s]
ignore line: [GNU assembler version 2.37 (x86_64-slackware-linux) using BFD version version 2.37-slack15]
ignore line: [COMPILER_PATH=/usr/libexec/gcc/x86_64-slackware-linux/11.2.0/:/usr/libexec/gcc/x86_64-slackware-linux/11.2.0/:/usr/libexec/gcc/x86_64-slackware-linux/:/usr/lib64/gcc/x86_64-slackware-linux/11.2.0/:/usr/lib64/gcc/x86_64-slackware-linux...
view all matches for this distribution
view release on metacpan or search on metacpan
.claude/agents/alien-libssh-worker.md view on Meta::CPAN
Implement, refactor, debug and test everything in this distribution. The
conventions above are non-negotiable â apply silently, do not restate.
Coordinate work via `karr`: pick tickets from the local board, and record drift
you find as new tickets rather than expanding scope mid-change.
## What lives in this agent (and in no skill)
- **Single repo, single distribution.** No family coordination. Work that
belongs to `Net::LibSSH` becomes a ticket on `~/dev/p5-net-libssh`'s board â
view all matches for this distribution
view release on metacpan or search on metacpan
Makefile.PL view on Meta::CPAN
# Save this 'cause CPAN will chdir all over the place.
my $cwd = Cwd::cwd();
CPAN::Shell->install('Module::Build::Compat');
CPAN::Shell->expand("Module", "Module::Build::Compat")->uptodate
or die "Couldn't install Module::Build, giving up.\n";
chdir $cwd or die "Cannot chdir() back to $cwd: $!";
}
eval "use Module::Build::Compat 0.02; 1" or die $@;
view all matches for this distribution
view release on metacpan or search on metacpan
libuv/ChangeLog view on Meta::CPAN
* zos: use pthread helper functions (John Barboza)
* zos: implement uv__fs_futime (John Barboza)
* unix: expand range of values for usleep (John Barboza)
* zos: track unbound handles and bind before listen (John Barboza)
* test: improve tap output on test failures (Santiago Gimeno)
view all matches for this distribution
view release on metacpan or search on metacpan
inc/inc_Archive-Extract/Archive/Extract.pm view on Meta::CPAN
# Local variables:
# c-indentation-style: bsd
# c-basic-offset: 4
# indent-tabs-mode: nil
# End:
# vim: expandtab shiftwidth=4:
view all matches for this distribution
view release on metacpan or search on metacpan
Makefile.PL view on Meta::CPAN
# Save this 'cause CPAN will chdir all over the place.
my $cwd = Cwd::cwd();
CPAN::Shell->install('Module::Build::Compat');
CPAN::Shell->expand("Module", "Module::Build::Compat")->uptodate
or die "Couldn't install Module::Build, giving up.\n";
chdir $cwd or die "Cannot chdir() back to $cwd: $!";
}
eval "use Module::Build::Compat 0.02; 1" or die $@;
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/AllKnowingDNS/Config.pm view on Meta::CPAN
# vim:ts=4:sw=4:expandtab
package App::AllKnowingDNS::Config;
use Mouse;
use App::AllKnowingDNS::Zone;
use App::AllKnowingDNS::Util;
view all matches for this distribution
view release on metacpan or search on metacpan
inc/Inline/denter.pm view on Meta::CPAN
my $o = shift;
$o->{done}++, $o->{level} = -1, return unless @{$o->{lines}};
my ($width, $tabwidth) = @{$o}{qw(width tabwidth)};
while (1) {
local $_ = $o->{lines}[0];
# expand tabs in leading whitespace;
$o->next_line, next if /^(\s*$|\#)/; # skip comments and blank lines
while (s{^( *)(\t+)}
{' ' x (length($1) + length($2) * $tabwidth -
length($1) % $tabwidth)}e){}
croak $o->M01_invalid_indent_width unless /^(( {$width})*)(\S.*)$/;
view all matches for this distribution
view release on metacpan or search on metacpan
inc/Inline/denter.pm view on Meta::CPAN
my $o = shift;
$o->{done}++, $o->{level} = -1, return unless @{$o->{lines}};
my ($width, $tabwidth) = @{$o}{qw(width tabwidth)};
while (1) {
local $_ = $o->{lines}[0];
# expand tabs in leading whitespace;
$o->next_line, next if /^(\s*$|\#)/; # skip comments and blank lines
while (s{^( *)(\t+)}
{' ' x (length($1) + length($2) * $tabwidth -
length($1) % $tabwidth)}e){}
croak $o->M01_invalid_indent_width unless /^(( {$width})*)(\S.*)$/;
view all matches for this distribution
view release on metacpan or search on metacpan
inc/Inline/denter.pm view on Meta::CPAN
my $o = shift;
$o->{done}++, $o->{level} = -1, return unless @{$o->{lines}};
my ($width, $tabwidth) = @{$o}{qw(width tabwidth)};
while (1) {
local $_ = $o->{lines}[0];
# expand tabs in leading whitespace;
$o->next_line, next if /^(\s*$|\#)/; # skip comments and blank lines
while (s{^( *)(\t+)}
{' ' x (length($1) + length($2) * $tabwidth -
length($1) % $tabwidth)}e){}
croak $o->M01_invalid_indent_width unless /^(( {$width})*)(\S.*)$/;
view all matches for this distribution
view release on metacpan or search on metacpan
lib/CWB/CL.pm view on Meta::CPAN
# Feature sets (used as values of CWB::CL::Attribute and CWB::CL::AttStruc)
$np_f = $corpus->attribute("np_feat", 's'); # p- and s-attributes can store feature sets
$fs_string = $np_f->cpos2str($cpos); # feature sets are encoded as strings
$fs = CL::set2hash($fs_string); # expand feature set into hash (reference)
if (exists $fs->{"paren"}) { ... {}
$fs1 = CWB::CL::make_set("|proper|nogen|"); # validate feature set or construct from string
$fs2 = CWB::CL::make_set("paren nogen proper", 'split');
$fs = CWB::CL::set_intersection($fs1, $fs2); # intersection of feature set values
$n = CWB::CL::set_size($fs); # size of feature set
view all matches for this distribution
view release on metacpan or search on metacpan
lib/CWB/CEQL.pm view on Meta::CPAN
A proximity query searches for combinations of words within a certain distance
of each other, specified either as a number of tokens (I<numeric distance>) or
as co-occurrence within an s-attribute region (I<structural distance>). The
C<proximity_query> rule splits its input into a sequence of token patterns,
distance operators and parentheses used for grouping. Shorthand notation for
word sequences is expanded (e.g. C<as long as> into C<<< as >>1>> long >>2>>
as >>>), and then the C<proximity_expression> rule is applied to each item in
turn. A shift-reduce algorithm in C<proximity_expression> reduces the
resulting list into a single CQP query (using the undocumented "MU" notation).
=cut
lib/CWB/CEQL.pm view on Meta::CPAN
my @items = split /\s*\t\s*/, $input; # split on TABs into proximity operators, parentheses, token expressions (removes extra whitespace)
# pre-process shorthand notation for word sequences (such as "as long as")
@items = map {
if (/\s/) {
my @shorthand = split " ";
my @expanded = ("(", $shorthand[0]);
foreach my $i (1 .. $#shorthand) {
push @expanded, ">>$i,$i>>", $shorthand[$i];
}
push @expanded, ")";
@expanded;
}
else {
$_; # single token expressions, distance operators and parentheses are passed through
}
} @items;
view all matches for this distribution
view release on metacpan or search on metacpan
Makefile.PL view on Meta::CPAN
# Save this 'cause CPAN will chdir all over the place.
my $cwd = Cwd::cwd();
CPAN::Shell->install('Module::Build::Compat');
CPAN::Shell->expand("Module", "Module::Build::Compat")->uptodate
or die "Couldn't install Module::Build, giving up.\n";
chdir $cwd or die "Cannot chdir() back to $cwd: $!";
}
eval "use Module::Build::Compat 0.02; 1" or die $@;
view all matches for this distribution
view release on metacpan or search on metacpan
inc/Inline/denter.pm view on Meta::CPAN
my $o = shift;
$o->{done}++, $o->{level} = -1, return unless @{$o->{lines}};
my ($width, $tabwidth) = @{$o}{qw(width tabwidth)};
while (1) {
local $_ = $o->{lines}[0];
# expand tabs in leading whitespace;
$o->next_line, next if /^(\s*$|\#)/; # skip comments and blank lines
while (s{^( *)(\t+)}
{' ' x (length($1) + length($2) * $tabwidth -
length($1) % $tabwidth)}e){}
croak $o->M01_invalid_indent_width unless /^(( {$width})*)(\S.*)$/;
view all matches for this distribution
view release on metacpan or search on metacpan
inc/Inline/denter.pm view on Meta::CPAN
my $o = shift;
$o->{done}++, $o->{level} = -1, return unless @{$o->{lines}};
my ($width, $tabwidth) = @{$o}{qw(width tabwidth)};
while (1) {
local $_ = $o->{lines}[0];
# expand tabs in leading whitespace;
$o->next_line, next if /^(\s*$|\#)/; # skip comments and blank lines
while (s{^( *)(\t+)}
{' ' x (length($1) + length($2) * $tabwidth -
length($1) % $tabwidth)}e){}
croak $o->M01_invalid_indent_width unless /^(( {$width})*)(\S.*)$/;
view all matches for this distribution
view release on metacpan or search on metacpan
examples/demo-gridbox.pl view on Meta::CPAN
$gridbox->add( $row, $col, Tickit::Widget::Static->new(
text => chr( 65 + rand 26 ) x ( 2 + rand 12 ),
align => 0.5, valign => 0.5,
bg => (qw( red blue green yellow ))[($row+$col) % 4],
),
row_expand => 1,
col_expand => 1,
);
}
}
Tickit->new( root => $gridbox )->run;
view all matches for this distribution
view release on metacpan or search on metacpan
BabelFish.pm view on Meta::CPAN
use IO::Redirect;
$ior = IO::Redirect->new();
$ior->redirect_stdout_stderr(\$cpan);
REDIRECT_END
my $mod = CPAN::Shell->expand('Module', 'AltaVista::BabelFish');
if(defined $mod) {
if($VERSION eq $mod->cpan_version) {
if(ref $ior) {
$ior->un_redirect_stdout_stderr();
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Alvis/Convert.pm view on Meta::CPAN
$self->_set_err_state($ERR_ENCODING_WIZARD);
return undef;
}
$self->{wikipediaConverter}=
Alvis::Wikipedia::XMLDump->new(expandVariables=>1,
skipRedirects=>0,
dumpCategoryData=>1,
dumpTemplateData=>1);
if (!defined($self->{wikipediaConverter}))
{
lib/Alvis/Convert.pm view on Meta::CPAN
#
# opts: a hash of options with these possible fields:
#
# namespaces ref to a list of namespace identifiers whose
# records to extract
# expandTemplates flag for true template expansion
# templateDumpF template dump file
# outputFormat format for result records
# ($Alvis::Wikipedia::XMLDump::OUTPUT_*)
# categoryWord category namespace identifier (changes with
# language)
view all matches for this distribution
view release on metacpan or search on metacpan
bin/run_QF.pl view on Meta::CPAN
<AlvisDir>/resources/NEs : Lists (text-occurrence,canonical-form) for matching named entities.
<AlvisDir>/resources/onto_nodes : Lists (canonical-form,ontology-node) for matching lemmas, terms and named entities that are located in the ontology.
<AlvisDir>/resources/onto_paths : Lists (ontology-node,ontology-path) giving fully expanded path for each node.
<AlvisDir>/resources/terms : Lists (text-occurence,canonical-form) for matching terms.
<AlvisDir>/resources/types : Lists (canonical-form,type) for named entities. Types are short text items (e.g., 'species', 'company', 'person') used to categorise named entities when no ontology is in use.
view all matches for this distribution
view release on metacpan or search on metacpan
- Support for table attributes (with Alzabo 0.79_02 +).
- Support for functional indexes (with Alzabo 0.79_02 +).
- Improved the formatting of the front page's schema list when it
expands to two columns.
- Improved the formatting of the table and column name lists
- Tried to make the installation process a little clearer,
specifically in terms of saying what the component root is, since
view all matches for this distribution
view release on metacpan or search on metacpan
- Added Alzabo::MethodMaker module. This can be used to auto-generate
useful methods for your schema/table/row objects based on the
properties of your objects themselves.
- Reworking/expanding/clarifying/editing of the docs.
- Add order_by and limit options whenever creating a cursor.
- Method documentation POD from the Alzabo::* modules is merged into
the relevant Alzabo::Create::* and Alzabo::Runtime::* modules during
view all matches for this distribution
view release on metacpan or search on metacpan
t/05_presigned_post.t view on Meta::CPAN
],
expiration => '2019-11-01T01:00:00Z',
}),
'x-amz-signature' => '28baaf6392b4a747f1e65d9bb33f205342e025bf23f3d7ab37de880828ac0f52',
],
}, '${filename} expands starts-with condition';
is_deeply $client->generate_presigned_post($bucket, $key, [
'Content-Type' => 'image/png',
'x-amz-meta-foo' => 'bar',
]), {
view all matches for this distribution
view release on metacpan or search on metacpan
lib/AmberDB.pm view on Meta::CPAN
=head2 Expandable Records without SQL JOINs (Repeating Blocks)
AmberDB supports hierarchical, JSON-like extensible records without the need for child tables or relational C<JOIN> queries. Multiple repeating child items (e.g., order lines, cart items, invoice lines) can be appended directly to the parent record. ...
# Schema configuration for expanding order table
{
name => "Customer Orders",
record_index => 1,
match_block => [1, 2, 4], # Customer ID, Order Date, Products
repeat_ids => 4, # products field: item ids, separated by comma
view all matches for this distribution
view release on metacpan or search on metacpan
factpacks/Linux.fact view on Meta::CPAN
Basilisk II => <reply> $who, An attempt at creating a free, portable 68k Mac emulator.. URL: http://www.Uni-Mainz.DE/~bauec002/B2Main.html
BASS => <reply> $who, Bulk Auditing Security Scanner. URL: http://www.securityfocus.com/data/tools/network/bass-1.0.7.tar.gz
Bastille Linux => <reply> $who, A comprehensive hardening program for Redhat Linux 6.0.. URL: http://bastille-linux.sourceforge.net/
Batalla Naval => <reply> $who, Networked BattleShip game. URL: http://www.pjn.gov.ar/~rquesada/batnav.html
BattleChat => <reply> $who, Chat interface for Blizzard's Battle.Net. URL: http://corvette.me.vt.edu/~ronelson/battlechat/
bawt => <reply> $who, A module-based multi-net/chan C bot expandable via perl.. URL: http://www.flame.org/~david/bawt.php3
Bazaar => <reply> $who, Threaded WWW Conferencing system with a MySQL backend. URL: http://www.icaap.org/Bazaar/
bb => <reply> $who, Audio visual demonstration for your text terminal. URL: http://www.ta.jcu.cz/aa/bb/
BBBS => <reply> $who, Full-featured BBS software with full FidoNet and InterNet support.. URL: http://www.bbbs.net
BBDB => <reply> $who, . URL: http://pw2.netcom.com/~simmonmt/bbdb/index.html
BBHeadlines => <reply> $who, Displays Web Headlines in the Blackbox Root menu.. URL: http://www.intelegenesis.com/bs/bbheadlines/
view all matches for this distribution
view release on metacpan or search on metacpan
- Fixed deps.
(Reported by andk)
0.12 2014-03-25T01:06:43Z
- Fix default DB name to expand environment name
(moznion)
- Fixed testing issues
(Kosuke Asami)
0.11 2013-10-08T23:29:10Z
view all matches for this distribution
view release on metacpan or search on metacpan
inc/Pod/Markdown.pm view on Meta::CPAN
#line 1
# vim: set ts=4 sts=4 sw=4 expandtab smarttab:
#
# This file is part of Pod-Markdown
#
# This software is copyright (c) 2004 by Marcel Gruenauer.
#
inc/Pod/Markdown.pm view on Meta::CPAN
}
sub verbatim {
my ($parser, $paragraph) = @_;
# NOTE: perlpodspec says parsers should expand tabs by default
# NOTE: Apparently Pod::Parser does not. should we?
# NOTE: this might be s/^\t/" " x 8/e, but what about tabs inside the para?
# POD verbatim can start with any number of spaces (or tabs)
# markdown should be 4 spaces (or a tab)
inc/Pod/Markdown.pm view on Meta::CPAN
my ($parser, $paragraph, $line_num) = @_;
my $data = $parser->_private;
# escape markdown characters in text sequences except for inline code
$paragraph = join '', $parser->parse_text(
{ -expand_text => '_escape_non_code' },
$paragraph, $line_num
)->raw_text;
# interpolate the paragraph for embedded sequences
$paragraph = $parser->interpolate($paragraph, $line_num);
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Analizo/Model.pm view on Meta::CPAN
return $graph;
}
sub _file_to_module {
my ($filename) = @_;
$filename =~ s/\.r\d+\.expand$//;
return basename($filename);
}
sub _function_to_module {
my ($self, $function) = @_;
view all matches for this distribution