view release on metacpan or search on metacpan
documentation/clacks.html view on Meta::CPAN
.bcp14 {
font-variant: small-caps;
font-weight: bold;
font-size: 0.9em;
}
/* Tweak the invisible space above H* in order not to overlay links in text above */
h2 {
margin-top: -18px; /* provide offset for in-page anchors */
padding-top: 31px;
}
h3 {
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Net/Dropbox.pm view on Meta::CPAN
sub file_status { #{{{
my $self = shift;
my $file = shift;
my $res = $self->_send_and_fetch(
"icon_overlay_file_status",
{ path => $file },
);
return $res;
} #}}}
lib/Net/Dropbox.pm view on Meta::CPAN
return { ok => 0, status => 'not a dir' }
unless( -d $dir );
my $res = $self->_send_and_fetch(
"icon_overlay_file_status",
{ path => $dir },
);
if($res->{ok} == 1) {
my $res2 = $self->_send_and_fetch(
view all matches for this distribution
view release on metacpan or search on metacpan
doc/display_device.cgi view on Meta::CPAN
document.getElementById("lat").innerHTML = center.y;
document.getElementById("lon").innerHTML = center.x;
}
);
GEvent.addListener(map, 'moveend',
function(overlay) {
var bounds = map.getBoundsLatLng();
var center = map.getCenterLatLng();
document.getElementById("maxX").innerHTML = bounds.maxX;
document.getElementById("maxY").innerHTML = bounds.maxY;
document.getElementById("minX").innerHTML = bounds.minX;
view all matches for this distribution
view release on metacpan or search on metacpan
demos/client/SNlib.pl view on Meta::CPAN
s/(<[^>]*\bname\s*=\s*["']?)([^\s"'>]*)/ $1 . &full_url($2) /ime,
next if /<\s*object\b/im ;
s/(<[^>]*\bsrc\s*=\s*["']?)([^\s"'>]*)/ $1 . &full_url($2) /ime,
s/(<[^>]*\bimagemap\s*=\s*["']?)([^\s"'>]*)/ $1 . &full_url($2) /ime,
next if /<\s*overlay\b/im ; # HTML 3.0
s/(<[^>]*\bcite\s*=\s*["']?)([^\s"'>]*)/ $1 . &full_url($2) /ime,
next if /<\s*q\b/im ;
s/(<[^>]*\bsrc\s*=\s*["']?)([^\s"'>]*)/ $1 . &full_url($2) /ime,
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Net/LDAP/SPNEGO.pm view on Meta::CPAN
sub _ldap_quote {
return join '', map { sprintf "\\%02x", $_ } unpack('C*',shift);
}
# with inspiration from
# https://github.com/josephglanville/posix-ldap-overlay/blob/master/lib/SID.pm
sub _unpack_sid {
return unpack 'C Vxx C V*', shift;
}
view all matches for this distribution
view release on metacpan or search on metacpan
inet_ntop.c view on Meta::CPAN
/*
* Note that int32_t and int16_t need only be "at least" large enough
* to contain a value of the specified size. On some systems, like
* Crays, there is no such thing as an integer variable with 16 bits.
* Keep this in mind if you think this function should have been coded
* to use pointer overlays. All the world's not a VAX.
*/
char tmp[sizeof "ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255"], *tp;
struct { int base, len; } best, cur;
unsigned int words[NS_IN6ADDRSZ / NS_INT16SZ];
int i;
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Net/Rovio.pm view on Meta::CPAN
=back
=head2 $rovio->getlogo()
Gets the 2 possible strings of text currently overlayed on the image, and thier position.
GetLogo Returns:
=over 4
view all matches for this distribution
view release on metacpan or search on metacpan
examples/sftp-server-atomic-put.pl view on Meta::CPAN
use Net::SFTP::Server::Constants qw(:all);
sub new {
my $class = shift;
my $self = $class->SUPER::new(@_);
$self->{overlay} = {};
$self;
}
sub handle_command_open_v3 {
my ($self, $id, $path, $flags, $attrs) = @_;
my $writable = $flags & SSH_FXF_WRITE;
my $perms = $attrs->{mode};
my ($old_umask, $fh, $target_path);
if (exists $self->{overlay}{$path}) {
$path = $self->{overlay}{$path}
}
elsif ($writable) {
if ( (-f $path and $flags & SSH_FXF_TRUNC) or
(!-e $path and $flags & SSH_FXF_CREAT) ) {
$target_path = $path;
examples/sftp-server-atomic-put.pl view on Meta::CPAN
if ($writable) {
Net::SFTP::Server::FS::_set_attrs($path, $attrs)
or $self->send_status_errno_response($id);
}
my $hid = $self->save_file_handler($fh, $flags, $perms, $target_path // $path);
$self->{overlay}{$target_path} = $path if defined $target_path;
$self->push_handle_response($id, $hid);
}
sub handle_command_close_v3 {
my ($self, $id, $hid) = @_;
examples/sftp-server-atomic-put.pl view on Meta::CPAN
or return $self->push_status_response($id, SSH_FX_FAILURE, "Bad file handler");
if ($type eq 'dir') {
closedir($fh) or return $self->push_status_errno_response($id);
}
elsif ($type eq 'file') {
my $path = delete $self->{overlay}{$target_path};
close($fh) or return $self->push_status_errno_response($id);
if (defined $path) {
rename $path, $target_path or return $self->push_status_errno_response($id);
}
}
examples/sftp-server-atomic-put.pl view on Meta::CPAN
my $method = "handle_command_${action}_v3";
my $super = Net::SFTP::Server::FS->can($method);
no strict 'refs';
*$method = sub {
my ($self, $id, $target_path) = @_;
my $path = $self->{overlay}{$target_path} // $target_path;
$super->($self, $id, $path);
};
}
DESTROY {
local ($!, $?, $@);
my $self = shift;
unlink $_ for (values %{$self->{overlay}});
}
my $server = main->new();
view all matches for this distribution
view release on metacpan or search on metacpan
clib/src/panda/net/pton.impl view on Meta::CPAN
/*
* Note that int32_t and int16_t need only be "at least" large enough
* to contain a value of the specified size. On some systems, like
* Crays, there is no such thing as an integer variable with 16 bits.
* Keep this in mind if you think this function should have been coded
* to use pointer overlays. All the world's not a VAX.
*/
char tmp[UV__INET6_ADDRSTRLEN], *tp;
struct { int base, len; } best, cur;
unsigned int words[sizeof(struct in6_addr) / sizeof(uint16_t)];
int i;
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Net/VNC.pm view on Meta::CPAN
&& defined $cursor->{x} )
{
#$cursor->{image}->save('cursor.png'); # temporary -- debugging
$image
= $image->clone(); # make a duplicate so we can overlay the cursor
$image->blend(
$cursor->{image},
1, # don't modify destination alpha
0, 0, $cursor->{width}, $cursor->{height}, # source dimensions
$cursor->{x}, $cursor->{y}, $cursor->{width},
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Net/Z3950/FOLIO/Config.pm view on Meta::CPAN
my $cfg = _compileConfigFile($cfgbase, undef, MISSING_ERROR);
my $isFirst = 1;
while (@extras) {
my $extra = shift @extras;
my $overlay = _compileConfigFile($cfgbase, $extra, $isFirst ? MISSING_TENANT : MISSING_FILTER);
$isFirst = 0;
_mergeConfig($cfg, $overlay);
}
my $path = $cfgbase;
if ($path =~ /\//) {
$path =~ s/(.*)?\/.*/$1/;
lib/Net/Z3950/FOLIO/Config.pm view on Meta::CPAN
return $val;
}
sub _mergeConfig {
my($base, $overlay) = @_;
my %complex_keys = (
okapi => 1,
login => 1,
indexMap => 1,
lib/Net/Z3950/FOLIO/Config.pm view on Meta::CPAN
circulation => 1,
},
);
foreach my $key (keys (%complex_keys)) {
if (defined $overlay->{$key}) {
if (ref $base->{$key} eq 'HASH') {
_mergeHash($base->{$key}, $overlay->{$key}, $complex_keys{$key});
} else {
$base->{$key} = $overlay->{$key};
}
}
}
foreach my $key (sort keys %$overlay) {
if (!$complex_keys{$key}) {
$base->{$key} = $overlay->{$key};
}
}
}
sub _mergeHash {
my($base, $overlay, $keysOfsubStructures) = @_;
foreach my $key (sort keys %$overlay) {
if (ref $keysOfsubStructures eq 'HASH' && $keysOfsubStructures->{$key}) {
_mergeHash($base->{$key}, $overlay->{$key}, $keysOfsubStructures->{$key});
} else {
$base->{$key} = $overlay->{$key};
}
}
}
=encoding utf-8
view all matches for this distribution
view release on metacpan or search on metacpan
=item initialise()
Called by B<new()> to initialise the new object. Initialisation keys
may be specified as a hash, supplied as a parameter to the new
object, or as a filename or file handle containing a frozen
B<NetServer::SMTP> object which is users to overlay the object.
Recognized keys are:
=over 4
$file->close();
($self, @junk) = thaw($frozen);
$self->{spooledfile} = $fn;
return $self;
} elsif (scalar(@_) % 2 == 0) {
# it's an initialisation hash -- overlay it on $self
%$self = (@_);
return $self;
} else {
croak "Don't know how to initialise from [", join("][", @_), "]\n";
}
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Number/Phone.pm view on Meta::CPAN
=item country
The two letter ISO country code for the country in which the call will
terminate. This is implemented in the superclass and you will only have
to implement your own version for countries where part of the number
range is overlayed with another country.
Exception: for the UK, return 'uk', not 'gb'.
Specifically, the superclass implementation looks at the class name and
returns the last two-letter code it finds. eg ...
view all matches for this distribution
view release on metacpan or search on metacpan
t/fam/sprites/note_add.png
t/fam/sprites/note_delete.png
t/fam/sprites/note_edit.png
t/fam/sprites/note_error.png
t/fam/sprites/note_go.png
t/fam/sprites/overlays.png
t/fam/sprites/package.png
t/fam/sprites/package_add.png
t/fam/sprites/package_delete.png
t/fam/sprites/package_go.png
t/fam/sprites/package_green.png
view all matches for this distribution
view release on metacpan or search on metacpan
lib/OCR/OcrSpace.pm view on Meta::CPAN
{"ParsedResults":[{"TextOverlay":{"Lines":[{"LineText":"Current","Words":[{"WordText":"Current","Left":11.666666030883789,"Top":59.166664123535156,"Height":14.999999046325684,"Width":54.999996185302734}],"MaxHeight":14.999999046325684,"MinTop":59...
=head2 Sample Ouput error
{"OCRExitCode":99,"IsErroredOnProcessing":true,"ErrorMessage":["Parameter name 'attributes' is invalid. Valid parameters: apikey,url,language,isoverlayrequired,base64image,iscreatesearchablepdf,issearchablepdfhidetextlayer,filetype,addressparsing...
=cut
####################
# internal function
view all matches for this distribution
view release on metacpan or search on metacpan
implemented.
The above illustrates how to define the various restrictions to a particular
property. Keep in mind that this is only the prototype so it does not directly
deal with data passed into a constructor. One way of seeing it is as a template
that is overlayed with the actual data from the constructor.
Providing a definition of a property is always optional. If none is provided then
various logical defaults apply. If one does not provide definitions then it will
be considered that the elements (or properties) in the prototype are not exclusive
but they are required. In other words one could add properties dynamically but the
view all matches for this distribution
view release on metacpan or search on metacpan
lib/OOPS/TxHash.pm view on Meta::CPAN
use strict;
sub commit
{
my $self = shift;
my ($under, $overlay, $whiteout) = @$self;
for my $key (keys %$whiteout) {
delete $under->{$key};
}
@$under{keys %$overlay} = values %$overlay;
%$overlay = ();
%$whiteout = ();
}
sub abort
{
my $self = shift;
my ($under, $overlay, $whiteout, $count) = @$self;
%$overlay = ();
%$whiteout = ();
$$count = keys %$under;
}
sub TIEHASH
lib/OOPS/TxHash.pm view on Meta::CPAN
}
sub FETCH
{
my $self = shift;
my ($under, $overlay, $whiteout) = @$self;
my $key = shift;
return undef if exists $whiteout->{$key};
return $overlay->{$key} if exists $overlay->{$key};
return $under->{$key};
}
sub STORE
{
my $self = shift;
my ($under, $overlay, $whiteout, $count) = @$self;
my ($key, $value) = @_;
$$count++ if exists $whiteout->{$key}
or ! (exists $under->{$key} or exists $overlay->{$key});
$overlay->{$key} = $value;
delete $whiteout->{$key};
return $value;
}
sub DELETE
{
my $self = shift;
my ($under, $overlay, $whiteout, $count) = @$self;
my $key = shift;
my $old = $self->FETCH($key);
return $old if exists $whiteout->{$key};
$$count-- if exists $under->{$key} or exists $overlay->{$key};
$whiteout->{$key} = 1;
delete $overlay->{$key};
return $old;
}
sub CLEAR
{
my $self = shift;
my ($under, $overlay, $whiteout, $count) = @$self;
for my $key (keys %$overlay) {
$$count-- unless $whiteout->{$key};
}
%$overlay = ();
for my $key (keys %$under) {
$$count-- unless $whiteout->{$key};
}
@$whiteout{keys %$under} = (1) x scalar(keys %$under);
}
sub EXISTS
{
my $self = shift;
my ($under, $overlay, $whiteout) = @$self;
my $key = shift;
return 0 if exists $whiteout->{$key};
return 1 if exists $overlay->{$key};
return 1 if exists $under->{$key};
return 0;
}
sub FIRSTKEY
{
my $self = shift;
my ($under, $overlay, $whiteout, $count, $doneunder) = @$self;
keys %$under;
keys %$overlay;
$$doneunder = 0;
return $self->NEXTKEY;
}
sub NEXTKEY
{
my $self = shift;
my ($under, $overlay, $whiteout, $count, $doneunder) = @$self;
my ($key, $value);
unless ($$doneunder) {
while (($key, $value) = each(%$under)) {
next if $whiteout->{$key};
return $key;
}
$$doneunder = 1;
}
while (($key, $value) = each(%$overlay)) {
next if $whiteout->{$key};
return $key;
}
return ();
}
sub SCALAR
{
my $self = shift;
my ($under, $overlay, $whiteout, $count) = @$self;
return $$count;
}
1;
view all matches for this distribution
view release on metacpan or search on metacpan
lib/ORLite.pm view on Meta::CPAN
Secondly, it will create one sub-package underneath the namespace of the root
module for each table or view it finds in the database.
Once the basic table support has been generated, it will also try to load an
"overlay" module of the same name. Thus, by created a Foo::TableName module on
disk containing "extra" code, you can extend the original and add additional
functionality to it.
=head1 OPTIONS
view all matches for this distribution
view release on metacpan or search on metacpan
lib/OSS/LDAPops.pm view on Meta::CPAN
notifypasswordexpiry.pl - a script to send an email to users when their password expires.
=item *
ppolicy.ldif - an example password policy to use with the ppolicy overlay.
=item *
Several other example files, to asisst in setting up *NIX servers to use the directory are also included.
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Object/Configure.pm view on Meta::CPAN
[My__Module]
logger.file = /var/log/mymodule.log
The C<configure()> function will read this file,
overlay it onto your default parameters,
and initialize the logger accordingly.
If the file is not readable and no config_dirs are provided,
the module will throw an error.
To be clear, in this case, inheritance is not followed.
lib/Object/Configure.pm view on Meta::CPAN
$obj->{$key} = _build_logger($logger_config, $carp_on_warn);
return;
}
# Purpose: Right-precedence deep merge of two hash references.
# Scalar/arrayref values in $overlay replace those in $base entirely;
# nested hashrefs are merged recursively.
# Entry: Both args should be hashrefs (or undef/non-ref, handled gracefully).
# Exit: Returns a new hashref; neither input is modified.
sub _deep_merge {
my ($base, $overlay) = @_;
return $overlay unless ref($base) eq 'HASH';
return $overlay unless ref($overlay) eq 'HASH';
my $result = { %$base };
foreach my $key (keys %$overlay) {
if(ref($overlay->{$key}) eq 'HASH' && ref($result->{$key}) eq 'HASH') {
$result->{$key} = _deep_merge($result->{$key}, $overlay->{$key});
} else {
$result->{$key} = $overlay->{$key};
}
}
return $result;
}
view all matches for this distribution
view release on metacpan or search on metacpan
examples/basic.pl view on Meta::CPAN
$light->setType(LT_DIRECTIONAL);
$light->setDirection(-1,-1,-1);
# Perl note: see Ogre::BetaGUI::GUI createOverlay for a similar example
# (note also createOverlayContainer is specific to Perl Ogre)
my $overlayMgr = Ogre::OverlayManager->getSingletonPtr;
my $panel = $overlayMgr->createOverlayContainer("Panel", "PanelName");
$panel->setMetricsMode(GMM_PIXELS);
$panel->setPosition(10, 10);
$panel->setDimensions(100, 100);
my $textArea = $overlayMgr->createTextAreaOverlayElement("TextArea", "TextAreaName");
$textArea->setMetricsMode(GMM_PIXELS);
$textArea->setPosition(0, 0);
$textArea->setDimensions(100, 100);
$textArea->setCharHeight(16);
$textArea->setFontName("Arial");
$textArea->setCaption("Hello, World!");
my $overlay = $overlayMgr->create("AverageFps");
$overlay->add2D($panel);
$panel->addChild($textArea);
$overlay->show();
}
sub setupResources {
my ($self) = @_;
view all matches for this distribution
view release on metacpan or search on metacpan
examples/resources.cfg view on Meta::CPAN
FileSystem=Samples/Media/fonts
FileSystem=Samples/Media/materials/programs
FileSystem=Samples/Media/materials/scripts
FileSystem=Samples/Media/materials/textures
FileSystem=Samples/Media/models
FileSystem=Samples/Media/overlays
FileSystem=Samples/Media/particle
FileSystem=Samples/Media/gui
FileSystem=Samples/Media/DeferredShadingMedia
FileSystem=Samples/Media/PCZAppMedia
Zip=Samples/Media/packs/cubemap.zip
view all matches for this distribution
view release on metacpan or search on metacpan
Ogre/ExampleFrameListener.pm view on Meta::CPAN
sub updateStats {
my ($self) = @_;
# there's a `try' block around this in C++,
# not sure why - maybe for when these overlay elements
# don't exist?
my $om = Ogre::OverlayManager->getSingletonPtr();
my $guiAvg = $om->getOverlayElement("Core/AverageFps");
my $guiCurr = $om->getOverlayElement("Core/CurrFps");
view all matches for this distribution
view release on metacpan or search on metacpan
include/GL/freeglut_std.h view on Meta::CPAN
*/
FGAPI void FGAPIENTRY glutWarpPointer( int x, int y );
FGAPI void FGAPIENTRY glutSetCursor( int cursor );
/*
* Overlay stuff, see freeglut_overlay.c
*/
FGAPI void FGAPIENTRY glutEstablishOverlay( void );
FGAPI void FGAPIENTRY glutRemoveOverlay( void );
FGAPI void FGAPIENTRY glutUseLayer( GLenum layer );
FGAPI void FGAPIENTRY glutPostOverlayRedisplay( void );
view all matches for this distribution
view release on metacpan or search on metacpan
include/GL/glxew.h view on Meta::CPAN
#define GLXEW_OML_sync_control GLXEW_GET_VAR(__GLXEW_OML_sync_control)
#endif /* GLX_OML_sync_control */
/* ------------------------ GLX_SGIS_blended_overlay ----------------------- */
#ifndef GLX_SGIS_blended_overlay
#define GLX_SGIS_blended_overlay 1
#define GLX_BLENDED_RGBA_SGIS 0x8025
#define GLXEW_SGIS_blended_overlay GLXEW_GET_VAR(__GLXEW_SGIS_blended_overlay)
#endif /* GLX_SGIS_blended_overlay */
/* -------------------------- GLX_SGIS_color_range ------------------------- */
#ifndef GLX_SGIS_color_range
#define GLX_SGIS_color_range 1
include/GL/glxew.h view on Meta::CPAN
/* --------------------- GLX_SUN_get_transparent_index --------------------- */
#ifndef GLX_SUN_get_transparent_index
#define GLX_SUN_get_transparent_index 1
typedef Status ( * PFNGLXGETTRANSPARENTINDEXSUNPROC) (Display* dpy, Window overlay, Window underlay, unsigned long* pTransparentIndex);
#define glXGetTransparentIndexSUN GLXEW_GET_FUN(__glewXGetTransparentIndexSUN)
#define GLXEW_SUN_get_transparent_index GLXEW_GET_VAR(__GLXEW_SUN_get_transparent_index)
include/GL/glxew.h view on Meta::CPAN
GLXEW_VAR_EXPORT GLboolean __GLXEW_NV_vertex_array_range;
GLXEW_VAR_EXPORT GLboolean __GLXEW_NV_video_capture;
GLXEW_VAR_EXPORT GLboolean __GLXEW_NV_video_out;
GLXEW_VAR_EXPORT GLboolean __GLXEW_OML_swap_method;
GLXEW_VAR_EXPORT GLboolean __GLXEW_OML_sync_control;
GLXEW_VAR_EXPORT GLboolean __GLXEW_SGIS_blended_overlay;
GLXEW_VAR_EXPORT GLboolean __GLXEW_SGIS_color_range;
GLXEW_VAR_EXPORT GLboolean __GLXEW_SGIS_multisample;
GLXEW_VAR_EXPORT GLboolean __GLXEW_SGIS_shared_multisample;
GLXEW_VAR_EXPORT GLboolean __GLXEW_SGIX_fbconfig;
GLXEW_VAR_EXPORT GLboolean __GLXEW_SGIX_hyperpipe;
view all matches for this distribution
view release on metacpan or search on metacpan
include/GL/freeglut_std.h view on Meta::CPAN
*/
FGAPI void FGAPIENTRY glutWarpPointer( int x, int y );
FGAPI void FGAPIENTRY glutSetCursor( int cursor );
/*
* Overlay stuff, see freeglut_overlay.c
*/
FGAPI void FGAPIENTRY glutEstablishOverlay( void );
FGAPI void FGAPIENTRY glutRemoveOverlay( void );
FGAPI void FGAPIENTRY glutUseLayer( GLenum layer );
FGAPI void FGAPIENTRY glutPostOverlayRedisplay( void );
view all matches for this distribution
view release on metacpan or search on metacpan
lib/auto/OpusVL/AppKit/root/static/css/vader/jquery-ui-1.9.0.custom.css view on Meta::CPAN
/* Misc visuals
----------------------------------*/
/* Overlays */
.ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.ui-resizable { position: relative;}
.ui-resizable-handle { position: absolute;font-size: 0.1px; display: block; }
.ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; }
.ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0; }
.ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0; }
lib/auto/OpusVL/AppKit/root/static/css/vader/jquery-ui-1.9.0.custom.css view on Meta::CPAN
.ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr { -moz-border-radius-topright: 5px; -webkit-border-top-right-radius: 5px; -khtml-border-top-right-radius: 5px; border-top-right-radius: 5px; }
.ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl { -moz-border-radius-bottomleft: 5px; -webkit-border-bottom-left-radius: 5px; -khtml-border-bottom-left-radius: 5px; border-bottom-left-radius: 5px; }
.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br { -moz-border-radius-bottomright: 5px; -webkit-border-bottom-right-radius: 5px; -khtml-border-bottom-right-radius: 5px; border-bottom-right-radius: 5px; }
/* Overlays */
.ui-widget-overlay { background: #aaaaaa url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x; opacity: .3;filter:Alpha(Opacity=30); }
.ui-widget-shadow { margin: -8px 0 0 -8px; padding: 8px; background: #aaaaaa url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x; opacity: .3;filter:Alpha(Opacity=30); -moz-border-radius: 8px; -khtml-border-radius: 8px; -webkit-border-radius:...
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Otogiri/Plugin/TableInfo/PgKeywords.pm view on Meta::CPAN
'nchar',
'none',
'nullif',
'numeric',
'out',
'overlay',
'position',
'precision',
'real',
'row',
'setof',
view all matches for this distribution
view release on metacpan or search on metacpan
lib/PAGI/Server.pm view on Meta::CPAN
=item * Network filesystems (NFS, SMB, cloud storage)
=item * High-latency storage (spinning disks under load)
=item * Docker volumes with overlay filesystem
=back
The default (64KB) is optimized for local SSDs where small synchronous reads
are faster than the overhead of async I/O.
view all matches for this distribution