Result:
found more than 630 distributions - search limited to the first 2001 files matching your query ( run in 1.006 )


Pod-Simple-XHTML-BlendedCode

 view release on metacpan or  search on metacpan

inc/inc_Module-Build/Module/Build/Base.pm  view on Meta::CPAN

    }

    return $ph->{features}->access($key, @_);
  }

  # No args - get the auto_features & overlay the regular features
  my %features;
  my %auto_features = $ph->{auto_features}->access();
  while (my ($name, $info) = each %auto_features) {
    my $failures = $self->prereq_failures($info);
    my $disabled = grep( /^(?:\w+_)?(?:requires|conflicts)$/,

 view all matches for this distribution


PortageXS

 view release on metacpan or  search on metacpan

lib/PortageXS/Core.pm  view on Meta::CPAN

#
# Parameters:
# $forcereload is optional and forces a reload of the make.conf and make.globals files.
#
# Example:
# @portdir_overlay=$pxs->getPortdirOverlay();
sub getPortdirOverlay {
	my $self	= shift;
	my $forcereload	= shift;

    return split(/ /, $self->config->getParam('PORTDIR_OVERLAY', 'lastseen'));

 view all matches for this distribution


Postscript-TextDecode

 view release on metacpan or  search on metacpan

lib/Postscript/TextDecode.pm  view on Meta::CPAN

'softhyphen'                   => chr(173),
'softsigncyrillic'             => chr(1100),
'sohiragana'                   => chr(12381),
'sokatakana'                   => chr(12477),
'sokatakanahalfwidth'          => chr(65407),
'soliduslongoverlaycmb'        => chr(824),
'solidusshortoverlaycmb'       => chr(823),
'sorusithai'                   => chr(3625),
'sosalathai'                   => chr(3624),
'sosothai'                     => chr(3595),
'sosuathai'                    => chr(3626),
'space'                        => chr(32),

lib/Postscript/TextDecode.pm  view on Meta::CPAN

'ssangsioskorean'              => chr(12614),
'ssangtikeutkorean'            => chr(12600),
'ssuperior'                    => chr(63218),
'sterling'                     => chr(163),
'sterlingmonospace'            => chr(65505),
'strokelongoverlaycmb'         => chr(822),
'strokeshortoverlaycmb'        => chr(821),
'subset'                       => chr(8834),
'subsetnotequal'               => chr(8842),
'subsetorequal'                => chr(8838),
'succeeds'                     => chr(8827),
'suchthat'                     => chr(8715),

lib/Postscript/TextDecode.pm  view on Meta::CPAN

'tildebelowcmb'                => chr(816),
'tildecmb'                     => chr(771),
'tildecomb'                    => chr(771),
'tildedoublecmb'               => chr(864),
'tildeoperator'                => chr(8764),
'tildeoverlaycmb'              => chr(820),
'tildeverticalcmb'             => chr(830),
'timescircle'                  => chr(8855),
'tipehahebrew'                 => chr(1430),
'tipehalefthebrew'             => chr(1430),
'tippigurmukhi'                => chr(2672),

 view all matches for this distribution


Prima-OpenGL

 view release on metacpan or  search on metacpan

lib/Prima/OpenGL.pm  view on Meta::CPAN

Selects either paletted or true-color visual representation.

=item layer INTEGER

x11: Layer zero corresponds to the main frame buffer of the display.  Layer
one is the first overlay frame buffer, level two the second overlay frame
buffer, and so on. Negative buffer levels correspond to underlay frame
buffers.

win32: Provides only three layers, -1, 0, and 1 .

 view all matches for this distribution


Prima

 view release on metacpan or  search on metacpan

Prima/PS/Unicode.pm  view on Meta::CPAN

"\x{032F}" => 'breveinvertedbelowcmb',
"\x{0330}" => 'tildebelowcmb',
"\x{0331}" => 'macronbelowcmb',
"\x{0332}" => 'lowlinecmb',
"\x{0333}" => 'dbllowlinecmb',
"\x{0334}" => 'tildeoverlaycmb',
"\x{0335}" => 'strokeshortoverlaycmb',
"\x{0336}" => 'strokelongoverlaycmb',
"\x{0337}" => 'solidusshortoverlaycmb',
"\x{0338}" => 'soliduslongoverlaycmb',
"\x{0339}" => 'ringhalfrightbelowcmb',
"\x{033A}" => 'bridgeinvertedbelowcmb',
"\x{033B}" => 'squarebelowcmb',
"\x{033C}" => 'seagullbelowcmb',
"\x{033D}" => 'xabovecmb',

 view all matches for this distribution


ProgressMonitor

 view release on metacpan or  search on metacpan

lib/ProgressMonitor.pm  view on Meta::CPAN


While 'ticking' is the primary way of informing the user, sometimes it makes sense
not only saying "I'm active", but also saying 'I'm currently doing this', i.e. a straightforward
message. Messages is a sort of out-of-band communication in regards to ticks. Depending
on how the monitor was set up, they may be ignored altogether, written using newlines 'beside'
the tick, or perhaps overlaying the tick field(s) (all or in part) - and then automatically
time out, restoring the tick fields. Anyway, feel free to give informational messages as
needed (but don't assume they'll be seen - just as with ticks, as the monitor in total
may be just a black hole). 

=item FINISHING

 view all matches for this distribution


Prospect

 view release on metacpan or  search on metacpan

Prospect/Align.pm  view on Meta::CPAN

# $Id: Align.pm,v 1.14 2003/11/07 00:46:09 cavs Exp $
# @@banner@@

=head1 NAME

Prospect::Align -- Package for overlaying multiple Prospect alignments

S<$Id: Align.pm,v 1.14 2003/11/07 00:46:09 cavs Exp $>

=head1 SYNOPSIS

 view all matches for this distribution


Qgoda

 view release on metacpan or  search on metacpan

lib/Qgoda/Util.pm  view on Meta::CPAN


    return lc $str;
}

sub merge_data {
    my ($data, $overlay) = @_;

    # Return $overlay if it is of a different type than $data.
    my $equal_ref = sub {
        my ($x, $y) = @_;

        return if !ref $x;
        return if !ref $y;

lib/Qgoda/Util.pm  view on Meta::CPAN

        my $ref_y = reftype $y;

        return $ref_x eq $ref_y;
    };

    return $overlay if !$equal_ref->($overlay, $data);
    return $overlay if 'ARRAY' eq reftype $overlay;

    my $merger;
    $merger = sub {
        my ($d, $o) = @_;

lib/Qgoda/Util.pm  view on Meta::CPAN

                $d->{$key} = $o->{$key};
            }
        }
    };

    $merger->($data, $overlay);

    return $data;
}

