view release on metacpan or search on metacpan
t/htmls/regexp_test_2.html view on Meta::CPAN
'padding': 10,
'opacity': true,
'speedIn': 500,
'speedOut': 500,
'changeSpeed': 300,
'overlayShow': true,
'overlayOpacity': "0.3",
'overlayColor': "#666666",
'titleShow': true,
'titlePosition': 'inside',
'enableEscapeButton': true,
'showCloseButton': true,
'showNavArrows': true,
view all matches for this distribution
view release on metacpan or search on metacpan
t/data/cp1252/10676968.cp1252 view on Meta::CPAN
a, A model of the tertiary structure of hGBP1 presented as a ribbon,
where the LG domain is in purple, the connecting region in green, the
helical domain in yellow and alpha 12/ alpha 13 in cyan. Insertions,
marked I2I5 in b, are in violet. Dashed lines indicate disordered
regions in the molecule. The tentative nucleotide-binding area,
identified by a RasGBP overlay, is indicated by a sphere with radius
7 Å. The topology is shown schematically using the same colour code. b,
Sequence alignment of hGBP1 (Swissprot accession no. P32455) with Mag-2
(EMBL acccession no. M81128) from mouse and chicken GBP1 (EMBL
accession no. X92112), with the secondary structure assignment as
determined using the programme DSSP^[45]29, with the same colour code
t/data/cp1252/10676968.cp1252 view on Meta::CPAN
Putative location of nucleotide-binding site in hGBP1. The regions of
hGBP1 potentially involved in binding the guanine nucleotide are shown
as obtained from a structural superimposition of RasGDP (in cyan) with
the corresponding regions in hGBP1 (purple), highlighting functionally
important residues necessary for binding and conformational change as
balls or in ball-and-stick. Whereas Gly 60^ras overlays very well with
Gly 100^hGBP1, residues D119/D184 and T35/T75 do not.
[62]High resolution image and legend (79K)
As GBP is stable in the absence of nucleotide, whereas Ras-like and G
alpha GTP-binding proteins are not, it was of interest to investigate
the effect of the absence of nucleotide on the structure. As all
P-loop-containing proteins^[63]10 bind the beta / gamma -phosphate of
the nucleotide in a similar manner, and as the role of Asp 184 in
binding the guanine base is similar to that of the Asp of the canonical
N/TKxD motif, we can locate the nucleotide-binding site of hGBP1 using
the RasGDPhGBP1 overlay ([64]Fig. 2b). From this comparison we can
also see that, although part of the binding site is more accessible to
the solvent than in Rasnucleotide complexes, part of the polypeptide
chain is in a position that interferes with nucleotide binding. Perhaps
owing to the absence of nucleotide, the polypeptide chain around the
binding site is mobile, as no electron density is visible for residues
t/data/cp1252/10676968.cp1252 view on Meta::CPAN
involving hydrogen bonds between Tyr 47 (backbone N) and Asp 103,
Lys 51 and Thr 98. Furthermore, the structure is not suited for
nucleotide binding as the phosphates would clash with Tyr 47. The
region corresponding to switch I in Ras is disordered in hGBP1. Thr 75
appears to be analogous to Thr 35 in Ras, but is 5 Å away in the
overlay ([66]Fig. 2b). The ^97DxxG^100 motif of hGBP1 superimposes well
with that of switch II in Ras. D184 is 6 Å away from the corresponding
D119 of the canonical N/TKxD motif and would have to move accordingly
to occupy a similar position in the nucleotide-bound form. In general,
it appears that the guanine nucleotide-binding site is partly open
([67]Fig. 2a, [68]b) such that the incoming nucleotide would enter the
view all matches for this distribution
view release on metacpan or search on metacpan
** 2000-06-06 RELEASE 2.48
- Make launche without -c overlay with more useful semantics.
** 2000-04-18 RELEASE 2.47
- getpwuid via ENVY_[RE]UID*
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Excel/Writer/XLSX/Chart.pm view on Meta::CPAN
$self->{_title_font} = $self->_convert_font_args( $arg{name_font} );
# Set the title layout.
$self->{_title_layout} = $self->_get_layout_properties( $arg{layout}, 1 );
# Set the title overlay option.
$self->{_title_overlay} = $arg{overlay};
# Set the no automatic title option.
$self->{_title_none} = $arg{none};
}
lib/Excel/Writer/XLSX/Chart.pm view on Meta::CPAN
$title,
$self->{_title_data_id},
undef,
$self->{_title_font},
$self->{_title_layout},
$self->{_title_overlay}
);
}
elsif ( $title = $self->{_title_name} ) {
$self->_write_title_rich(
$title,
undef,
$self->{_title_font},
$self->{_title_layout},
$self->{_title_overlay}
);
}
}
# Write the c:plotArea element.
lib/Excel/Writer/XLSX/Chart.pm view on Meta::CPAN
my $self = shift;
my $legend = $self->{_legend};
my $position = $legend->{_position} || 'right';
my $font = $legend->{_font};
my @delete_series = ();
my $overlay = 0;
if ( defined $legend->{_delete_series}
&& ref $legend->{_delete_series} eq 'ARRAY' )
{
@delete_series = @{ $legend->{_delete_series} };
}
if ( $position =~ s/^overlay_// ) {
$overlay = 1;
}
my %allowed = (
right => 'r',
left => 'l',
lib/Excel/Writer/XLSX/Chart.pm view on Meta::CPAN
}
# Write the c:layout element.
$self->_write_layout( $legend->{_layout}, 'legend' );
# Write the c:overlay element.
$self->_write_overlay() if $overlay;
# Write the c:spPr element.
$self->_write_sp_pr( $legend );
# Write the c:txPr element.
lib/Excel/Writer/XLSX/Chart.pm view on Meta::CPAN
}
##############################################################################
#
# _write_overlay()
#
# Write the <c:overlay> element.
#
sub _write_overlay {
my $self = shift;
my $val = 1;
my @attributes = ( 'val' => $val );
$self->xml_empty_tag( 'c:overlay', @attributes );
}
##############################################################################
#
lib/Excel/Writer/XLSX/Chart.pm view on Meta::CPAN
my $self = shift;
my $title = shift;
my $is_y_axis = shift;
my $font = shift;
my $layout = shift;
my $overlay = shift;
$self->xml_start_tag( 'c:title' );
# Write the c:tx element.
$self->_write_tx_rich( $title, $is_y_axis, $font );
# Write the c:layout element.
$self->_write_layout( $layout, 'text' );
# Write the c:overlay element.
$self->_write_overlay() if $overlay;
$self->xml_end_tag( 'c:title' );
}
lib/Excel/Writer/XLSX/Chart.pm view on Meta::CPAN
my $title = shift;
my $data_id = shift;
my $is_y_axis = shift;
my $font = shift;
my $layout = shift;
my $overlay = shift;
$self->xml_start_tag( 'c:title' );
# Write the c:tx element.
$self->_write_tx_formula( $title, $data_id );
# Write the c:layout element.
$self->_write_layout( $layout, 'text' );
# Write the c:overlay element.
$self->_write_overlay() if $overlay;
# Write the c:txPr element.
$self->_write_tx_pr( $font, $is_y_axis );
$self->xml_end_tag( 'c:title' );
lib/Excel/Writer/XLSX/Chart.pm view on Meta::CPAN
=item * C<name_font>
Set the font properties for the chart title. See the L</CHART FONTS> section below.
=item * C<overlay>
Allow the title to be overlaid on the chart. Generally used with the layout property below.
=item * C<layout>
Set the C<(x, y)> position of the title in chart relative units:
$chart->set_title(
name => 'Title',
overlay => 1,
layout => {
x => 0.42,
y => 0.14,
}
);
lib/Excel/Writer/XLSX/Chart.pm view on Meta::CPAN
top
bottom
left
right
top_right
overlay_left
overlay_right
overlay_top_right
none
=item * C<border>
Set the border properties of the legend such as colour and style. See the L</CHART FORMATTING> section below.
view all matches for this distribution
view release on metacpan or search on metacpan
public/javascripts/vendor/jquery/jquery-ui-1.8.21.custom.min.js view on Meta::CPAN
* Copyright (c) 2012 AUTHORS.txt; Licensed MIT, GPL */
(function(a,b){var c,d,e,f,g="ui-button ui-widget ui-state-default ui-corner-all",h="ui-state-hover ui-state-active ",i="ui-button-icons-only ui-button-icon-only ui-button-text-icons ui-button-text-icon-primary ui-button-text-icon-secondary ui-button...
* https://github.com/jquery/jquery-ui
* Includes: jquery.ui.dialog.js
* Copyright (c) 2012 AUTHORS.txt; Licensed MIT, GPL */
(function(a,b){var c="ui-dialog ui-widget ui-widget-content ui-corner-all ",d={buttons:!0,height:!0,maxHeight:!0,maxWidth:!0,minHeight:!0,minWidth:!0,width:!0},e={maxHeight:!0,maxWidth:!0,minHeight:!0,minWidth:!0},f=a.attrFn||{val:!0,css:!0,html:!0,t...
* https://github.com/jquery/jquery-ui
* Includes: jquery.ui.slider.js
* Copyright (c) 2012 AUTHORS.txt; Licensed MIT, GPL */
(function(a,b){var c=5;a.widget("ui.slider",a.ui.mouse,{widgetEventPrefix:"slide",options:{animate:!1,distance:0,max:100,min:0,orientation:"horizontal",range:!1,step:1,value:0,values:null},_create:function(){var b=this,d=this.options,e=this.element.f...
* https://github.com/jquery/jquery-ui
view all matches for this distribution
view release on metacpan or search on metacpan
lib/FAST/List/Gen.pm view on Meta::CPAN
:utility mapn by every apply min max reduce mapab
mapkey d deref slide curse remove
:source range glob makegen list array vecgen repeat file
:modify gen cache expand contract collect slice flip overlay
test recursive sequence scan scan_stream == scanS
cartesian transpose stream strict
:zip zip zipgen tuples zipwith zipwithab unzip unzipn
zipmax zipgenmax zipwithmax
lib/FAST/List/Gen.pm view on Meta::CPAN
:utility mapn by every apply min max reduce mapab
mapkey d deref slide curse remove
:source range glob makegen list array vecgen repeat file
:modify gen cache expand contract collect slice flip overlay
test recursive sequence scan scan_stream == scanS
cartesian transpose stream strict
:zip zip zipgen tuples zipwith zipwithab unzip unzipn
zipmax zipgenmax zipwithmax
lib/FAST/List/Gen.pm view on Meta::CPAN
=item * B<functions as methods>:
most of the functions in this package are also methods of generators, including
by, every, mapn, gen, map (alias of gen), filter, grep (alias of filter), test,
cache, flip, reverse (alias of flip), expand, collect, overlay, mutable, while,
until, recursive, rec (alias of recursive).
my $gen = (range 0, 1_000_000)->gen(sub{$_**2})->filter(sub{$_ % 2});
#same as: filter {$_ % 2} gen {$_**2} 0, 1_000_000;
lib/FAST/List/Gen.pm view on Meta::CPAN
else {Carp::croak "no method '$method' on '".ref($self)."'"}
}
}
}
sub reverse {goto &FAST::List::Gen::flip}
sub overlay {goto &FAST::List::Gen::overlay}
sub zipmax {goto &FAST::List::Gen::zipgenmax}
sub zipwithmax {
my $code = splice @_, 1, 1;
$code->$sv2cv;
unshift @_, $code;
lib/FAST/List/Gen.pm view on Meta::CPAN
&scan
}
BEGIN {*scanS = *scan_stream}
=item overlay C< GENERATOR PAIRS >
overlay allows you to replace the values of specific generator cells. to set
the values, either pass the overlay constructor a list of pairs in the form
C<< index => value, ... >>, or assign values to the returned generator using
normal array ref syntax
my $fib; $fib = overlay gen {$$fib[$_ - 1] + $$fib[$_ - 2]};
@$fib[0, 1] = (0, 1);
# or
my $fib; $fib = gen {$$fib[$_ - 1] + $$fib[$_ - 2]}
->overlay( 0 => 0, 1 => 1 );
print "@$fib[0 .. 15]"; # '0 1 1 2 3 5 8 13 21 34 55 89 144 233 377 610'
=cut
sub overlay ($%) {
isagen (my $source = shift)
or croak '$_[0] to overlay must be a generator';
tiegen Overlay => tied @$source, @_
}
generator Overlay => sub {
my ($class, $source, %overlay) = @_;
my ($fetch, $fsize) = $source->closures;
curse {
FETCH => sub {
exists $overlay{$_[1]}
? $overlay{$_[1]}
: $fetch->(undef, $_[1])
},
STORE => sub {$overlay{$_[1]} = $_[2]},
fsize => $fsize,
source => sub {$source}
} => $class
};
lib/FAST/List/Gen.pm view on Meta::CPAN
indices from the generator. when called with a generator, it returns a lazy
slice from the source generator. since the subroutine created by C< recursive >
is installed at runtime, you must call the subroutine with parenthesis.
my $fib = gen {self($_ - 1) + self($_ - 2)}
->overlay( 0 => 0, 1 => 1 )
->cache
->recursive;
print "@$fib[0 .. 15]"; # '0 1 1 2 3 5 8 13 21 34 55 89 144 233 377 610'
view all matches for this distribution
view release on metacpan or search on metacpan
lib/FFMPEG/Effects.pm view on Meta::CPAN
print ("Executing: $FFCommand\n");
print ("$ProcData\n");
}
}
$FFCommand="ffmpeg -y -qmin 1 -qmax 2 -g 0 -i $outputfile-holdframe-%05d.png -r $framerate -qmin 1 -qmax 2 -g 0 -vf \"color=color=$color\@$fade:size=$size [layer1]; [in][layer1] overlay=0:0\" $outputfile-hold.mpg 2>&1";
$ProcData=`$FFCommand`;
if ($self->{'debug'} != 0)
{
print ("Executing: $FFCommand\n");
print ("$ProcData\n");
lib/FFMPEG/Effects.pm view on Meta::CPAN
print("Opacity: $fadeval\n");
$skip=( $skip + $next );
$nextval=sprintf("%.3f", $skip);
print("Next Frame at: $nextval sec.\n\n");
$FFCommand="ffmpeg -y -qmin 1 -qmax 2 -g 0 -i $outputfile-$framecount.png -r $framerate -vf \"color=color=$color\@$fade:size=$size [layer1]; [in][layer1] overlay=0:0\" -s $size -qmin 1 -qmax 2 -g 0 -vframes 1 $outputfile-$framecount.effect.png 2>&...
$ProcData=`$FFCommand`;
if ($self->{'debug'} != 0)
{
print ("Executing: $FFCommand\n");
print ("$ProcData\n");
lib/FFMPEG/Effects.pm view on Meta::CPAN
print ("Generating Hold Frames... This Frame Repeated $holdframes Times.\n");
for ( $holdframe = 1; $holdframe <= $holdframes; $holdframe++)
{
$frameindex = $holdframe;
$framecount=sprintf("%05d", $frameindex);
$FFCommand="ffmpeg -y -qmin 1 -qmax 2 -g 0 -ss $skip -i $outputfile-tmp.mpg -r $framerate -vf \"color=color=$color\@$fade:size=$size [layer1]; [in][layer1] overlay=0:0\" -s $size -qmin 1 -qmax 2 -g 0 -vframes 1 $outputfile-holdframe-$framecount.p...
$ProcData=`$FFCommand`;
if ($self->{'debug'} != 0)
{
print ("Executing: $FFCommand\n");
print ("$ProcData\n");
lib/FFMPEG/Effects.pm view on Meta::CPAN
$skip=( $skip + $next );
$nextval=sprintf("%.3f", $skip);
print("Next Frame At: $nextval\n\n");
$FFCommand="ffmpeg -y -qmin 1 -qmax 2 -g 0 -ss $skip -i $outputfile-tmp.mpg -r $framerate -vf \"color=color=$color\@$fade:size=$size [layer1]; [in][layer1] overlay=0:0\" -s $size -qmin 1 -qmax 2 -g 0 -vframes 1 $outputfile-effect-$framecount.png 2...
$ProcData=`$FFCommand`;
if ($self->{'debug'} != 0)
{
print ("Executing: $FFCommand\n");
print ("$ProcData\n");
lib/FFMPEG/Effects.pm view on Meta::CPAN
if ($self->{'debug'} != 0)
{
print ("$ProcData\n");
}
$ProcData=`ffmpeg -y -i $outputfile-titlesplash.background.mpg -vf "movie=title.png [title]; [in][title] overlay=0:0" -qmin 1 -qmax 2 -g 0 -s $size titlesplash.mpg 2>&1 `;
if ($self->{'debug'} != 0)
{
print ("$ProcData\n");
}
view all matches for this distribution
view release on metacpan or search on metacpan
Fl_Text_Buffer.xs view on Meta::CPAN
int rs
int re
const char *t
void
Fl_Text_Buffer::overlay_rectangular(s,rs,re,t,ci,cd)
int s
int rs
int re
const char *t
int ci
int cd
CODE:
THIS->overlay_rectangular(s,rs,re,t,&ci,&cd);
OUTPUT:
ci
cd
void
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Farabi/files/public/assets/codemirror/addon/merge/merge.css
lib/Farabi/files/public/assets/codemirror/addon/merge/merge.js
lib/Farabi/files/public/assets/codemirror/addon/mode/loadmode.js
lib/Farabi/files/public/assets/codemirror/addon/mode/multiplex.js
lib/Farabi/files/public/assets/codemirror/addon/mode/multiplex_test.js
lib/Farabi/files/public/assets/codemirror/addon/mode/overlay.js
lib/Farabi/files/public/assets/codemirror/addon/runmode/colorize.js
lib/Farabi/files/public/assets/codemirror/addon/runmode/runmode-standalone.js
lib/Farabi/files/public/assets/codemirror/addon/runmode/runmode.js
lib/Farabi/files/public/assets/codemirror/addon/runmode/runmode.node.js
lib/Farabi/files/public/assets/codemirror/addon/scroll/scrollpastend.js
view all matches for this distribution
view release on metacpan or search on metacpan
lib/File/Slurp.pm view on Meta::CPAN
# no opts hash so insert one with the append mode
splice( @_, 1, 0, { append => 1 } ) ;
}
# magic goto the main write_file sub. this overlays the sub without touching
# the stack or @_
goto &write_file
}
view all matches for this distribution
view release on metacpan or search on metacpan
lib/File/Tasks.pm view on Meta::CPAN
use File::Tasks::Add ();
use File::Tasks::Edit ();
use File::Tasks::Remove ();
use constant 'FFR' => 'File::Find::Rule';
use overload 'bool' => sub () { 1 };
use overload '+' => '_overlay';
use vars qw{$VERSION};
BEGIN {
$VERSION = '0.07';
}
lib/File/Tasks.pm view on Meta::CPAN
#####################################################################
# Higher Order Methods
sub overlay {
my $self = Clone::clone shift;
my $other = Params::Coerce::coerce('File::Tasks', shift) or return undef;
foreach my $Task ( $other->tasks ) {
my $Current = $self->task($Task->path);
unless ( $Current ) {
lib/File/Tasks.pm view on Meta::CPAN
}
$self;
}
# A thin wrapper to handle the way overloaded arguments are provided
sub _overlay {
my $left = _INSTANCE(shift, 'File::Tasks') ? shift : return undef;
my $right = Params::Coerce::coerce('File::Tasks', shift) or return undef;
($left, $right) = ($right, $left) if $_[0];
$left->overlay($right);
}
lib/File/Tasks.pm view on Meta::CPAN
almost certainly will want to do a test run with C<<->test($dir)>> before
the live call.
Returns true if completed successfully, or C<undef> otherwise.
=head2 overlay $Under, $Over
To keep complexity down, a great way of generating File::Tasks objects
that will "overwrite" a previous installation is to do it in two parts.
# Create a script to remove the old installation
lib/File/Tasks.pm view on Meta::CPAN
# Script for a fresh install spat out by some module
my $Install = My::Module->build->Script;
# Overlay the new install over the old removal to create
# a combined script that will "shift" the current files as needed.
my $Script = $Old->overlay($Install);
Where this gets really cool is that if the new file is the same as the
old file, the Task will be optimised away.
This means that if the underlying data for a process changes, and you
lib/File/Tasks.pm view on Meta::CPAN
represents the combination of the two. Returns C<undef> on error.
The + operator is also effectively overloaded to this method
# The explicit way
my $Script = $Old->overlay($Install);
# Via the overload
my $Script = $Old + $Install;
=head1 TO DO
view all matches for this distribution
view release on metacpan or search on metacpan
data/mime-magic view on Meta::CPAN
0 string %PDF- application/pdf
0 lelong 0101555 PDP-11 single precision APL workspace
0 lelong 0101554 PDP-11 double precision APL workspace
0 leshort 0407 PDP-11 executable
0 leshort 0401 PDP-11 UNIX/RT ldp
0 leshort 0405 PDP-11 old overlay
0 leshort 0410 PDP-11 pure executable
0 leshort 0411 PDP-11 separate I&D executable
0 leshort 0437 PDP-11 kernel overlay
0 beshort 0x9900 PGP key public ring
0 beshort 0x9501 PGP key security ring
0 beshort 0x9500 PGP key security ring
0 beshort 0xa600 PGP encrypted data
0 string -----BEGIN\040PGP PGP armored data
data/mime-magic view on Meta::CPAN
0 lelong 0x206 b.out
0 leshort 0x580 XENIX 8086 relocatable or 80286 small model
0 long 0xe807 object file (z8000 a.out)
0 long 0xe808 pure object file (z8000 a.out)
0 long 0xe809 separate object file (z8000 a.out)
0 long 0xe805 overlay object file (z8000 a.out)
0 string ZyXEL\002 ZyXEL voice data
0 string BLENDER application/x-blender
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Filesys/POSIX/Real/Directory.pm view on Meta::CPAN
return bless {
'path' => $path,
'inode' => $inode,
'mtime' => 0,
'overlays' => {},
'detached' => {},
'skipped' => {},
'members' => {
'.' => $inode,
'..' => $inode->{'parent'} ? $inode->{'parent'} : $inode
lib/Filesys/POSIX/Real/Directory.pm view on Meta::CPAN
return unless $mtime > $self->{'mtime'};
$self->open;
# This uses readdir to bypass the aliased/detached overlays
while ( my $item = readdir $self->{'dh'} ) {
$self->_sync_member($item);
}
$self->close;
lib/Filesys/POSIX/Real/Directory.pm view on Meta::CPAN
sub get {
my ( $self, $name ) = @_;
return undef if ( exists $self->{'detached'}->{$name} );
return $self->{'overlays'}->{$name} if ( exists $self->{'overlays'}->{$name} );
$self->_sync_member($name) unless exists $self->{'members'}->{$name};
return $self->{'members'}->{$name};
}
sub set {
my ( $self, $name, $inode ) = @_;
delete $self->{'detached'}->{$name};
$self->{'overlays'}->{$name} = $inode;
return $inode;
}
sub rename_member {
my ( $self, undef, $olddir, $oldname, $newname ) = @_;
lib/Filesys/POSIX/Real/Directory.pm view on Meta::CPAN
}
sub exists {
my ( $self, $name ) = @_;
return '' if exists $self->{'detached'}->{$name};
return 1 if exists $self->{'overlays'}->{$name};
$self->_sync_member($name);
return exists $self->{'members'}->{$name};
}
lib/Filesys/POSIX/Real/Directory.pm view on Meta::CPAN
if ( exists $self->{'detached'}->{$name} ) {
return delete $self->{'detached'}->{$name};
}
if ( exists $self->{'overlays'}->{$name} ) {
return delete $self->{'overlays'}->{$name};
}
my $member = $self->{'members'}->{$name} or return;
my $subpath = "$self->{'path'}/$name";
lib/Filesys/POSIX/Real/Directory.pm view on Meta::CPAN
return undef if ( exists $self->{'detached'}->{$name} );
$self->{'detached'}->{$name} = undef;
foreach my $table (qw(members overlays)) {
next unless exists $self->{$table}->{$name};
return $self->{$table}->{$name};
}
}
sub list {
my ( $self, $name ) = @_;
$self->_sync_all;
my %union = ( %{ $self->{'members'} }, %{ $self->{'overlays'} } );
delete @union{ keys %{ $self->{'detached'} } };
return keys %union;
}
lib/Filesys/POSIX/Real/Directory.pm view on Meta::CPAN
}
sub open {
my ($self) = @_;
@{ $self->{'skipped'} }{ keys %{ $self->{'overlays'} } } =
values %{ $self->{'overlays'} };
$self->close;
opendir( $self->{'dh'}, $self->{'path'} ) or Carp::confess("$!");
lib/Filesys/POSIX/Real/Directory.pm view on Meta::CPAN
}
sub rewind {
my ($self) = @_;
@{ $self->{'skipped'} }{ keys %{ $self->{'overlays'} } } =
values %{ $self->{'overlays'} };
if ( $self->{'dh'} ) {
rewinddir $self->{'dh'};
}
view all matches for this distribution
view release on metacpan or search on metacpan
CompanyNames/TextSupport.pm view on Meta::CPAN
overindulged overindulgence
overinsurance overinsure overinsuring
overinvest overinvestment
overissuance overissuances overissue overissued
overlap overlapped overlapping overlappping overlaps
overlay overlayed overlaying overlays
overlayer overlayers
overlend overlending
overlies overly overlying
overload overloaded overloading overloadings overloads
overlook overlooked overlooking overlooks
overmixed overmixing
CompanyNames/TextSupport.pm view on Meta::CPAN
overland
overlap
overlapped
overlapping
overlaps
overlay
overlaying
overlays
overload
overloaded
overloading
overloads
overlook
view all matches for this distribution
view release on metacpan or search on metacpan
t/data/jisdor-2022-02-25.html view on Meta::CPAN
</div>
</div>
<div id="s4-workspace" class="ms-core-overlay">
<div id="s4-bodyContainer">
<div id="s4-titlerow" class="ms-dialogHidden s4-titlerowhidetitle d-none">
<div id="titleAreaBox" class="ms-noList ms-table ms-core-tableNoSpace">
<div id="titleAreaRow" class="ms-tableRow">
<div class="ms-breadcrumb-box ms-tableCell ms-verticalAlignTop">
t/data/jisdor-2022-02-25.html view on Meta::CPAN
</nav>
</div>
</div>
</header>
<div class="menu-overlay"></div>
<div id="contentRow">
<div id="sideNavBox" role="Navigation" class="ms-dialogHidden ms-forceWrap ms-noList">
<div id="DeltaPlaceHolderLeftNavBar" class="ms-core-navigation" role="navigation">
t/data/jisdor-2022-02-25.html view on Meta::CPAN
</li>
</ol>
</nav>
<h1 class="top-banner__title"> JISDOR</h1>
</div>
<div class="top-banner__overlay"></div>
</div>
<div style="display:none;">
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Finance/Quote/UserAgent.pm view on Meta::CPAN
}
# _add_custom_headers is a private method which does the dirty work
# of copying across headers and other fun things.
#
# We take the user-defined template, and then overlay the request over the
# top of it. This should get us by in most situations.
sub _add_custom_headers {
my ($this, $request) = @_;
my $header_template = $this->default_headers;
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Fl/Window.pod view on Meta::CPAN
Once you create a window, you usually add children L<Fl::Widget>s to it by
using C<<$window->add($child)>> for each new widget. See Fl::Group for more
information on how to add and remove children.
There are several subclasses of Fl::Window that provide double-buffering,
overlay, menu, and OpenGL support.
The window's callback is done if the user tries to close a window using the
window manager and Fl::modal() is zero or equal to the window. Fl::Window has
a default callback that calls C<<Fl::Window->hide()>>.
view all matches for this distribution
view release on metacpan or search on metacpan
public/assets/js/main.js view on Meta::CPAN
(function(){var e,t,n,r,o,i,s,a,l,c,u,p,h,d,f,m,y,g,v,b,T,x,_,C,E,w,P,S,k,D,R,M,O,A,I,N,j,L,F,B,U,H,W,z,K,V,q,Y,G,X,Q,$,J,Z,ee,te,ne=[].indexOf||function(e){for(var t=0,n=this.length;n>t;t++)if(t in this&&this[t]===e)return t;return-1},re=function(e,...
var o=document.body,i=new Headroom(o,{offset:n.position});i.init()},handleScroll:function(e){var t=document.documentElement.scrollTop?document.documentElement.scrollTop:document.body.scrollTop;for(var n in r.elements){var o=r.elements[n],i=r.getPosit...
}}var r=new Error;if("string"==typeof r.stack&&r.stack.split("\n")[0].indexOf("stackDetection@")>=0)return m=/@/,y=t,g=!0,function(e){e.stack=(new Error).stack};var o;try{throw new Error}catch(i){o="stack"in i}return"stack"in r||!o||"number"!=typeof ...
for(var p=this._promise,h=0;u>h;++h){var d=this._isResolved(),f=r(s[h],p);f instanceof t?(f=f._target(),d?f._ignoreRejections():f._isPending()?f._proxyPromiseArray(this,h):f._isFulfilled()?this._promiseFulfilled(f._value(),h):this._promiseRejected(f....
return Fs(e,t,ti)}function Mt(e,t){return Fs(e,t,Ua)}function Ot(e,t){return Bs(e,t,Ua)}function At(e,t){for(var n=-1,r=t.length,o=-1,i=[];++n<r;){var s=t[n];Io(e[s])&&(i[++o]=s)}return i}function It(e,t,n){if(null!=e){n!==w&&n in pr(e)&&(t=[n]);for(...
var n=t.length;return vo(function(r){for(var o=Cs(r.length,n);o--;)r[o]=t[o](r[o]);return e.apply(this,r)})}),Pa=Rn(O),Sa=Rn(A),ka=vo(function(e,t){return Ln(e,N,w,w,w,Dt(t))}),Da=bs||function(e){return g(e)&&nr(e.length)&&rs.call(e)==q},Ra=pn(Ht),Ma...
return n}var o=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},i=e("react"),s=e("./mixins/style-propable"),a=e("./styles/auto-prefix"),l...
return this.context.muiTheme.component.datePicker},render:function(){var e=this.props,t=(e.className,e.year),n=(e.onTouchTap,e.selected),s=r(e,["className","year","onTouchTap","selected"]),l={root:{boxSizing:"border-box",WebkitTapHighlightColor:"rgba...
label:o,labelPosition:s.PropTypes.oneOf(["before","after"]),labelStyle:s.PropTypes.object,onKeyboardFocus:s.PropTypes.func,onMouseEnter:s.PropTypes.func,onMouseLeave:s.PropTypes.func,onTouchStart:s.PropTypes.func,primary:s.PropTypes.bool,rippleColor:...
v&&this._pushElement(U,v,this.mergeStyles(B.avatars,B.leftAvatar)),C&&this._pushElement(U,C,this.mergeStyles(B.avatars,B.rightAvatar)),b&&this._pushElement(U,b,this.mergeStyles(B.leftCheckbox));var H=x.length,W=C||E||w||P,z=H&&t&&!W;if(w||z){var K=w,...
return p&&(h=this.state.isKeyboardFocused?"keyboard-focused":"focused"),i.cloneElement(e,{desktop:s,focusState:h,onTouchTap:function(t){r._handleMenuItemTouchTap(t,e),e.props.onTouchTap&&e.props.onTouchTap(t)},ref:p?"focusedMenuItem":null,style:u})},...
errorStyle:i.PropTypes.object,hintText:i.PropTypes.string,id:i.PropTypes.string,multiLine:i.PropTypes.bool,onBlur:i.PropTypes.func,onChange:i.PropTypes.func,onFocus:i.PropTypes.func,onKeyDown:i.PropTypes.func,onEnterKeyDown:i.PropTypes.func,type:i.Pr...
mixins:[o],render:function(){return r.createElement(i,this.props,r.createElement("path",{d:"M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z"}))}});t.exports=s},{"../../svg-icon":128,"react/addons":196}],136:[function(e,t,n){"use strict";var r=e("react/...
},underlineFocus:{borderBottom:"solid 2px",borderColor:t.focusColor,transform:"scaleX(0)",transition:c.easeOut()}};return r.error=this.mergeAndPrefix(r.error,e.errorStyle),r.underline=this.mergeAndPrefix(r.underline,e.underlineStyle),r.floatingLabel=...
e.target.style.color=this.getStyles().icon.hover.color},_handleMouseLeaveFontIcon:function(e){e.target.style.zIndex="auto",e.target.style.color=this.getStyles().icon.root.color}});t.exports=s},{"../mixins/style-propable":103,"../styles/colors":120,re...
return"https://checkout.stripe.com/checkout.js"},statics:{stripeHandler:null,scriptDidError:!1},hasPendingClick:!1,onScriptLoaded:function(){this.setState({scriptLoading:!1}),s.stripeHandler||this.updateStripeHandler()},updateStripeHandler:function()...
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Font/GlyphNames/glyphlist.txt view on Meta::CPAN
softhyphen;00AD
softsigncyrillic;044C
sohiragana;305D
sokatakana;30BD
sokatakanahalfwidth;FF7F
soliduslongoverlaycmb;0338
solidusshortoverlaycmb;0337
sorusithai;0E29
sosalathai;0E28
sosothai;0E0B
sosuathai;0E2A
space;0020
lib/Font/GlyphNames/glyphlist.txt view on Meta::CPAN
ssangsioskorean;3146
ssangtikeutkorean;3138
ssuperior;F6F2
sterling;00A3
sterlingmonospace;FFE1
strokelongoverlaycmb;0336
strokeshortoverlaycmb;0335
subset;2282
subsetnotequal;228A
subsetorequal;2286
succeeds;227B
suchthat;220B
lib/Font/GlyphNames/glyphlist.txt view on Meta::CPAN
tildebelowcmb;0330
tildecmb;0303
tildecomb;0303
tildedoublecmb;0360
tildeoperator;223C
tildeoverlaycmb;0334
tildeverticalcmb;033E
timescircle;2297
tipehahebrew;0596
tipehalefthebrew;0596
tippigurmukhi;0A70
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Font/Fret.pm view on Meta::CPAN
$xorg = $xcentre - $xorg / 2;
$xadv = $xorg + $font->{'hmtx'}{'advance'}[$gid] * $tsize / $upem;
$ppage->add(sprintf("%s %.4f %d m %.4f %d l S [] 0 d\n", $dots, $xadv, $ybase + 7, $xadv,$ybase + 57)) if ($xadv < $xcentre + 27);
$ppage->add(sprintf("%s %.4f %d m %.4f %d l S [] 0 d\n", $dots, $xorg, $ybase + 7, $xorg, $ybase + 57)) if ($xorg > $xcentre - 27 && $xorg < $xcentre + 27);
$ppage->add(sprintf("BT 1 0 0 1 %.4f %.4f Tm /T$id $tsize Tf 100 Tz $gcol <%04X> Tj %s ET\n", $xorg, $yorg, $gid, ($gcol ? "0 g " : "")));
@instr = $package->overlay(@parms);
if (@instr)
{
$ppage->add("q ");
foreach $in (@instr)
{
lib/Font/Fret.pm view on Meta::CPAN
my ($class, $font, $gid, $glyph) = @_;
return [];
}
=head2 overlay
Returns an array of arrays, each is an operator string followed by the parameters that will precede
the operator. If the operator is a contour forming op, then the positions will be transformed
from glyph space for rendering.
=cut
sub overlay
{
my ($class, $cid, $gid, $glyph, $uid, $font) = @_;
return [];
}
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Font/TTF/PSNames.pm view on Meta::CPAN
'softhyphen' => "\x{00AD}",
'softsigncyrillic' => "\x{044C}",
'sohiragana' => "\x{305D}",
'sokatakana' => "\x{30BD}",
'sokatakanahalfwidth' => "\x{FF7F}",
'soliduslongoverlaycmb' => "\x{0338}",
'solidusshortoverlaycmb' => "\x{0337}",
'sorusithai' => "\x{0E29}",
'sosalathai' => "\x{0E28}",
'sosothai' => "\x{0E0B}",
'sosuathai' => "\x{0E2A}",
'spacehackarabic' => "\x{0020}",
lib/Font/TTF/PSNames.pm view on Meta::CPAN
'ssangpieupkorean' => "\x{3143}",
'ssangsioskorean' => "\x{3146}",
'ssangtikeutkorean' => "\x{3138}",
'ssuperior' => "\x{F6F2}",
'sterlingmonospace' => "\x{FFE1}",
'strokelongoverlaycmb' => "\x{0336}",
'strokeshortoverlaycmb' => "\x{0335}",
'subset' => "\x{2282}",
'subsetnotequal' => "\x{228A}",
'subsetorequal' => "\x{2286}",
'succeeds' => "\x{227B}",
'suhiragana' => "\x{3059}",
lib/Font/TTF/PSNames.pm view on Meta::CPAN
'tikeutparenkorean' => "\x{3202}",
'tildebelowcmb' => "\x{0330}",
'tildecmb' => "\x{0303}",
'tildedoublecmb' => "\x{0360}",
'tildeoperator' => "\x{223C}",
'tildeoverlaycmb' => "\x{0334}",
'tildeverticalcmb' => "\x{033E}",
'timescircle' => "\x{2297}",
'tipehahebrew' => "\x{0596}",
'tipehalefthebrew' => "\x{0596}",
'tippigurmukhi' => "\x{0A70}",
view all matches for this distribution
view release on metacpan or search on metacpan
root/static/css/jquery/jquery.lightbox-0.4.css view on Meta::CPAN
* @category jQuery plugin
* @copyright (c) 2007 Leandro Vieira Pinho (leandrovieira.com)
* @license CC Attribution-No Derivative Works 2.5 Brazil - http://creativecommons.org/licenses/by-nd/2.5/br/deed.en_US
* @example Visit http://leandrovieira.com/projects/jquery/lightbox/ for more informations about this jQuery plugin
*/
#jquery-overlay {
position: absolute;
top: 0;
left: 0;
z-index: 90;
width: 100%;
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Footprintless/Plugin/Database/SqlShellAdapter.pm view on Meta::CPAN
version 1.06
=head1 SYNOPSIS
# Standard way of getting an overlay
use Footprintless::Plugin::Database::SqlShellAdapter qw(sql_shell);
sql_shell('DBI:CSV:f_dir=/tmp');
=head1 DESCRIPTION
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Footprintless.pm view on Meta::CPAN
sub plugins {
my ($self) = @_;
$self->{factory}->plugins();
}
sub overlay {
my ( $self, @args ) = @_;
$self->{factory}->overlay(@args);
}
sub resource_manager {
my ( $self, @args ) = @_;
$self->{factory}->resource_manager(@args);
lib/Footprintless.pm view on Meta::CPAN
use Footprintless;
my $footprintless = Footprintless->new();
# Deploy initialize, start, and follow the log of the foo
$footprintless->overlay('dev.foo.overlay')->initialize();
$footprintless->service('dev.foo.service')->start();
$footprintless->log('dev.foo.logs.app')->follow();
=head1 DESCRIPTION
lib/Footprintless.pm view on Meta::CPAN
},
hostname => 'app.pastdev.com',
logs => {
catalina => '/opt/foo/tomcat/logs/catalina.out'
},
overlay => {
'Config::Entities::inherit' => ['hostname', 'sudo_username'],
base_dir => '/home/me/git/foo/base',
clean => [
'/opt/foo/tomcat/'
],
lib/Footprintless.pm view on Meta::CPAN
A C<localhost> to use instead of that which is supplied by
this footprintless instance.
=back
=head2 overlay($coordinate, %options)
Returns a new instance of L<Footprintless::Overlay> preconfigured to
operate on the overlay at C<$coordinate>. Supported options are
=over 4
=item command_options_factory
view all matches for this distribution
view release on metacpan or search on metacpan
lib/FreeRADIUS/Database.pm view on Meta::CPAN
$self->update_ras_name( {
day => $day,
} );
}
# DELETE if this is an overlay run
$schema->resultset( 'DailyAgg' )->search({ acctdate => $day })->delete();
# FETCH
lib/FreeRADIUS/Database.pm view on Meta::CPAN
$month = $self->date( { get => 'month', datetime => $datetime } );
}
my $schema = $self->_schema();
# DELETE if overlay run
$schema->resultset( 'MonthlyAgg' )->search({
acctdate => { like => "$month%" },
})->delete();
view all matches for this distribution
view release on metacpan or search on metacpan
JS/js/jsapi.h view on Meta::CPAN
#define JSPROP_TINYIDHACK 0x80 /* prop->id is tinyid, not index */
/* Function flags, set in JSFunctionSpec and passed to JS_NewFunction etc. */
#define JSFUN_BOUND_METHOD 0x40 /* bind this to fun->object's parent */
#define JSFUN_GLOBAL_PARENT 0x80 /* reparent calls to cx->globalObject */
#define JSFUN_FLAGS_MASK 0xc0 /* overlay JSPROP_*HACK attributes */
/*
* Well-known JS values. The extern'd variables are initialized when the
* first JSContext is created by JS_NewContext (see below).
*/
view all matches for this distribution
view release on metacpan or search on metacpan
t/data/book06 view on Meta::CPAN
him with olive oil, and had clad himself in the raiment
that the unwedded maiden gave him, then Athene, the
daughter of Zeus, made him greater and more mighty to
behold, and from his head caused deep curling locks to
flow, like the hyacinth flower. And as when some skilful
man overlays gold upon silver--one that Hephaestus and
Pallas Athene have taught all manner of craft, and full of
grace is his handiwork--even so did Athene shed grace about
his head and shoulders.
Then to the shore of the sea went Odysseus apart, and sat
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Chj/xperlfunc.pm view on Meta::CPAN
ext3 => 1,
ext4 => 1,
tmpfs => 1,
vfat => 1,
squashfs => 1,
overlay => 0,
};
sub has_no_subdirs {
my $s = shift;
$s->is_dir or die "has_no_subdirs can only be used on directories";
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Fuse/TagLayer.pm view on Meta::CPAN
__END__
=head1 NAME
Fuse::TagLayer - A read-only tag-filesystem overlay for hierarchical filesystems
=head1 SYNOPSIS
use Fuse::TagLayer;
my $ftl = Fuse::PerlSSH::FS->new(
view all matches for this distribution
view release on metacpan or search on metacpan
lib/FusionInventory/Agent/Task/Inventory/Linux/Drives.pm view on Meta::CPAN
sub _getFilesystems {
my ($logger) = @_;
# get filesystems list
my @filesystems =
# exclude virtual file systems and overlay fs defined by docker
grep { $_->{FILESYSTEM} !~ /^(tmpfs|devtmpfs|usbfs|proc|devpts|devshm|udev)$/ && $_->{VOLUMN} !~ /^overlay$/ }
# get all file systems
getFilesystemsFromDf(logger => $logger, command => 'df -P -T -k');
# get additional informations
if (canRun('blkid')) {
view all matches for this distribution