sub interpolate($$) {

 view all matches for this distribution


Quantum-Entanglement

 view release on metacpan or  search on metacpan

Entanglement.pm  view on Meta::CPAN

theory which are more easily understood.  Hopefully this module will
shed some light on a few of these and their consequences.

One of the more popular interpretations of quantum mechanics holds that
instead of particles always being in a single, well defined, state
they instead exist as an almost ghostly overlay of many different
states (or values) at the same time.  Of course, it is our experience
that when we look at something, we only ever find it in one single state.
This is explained by the many states of the particle collapsing to a
single state and highlights the importance of observation.

 view all matches for this distribution


Quantum-Superpositions

 view release on metacpan or  search on metacpan

lib/Quantum/Superpositions.pm  view on Meta::CPAN


=head1 BACKGROUND

Under the standard interpretation of quantum mechanics, until they are observed, particles exist only as a discontinuous probability 
function. Under the Cophenhagen Interpretation, this situation is often visualized by imagining the state of an unobserved particle to be 
a ghostly overlay of all its possible observable 
states simultaneously. For example, a particle 
that might be observed in state A, B, or C may 
be considered to be in a pseudo-state where 
it is simultaneously in states A, B, and C.
Such a particle is said to be in a superposition of states.

 view all matches for this distribution


Quizzer

 view release on metacpan or  search on metacpan

exercises/compile-tcsh/tcsh-6.10.00/nls/C/set2  view on Meta::CPAN

87 Priority changed
88 True deadlock detected
89 New input character
90 Stack limit exceeded
91 Unused signal
92 LM overlay
93 system freeze
94 system defreeze
95 dead lock
96 exceeded memory size limit
97 exceeded data size limit

 view all matches for this distribution


RPM-Query

 view release on metacpan or  search on metacpan

lib/RPM/Query.pm  view on Meta::CPAN


our $VERSION = '0.03';

=head1 NAME

RPM::Query - Perl object overlay of the RPM query command

=head1 SYNOPSIS


  use RPM::Query;

 view all matches for this distribution


RPi-Serial

 view release on metacpan or  search on metacpan

lib/RPi/Serial.pm  view on Meta::CPAN

operate correctly without this being done.

To disable Bluetooth on the Pi, edit the C</boot/config.txt>, and add the
following line:

    dtoverlay=pi3-disable-bt-overlay

Save the file, then reboot the Pi.

=head1 METHODS

 view all matches for this distribution


RPi-SysInfo

 view release on metacpan or  search on metacpan

t/25-raspi_config.t  view on Meta::CPAN


like raspi_config, qr/core_freq/, "function includes data ok";

like
    raspi_config,
    qr/dtoverlay=pi3-disable-bt-overlay/,
    "...and custom changes are included";

done_testing();

 view all matches for this distribution


RPi-WiringPi

 view release on metacpan or  search on metacpan

lib/RPi/WiringPi.pm  view on Meta::CPAN

serial bus.

See the linked documentation for full documentation on usage, or the
L<RPi::WiringPi::FAQ> for usage examples.

NOTE: Bluetooth on the Pi overlays the serial pins (14, 15) on the Pi. To use
serial, you must disable bluetooth in the C</boot/config.txt> file:

    dtoverlay=pi3-disable-bt-overlay

=head2 servo($pin_num)

This method configures PWM clock and divisor to operate a typical 50Hz servo,
and returns a special L<RPi::Pin> object. These servos have a C<left> pulse of

 view all matches for this distribution


RRDTool-OO

 view release on metacpan or  search on metacpan

lib/RRDTool/OO.pm  view on Meta::CPAN

                    optional  => [qw(vertical_label title start end x_grid
                                     y_grid alt_y_grid no_minor alt_y_mrtg
                                     alt_autoscale alt_autoscale_max base
                                     units_exponent units_length width
                                     height interlaced imginfo imgformat
                                     overlay unit lazy upper_limit lower_limit
                                     rigid
                                     logarithmic color no_legend only_graph
                                     force_rules_legend title step draw
                                     line area shift tick
                                     print gprint vrule hrule comment font

lib/RRDTool/OO.pm  view on Meta::CPAN

C<width>, 
C<height>, 
C<interlaced>, 
C<imginfo>, 
C<imgformat>, 
C<overlay>, 
C<unit>, 
C<lazy>, 
C<rigid>,
C<lower_limit>, 
C<upper_limit>, 

 view all matches for this distribution


RT-Action-SetPriorityFromHeader

 view release on metacpan or  search on metacpan

inc/Module/Install/RTx/Factory.pm  view on Meta::CPAN




^head1 SEE ALSO

This class allows \"overlay\" methods to be placed
into the following files _Overlay is for a System overlay by the original author,
_Vendor is for 3rd-party vendor add-ons, while _Local is for site-local customizations.  

These overlay files can contain new subs or subs to replace existing subs in this module.

If you'll be working with perl 5.6.0 or greater, each of these files should begin with the line 

   no warnings qw(redefine);

so that perl does not kick and scream when you redefine a subroutine or variable in your overlay.

${class}_Overlay, ${class}_Vendor, ${class}_Local

^cut

 view all matches for this distribution


RT-Authen-ExternalAuth

 view release on metacpan or  search on metacpan

CHANGES  view on Meta::CPAN

0.07_01 2008-11-06 Mike Peachey <zordrak@cpan.org>, Kevin Falcone <falcone@cpan.org>
 - Complete code refactoring and updates for RT-3.8.x compatability.

0.06_03 2008-10-31 Mike Peachey <zordrak@cpan.org>, Kevin Falcone <falcone@cpan.org>
 - Add fix to work around a plugin bug in RT-3.8.0 & RT-3.8.1 preventing
   User_Vendor.pm overlay being required before RT::User is loaded.
 - Check the return value from calling RT::User::Create.
 - Check the return value when loading an autocreated user.
 - README: Updated to talk about removing old files in local/.
 - Added error-checking to complain if a an LDAP configuration is in use,
   but no d_filter has been specified.

 view all matches for this distribution


RT-CIFMinimal

 view release on metacpan or  search on metacpan

inc/Module/Install/RTx/Factory.pm  view on Meta::CPAN




^head1 SEE ALSO

This class allows \"overlay\" methods to be placed
into the following files _Overlay is for a System overlay by the original author,
_Vendor is for 3rd-party vendor add-ons, while _Local is for site-local customizations.  

These overlay files can contain new subs or subs to replace existing subs in this module.

If you'll be working with perl 5.6.0 or greater, each of these files should begin with the line 

   no warnings qw(redefine);

so that perl does not kick and scream when you redefine a subroutine or variable in your overlay.

${class}_Overlay, ${class}_Vendor, ${class}_Local

^cut

 view all matches for this distribution


RT-Condition-Complex

 view release on metacpan or  search on metacpan

inc/Module/Install/RTx/Factory.pm  view on Meta::CPAN




^head1 SEE ALSO

This class allows \"overlay\" methods to be placed
into the following files _Overlay is for a System overlay by the original author,
_Vendor is for 3rd-party vendor add-ons, while _Local is for site-local customizations.  

These overlay files can contain new subs or subs to replace existing subs in this module.

If you'll be working with perl 5.6.0 or greater, each of these files should begin with the line 

   no warnings qw(redefine);

so that perl does not kick and scream when you redefine a subroutine or variable in your overlay.

${class}_Overlay, ${class}_Vendor, ${class}_Local

^cut

 view all matches for this distribution


RT-Condition-NotStartedInBusinessHours

 view release on metacpan or  search on metacpan

inc/Module/Install/RTx/Factory.pm  view on Meta::CPAN




^head1 SEE ALSO

This class allows \"overlay\" methods to be placed
into the following files _Overlay is for a System overlay by the original author,
_Vendor is for 3rd-party vendor add-ons, while _Local is for site-local customizations.  

These overlay files can contain new subs or subs to replace existing subs in this module.

If you'll be working with perl 5.6.0 or greater, each of these files should begin with the line 

   no warnings qw(redefine);

so that perl does not kick and scream when you redefine a subroutine or variable in your overlay.

${class}_Overlay, ${class}_Vendor, ${class}_Local

^cut

 view all matches for this distribution


RT-Condition-OwnershipChanges

 view release on metacpan or  search on metacpan

inc/Module/Install/RTx/Factory.pm  view on Meta::CPAN




^head1 SEE ALSO

This class allows \"overlay\" methods to be placed
into the following files _Overlay is for a System overlay by the original author,
_Vendor is for 3rd-party vendor add-ons, while _Local is for site-local customizations.  

These overlay files can contain new subs or subs to replace existing subs in this module.

If you'll be working with perl 5.6.0 or greater, each of these files should begin with the line 

   no warnings qw(redefine);

so that perl does not kick and scream when you redefine a subroutine or variable in your overlay.

${class}_Overlay, ${class}_Vendor, ${class}_Local

^cut

 view all matches for this distribution


RT-Extension-EscalationDates

 view release on metacpan or  search on metacpan

inc/Module/Install/RTx/Factory.pm  view on Meta::CPAN




^head1 SEE ALSO

This class allows \"overlay\" methods to be placed
into the following files _Overlay is for a System overlay by the original author,
_Vendor is for 3rd-party vendor add-ons, while _Local is for site-local customizations.  

These overlay files can contain new subs or subs to replace existing subs in this module.

If you'll be working with perl 5.6.0 or greater, each of these files should begin with the line 

   no warnings qw(redefine);

so that perl does not kick and scream when you redefine a subroutine or variable in your overlay.

${class}_Overlay, ${class}_Vendor, ${class}_Local

^cut

 view all matches for this distribution


RT-Extension-ExtractSubjectTagOnTransaction

 view release on metacpan or  search on metacpan

inc/Module/Install/RTx/Factory.pm  view on Meta::CPAN




^head1 SEE ALSO

This class allows \"overlay\" methods to be placed
into the following files _Overlay is for a System overlay by the original author,
_Vendor is for 3rd-party vendor add-ons, while _Local is for site-local customizations.  

These overlay files can contain new subs or subs to replace existing subs in this module.

If you'll be working with perl 5.6.0 or greater, each of these files should begin with the line 

   no warnings qw(redefine);

so that perl does not kick and scream when you redefine a subroutine or variable in your overlay.

${class}_Overlay, ${class}_Vendor, ${class}_Local

^cut

 view all matches for this distribution


RT-Extension-FormTools

 view release on metacpan or  search on metacpan

lib/RT/Interface/Web_Vendor.pm  view on Meta::CPAN

package HTML::Mason::Commands;

no warnings qw(redefine);

# This should be the same class we are overlaying here
my $original_abort = \&HTML::Mason::Commands::Abort;

*HTML::Mason::Commands::Abort = sub {
    my $why = shift;
    my %args = @_;

 view all matches for this distribution


RT-Extension-HistoryFilter

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

Revision history for RT::Extension::HistoryFilter

3.02 2021-09-16
 - Remove the Select overlay template in favor of a patch

3.01 2021-01-17
 - Generate pot file for further translations
 - Add french translation
 - update Module::Install for RT 5.0 compatibility

 view all matches for this distribution


RT-Extension-InlineHelp

 view release on metacpan or  search on metacpan

lib/RT/Extension/InlineHelp.pm  view on Meta::CPAN

This method of using JavaScript allows for tremendous flexibly annotating the DOM with help items,
even after it has been rendered--perhaps by other templates altogether, making it attractive as a
mechanism for users to annotate aspects of RT--however it has been installed for them, including
any and all extensions--simply by inspecting what is rendered to the browser and writing the
appropriate rules. Importantly, these rules can usually be added to one place (e.g. in a page
callback somewhere) so they do not need to overlay virtually every template in RT just to
add help icons throughout.

=head3 Help Selector Rules

A help selector rule is a JavaScript object with the following keys:

 view all matches for this distribution


RT-Extension-LifecycleUI

 view release on metacpan or  search on metacpan

html/Elements/LifecycleGraph  view on Meta::CPAN

<div class="lifecycle-ui<% $Editing ? ' editing' : '' %><% $Interactive ? ' interactive' : '' %><% $Zoomable ? ' zoomable' : '' %> center-<% $Center || 'origin' %>" id="lifecycle-<% $id %>">
    <div class="lifecycle-view">
      <div class="overlay-buttons">
          <button class="zoom zoom-in">+</button>
          <button class="zoom zoom-reset">0</button>
          <button class="zoom zoom-out">-</button>
      </div>
      <svg>

 view all matches for this distribution


RT-Extension-MandatoryFields

 view release on metacpan or  search on metacpan

inc/Module/Install/RTx/Factory.pm  view on Meta::CPAN




^head1 SEE ALSO

This class allows \"overlay\" methods to be placed
into the following files _Overlay is for a System overlay by the original author,
_Vendor is for 3rd-party vendor add-ons, while _Local is for site-local customizations.  

These overlay files can contain new subs or subs to replace existing subs in this module.

If you'll be working with perl 5.6.0 or greater, each of these files should begin with the line 

   no warnings qw(redefine);

so that perl does not kick and scream when you redefine a subroutine or variable in your overlay.

${class}_Overlay, ${class}_Vendor, ${class}_Local

^cut

 view all matches for this distribution


RT-Extension-NotifyOwners

 view release on metacpan or  search on metacpan

inc/Module/Install/RTx/Factory.pm  view on Meta::CPAN




^head1 SEE ALSO

This class allows \"overlay\" methods to be placed
into the following files _Overlay is for a System overlay by the original author,
_Vendor is for 3rd-party vendor add-ons, while _Local is for site-local customizations.  

These overlay files can contain new subs or subs to replace existing subs in this module.

If you'll be working with perl 5.6.0 or greater, each of these files should begin with the line 

   no warnings qw(redefine);

so that perl does not kick and scream when you redefine a subroutine or variable in your overlay.

${class}_Overlay, ${class}_Vendor, ${class}_Local

^cut

 view all matches for this distribution


( run in 1.006 second using v1.01-cache-2.11-cpan-39bf76dae61 )