view release on metacpan or search on metacpan
in the generation and application of patch kits to synchronise source
trees.
INTRODUCTION
Traditionally, source trees are updated with the 'patch' program,
processing patch information that is generated by the 'diff' program.
Although 'diff' and 'patch' do a very good job at patching file
contents, most versions do not handle creating and deleting files and
directories, and adjusting of file modes and time stamps. Newer
versions of 'diff' and 'patch' seem to be able to create files, and
view all matches for this distribution
view release on metacpan or search on metacpan
lib/CWB/Encoder.pm view on Meta::CPAN
of an existing corpus (using the B<cwb-makeall> tool). In addition,
these attributes are automatically compressed (using the
B<cwb-huffcode> and B<cwb-compress-rdx> tools). Compression and
indexing is interleaved to minimise the required amount of temporary
disk space, and a B<make>-like system ensures that old index files are
automatically updated.
B<CWB::Encoder> automates all steps necessary to encode a CWB corpus
(which includes cleaning up old files, running B<cwb-encode>, editing
the registry entry, indexing & compressing positional attributes, and
setting access permissions). Both modules can be set up with a few
lib/CWB/Encoder.pm view on Meta::CPAN
croak "CWB::Indexer: no rule found for component $comp (aborted).\n"
unless defined $rule;
my ($trigger, $needed, $creates, $command, $delete) =
@$rule{qw<TRIGGER NEEDED CREATES COMMAND DELETE>};
my $update = 0; # check whether component needs to be created / updated
my $file = $self->filename($att, $comp);
if (not -f $file) {
print STDERR "CWB::Indexer: component $att/$comp does not exist -> create\n"
if $self->{DEBUG};
$update = 1; # file does not exist -> create
lib/CWB/Encoder.pm view on Meta::CPAN
=item $idx->make($att1, $att2, ...);
Process one or more positional attributes. An index is built for each
attribute and the data files are compressed. Missing files are
re-created (if possible) and old files are updated automatically.
=cut
sub make {
my $self = shift;
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Crypt/OpenSSL/PKCS12.pm view on Meta::CPAN
=back
=head1 INCOMPATIBILITIES
Currently the library has been updated to support both OpenSSL 1.X.X and OpenSSL 3.X.X
=head1 BUGS AND LIMITATIONS
Please see the L<GitHub repository|https://github.com/dsully/perl-crypt-openssl-pkcs12/issues> for known issues.
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Alvis/Canonical.pm view on Meta::CPAN
sub _contents2canDoc
{
my $self=shift;
my $contents=shift; # contains relevant HTML markup
my $header=shift; # will be updated with information like links
my $source_encoding=shift;
my $can_doc;
if ($DEBUG)
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Alvis/NLPPlatform/Annotation.pm view on Meta::CPAN
###
### Package Annotation
###
### Last updated:
### Thursday, August 31st, 2006
### Julien DERIVIERE, Thierry Hamon
### e-mail: julien.deriviere@lipn.univ-paris13.fr, thierry.hamon@lipn.univ-paris13.fr
package Alvis::NLPPlatform::Annotation;
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Alvis/Pipeline.pm view on Meta::CPAN
therefore not appropriate for this low-level module to deal with.
(As a matter of application design, we offer the observation that, in
Alvis, the C<<id>> attribute on the top-level element specifies the
identity of the record, and should remain changed even if the record
itself is updated; so any out-of-band request for records to be
re-sent should do so by specifying the IDs of the required records.)
=head2 write()
# Write-pipes only
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Alzabo/BackCompat.pm view on Meta::CPAN
Alzabo can update your schema objects but your schema file:
$c_file
is not writeable by this process. Loading this schema in a process
which can write to this file will cause the schema to be updated.
EOF
die $msg;
}
lib/Alzabo/BackCompat.pm view on Meta::CPAN
Alzabo can update your schema objects but its director:
$dir
is not writeable by this process. Loading this schema in a process
which can write to this file will cause the schema to be updated.
EOF
die $msg;
}
lib/Alzabo/BackCompat.pm view on Meta::CPAN
if ($create_loaded)
{
warn <<"EOF"
Your schema, $p{name}, has been updated to be compatible with the
installed version of Alzabo. This required that the Alzabo::Create::*
classes be loaded. If you were loading an Alzabo::Runtime::Schema
object, your running process is now somewhat larger than it has to be.
If this is a long running process you may want to reload it.
view all matches for this distribution
view release on metacpan or search on metacpan
Revision history for Amazon-CloudFront-Thin
0.05 2019-04-20
- update API endpoints (Chris Compton)
- support filenames containing ']]>'
- updated CloudFront documentation links
0.04 2015-12-29
- Docs on handling unicode paths (Devin Ceartas)
0.03 2015-09-19
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Amazon/DynamoDB/Simple.pm view on Meta::CPAN
$table->keys();
# delete $old_key, create $new_key
$table->rename($old_key, $new_key);
# sync data between AWS regions using the 'last_updated' field to select
# the newest data. This method will permanently delete any items marked as
# 'deleted'.
$table->sync_regions();
# This sets the value of the hosts attribute. The value shown is the
lib/Amazon/DynamoDB/Simple.pm view on Meta::CPAN
sub put {
my ($self, %item) = @_;
# timestamp this transaction
$item{last_updated} = DateTime->now . ""; # stringify datetime
$item{deleted} ||= 0;
%item = $self->deflate(%item);
my $dynamodbs = $self->dynamodbs();
my $success = 0;
lib/Amazon/DynamoDB/Simple.pm view on Meta::CPAN
for my $item (@items) {
next unless $item;
$most_recent = $item
if !$most_recent ||
$most_recent->{last_updated} le $item->{last_updated};
}
return if $most_recent->{deleted};
return $self->inflate(%$most_recent);
lib/Amazon/DynamoDB/Simple.pm view on Meta::CPAN
for my $from_key (keys %$from_items) {
my $from_value = $from_items->{$from_key};
my $to_value = $to_items->{$from_key};
if (!$to_value) {
$to_value = {last_updated => '1900-01-01T00:00:00'};
$to_items->{$from_key} = $to_value;
}
my $updated0 = $from_value->{last_updated};
my $updated1 = $to_value->{last_updated};
# don't need to sync if the items are the same age and not deleted
next if $updated0 eq $updated1 && !$to_value->{deleted};
# find the newest item
my $newest = $updated0 gt $updated1
? $from_value
: $to_value;
# sync newest item to the other region
if ($newest->{deleted}) {
lib/Amazon/DynamoDB/Simple.pm view on Meta::CPAN
}
# Lets say we are syncing from $dynamodb0 -> $dynamodb1. This prevents
# us from re syncing this item when we sync in the other direction from
# $dynamodb1 -> $dynamodb0
$to_value->{last_updated} = $from_value->{last_updated};
}
}
sub items {
my ($self) = @_;
view all matches for this distribution
view release on metacpan or search on metacpan
t/03-simple-get-put.t view on Meta::CPAN
}
)->is_done, "Updated item retrieved");
ok(defined($found_item), "Updated item was successfully retrieved");
is($found_item->{user_id}, 2, "user_id is 2");
is($found_item->{name}, "Rusty Conover-3", "updated name is found");
is($found_item->{added_number}, 1005, "updated added_number is mathematically added");
is($found_item->{subtracted_number}, 995, "updated subtracted_number is mathematically added");
ok(!defined($found_item->{favorite_color}), "updated favorite_color is undefined, since it was deleted");
eq_or_diff([600, 800],
[sort @{$found_item->{test_numbers}}], "Deleted Number array matches");
eq_or_diff([1],
t/03-simple-get-put.t view on Meta::CPAN
}
)->is_done, "Updated item retrieved");
ok(defined($found_item), "Updated item was successfully retrieved");
is($found_item->{user_id}, 3, "user_id is 3");
is($found_item->{name}, "Rusty", "non updated name is found");
}
{
my $update = $ddb->update_item(
t/03-simple-get-put.t view on Meta::CPAN
}
)->is_done, "Updated item retrieved");
ok(defined($found_item), "Updated item was successfully retrieved");
is($found_item->{user_id}, 3, "user_id is 3");
is($found_item->{name}, "R2D2", "updated name is found");
}
ok($ddb->delete_table(TableName => $table_name)->is_done, "Successfully deleted table named $table_name");
view all matches for this distribution
view release on metacpan or search on metacpan
examples/amazon_mws.sql view on Meta::CPAN
shop_id VARCHAR(64) NOT NULL,
task VARCHAR(64) NOT NULL,
-- if complete one or those has to be set.
aborted BOOLEAN NOT NULL DEFAULT FALSE,
success BOOLEAN NOT NULL DEFAULT FALSE,
last_updated TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (amws_job_id, shop_id)
);
CREATE TABLE amazon_mws_feeds (
amws_feed_pk SERIAL NOT NULL PRIMARY KEY,
examples/amazon_mws.sql view on Meta::CPAN
processing_complete BOOLEAN NOT NULL DEFAULT FALSE,
aborted BOOLEAN NOT NULL DEFAULT FALSE,
success BOOLEAN NOT NULL DEFAULT FALSE,
errors TEXT,
notes TEXT,
last_updated TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
);
-- table to keep track of the uploaded items
CREATE TABLE amazon_mws_products (
examples/amazon_mws.sql view on Meta::CPAN
amws_job_id VARCHAR(64) REFERENCES amazon_mws_jobs(amws_job_id),
error_code integer NOT NULL DEFAULT '0',
error_msg TEXT,
listed_date DATETIME,
-- our update
last_updated TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (sku, shop_id)
);
CREATE TABLE amazon_mws_orders (
shop_id VARCHAR(64) NOT NULL,
examples/amazon_mws.sql view on Meta::CPAN
shop_order_id VARCHAR(64) NOT NULL,
amws_job_id VARCHAR(64) REFERENCES amazon_mws_jobs(amws_job_id),
error_code INTEGER NOT NULL DEFAULT 0,
error_msg TEXT,
confirmed BOOLEAN NOT NULL DEFAULT FALSE,
last_updated TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (shop_id, amazon_order_id)
);
ALTER TABLE amazon_mws_orders ADD COLUMN shipping_confirmation_job_id VARCHAR(64) REFERENCES amazon_mws_jobs(amws_job_id);
ALTER TABLE amazon_mws_orders ADD COLUMN shipping_confirmation_ok BOOLEAN NOT NULL DEFAULT FALSE;
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Amazon/S3.pm view on Meta::CPAN
=item DeleteObjects
=back
Additionally, this module now implements Signature Version 4 signing,
unit tests have been updated and more documentation has been added or
corrected. Credentials are encrypted if you have encryption modules installed.
=head2 Comparison to Other Perl S3 Modules
Other implementations for accessing Amazon's S3 service include
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Amazon/SES.pm view on Meta::CPAN
my $msg = MIME::Entity->build();
my $r = $ses->send( $msg );
=head1 DESCRIPTION
Implements Amazon Web Services' Simple Email Service (SES). Sess L<http://docs.aws.amazon.com/ses/latest/DeveloperGuide/Welcome.html> for details and to sign-up for the service. Forked from Net::AWS::SES, changed to use Moops and updated to support ...
=head1 GETTING STARTED
After you sign-up for AWS SES service you need to create an C<IAM> credentials and create an C<access_key> and a C<secret_key>, which you will be needing to interface with the SES. Do not forget to grant permission to your C<IAM> to use SES. Read L<h...
view all matches for this distribution
view release on metacpan or search on metacpan
2.01 1 Jul 2013
Fix bug with SendMessageBatch and single messages :D
2.02 1 Jul 2013
As above with updated Changes file :D
2.04 1 Sep 2013
Retry 500 errors (on advice from AWS support)
Handle ARN-style endpoints (https://sqs.<host>.amazonaws.com/<nnn>/<queue>)
view all matches for this distribution
view release on metacpan or search on metacpan
factpacks/Linux.fact view on Meta::CPAN
Cygwin => <reply> $who, Gcc cross-compiler for win32, with UNIX-like API.. URL: http://sourceware.cygnus.com/cygwin/
Cyphesis => <reply> $who, Fantasy RPG using A-Life techniques.. URL: http://www.geocities.com/SiliconValley/Station/4279/
Cyrus IMAP server => <reply> $who, Full featured IMAP server. URL: http://asg.web.cmu.edu/cyrus/
Cyrus SASL => <reply> $who, generic client/server library for SASL authentication. URL: http://asg.web.cmu.edu/cyrus/
d1x => <reply> $who, Cross-platform version of Descent 1 with many bugfixes/enhancements. URL: http://d1x.warpcore.org/
DAC960 drivers => <reply> $who, Mylex DAC960 drivers updated!. URL: http://www.dandelion.com/Linux/DAC960.html
dagrab => <reply> $who, Extracts digital audio from CD and stores it in WAV files (incl CDDB). URL: http://metalab.unc.edu/pub/Linux/apps/sound/cdrom/dagrab-0.3.3.tar.gz
DailyUpdate => <reply> $who, Grabs dynamic information from the internet and integrates itinto your webpage. URL: http://www.cs.virginia.edu/~dwc3q/code/DailyUpdate/index.html
Dallas DS-1820 Sensor Monitor => <reply> $who, Basic interface to Dallas Semi 1-wire temperature sensors. URL: http://home.att.net/~rongage/
Dallas DS-1820 Temperature Sensor Monitor => <reply> $who, Application and library for talking to Dallas Semi 1-wire devices. URL: http://home.att.net/~rongage/
Dancer => <reply> $who, IRC defense bot, protects your channel and your users. URL: http://www.fts.frontec.se/~dast/dancer/
factpacks/Linux.fact view on Meta::CPAN
kwave => <reply> $who, A simple digital sound signal editor for KDE. URL: http://fs.spinfo.uni-koeln.de/~kwave/
KWeather => <reply> $who, A KDE dock applet that can display the current weather outside.. URL: http://www.msoe.edu/~geiseri/projects.phtml?project=kweather
KWebDev => <reply> $who, Web Development Environment. URL: http://mason.gmu.edu/~ebanker/kwebdev/index.html
KWebHeadlines => <reply> $who, Displays Web Headlines in the KDE root menu. URL: http://members.xoom.com/cpiccione/
KWebSearch => <reply> $who, KDE Web Search Engine Frontend. URL: http://www.bawue.de/~rgoetz/kwebsearch.html
KWebWatch => <reply> $who, Utility to monitor web pages, looking for updated content. URL: http://personal.atl.bellsouth.net/atl/s/h/shutton/kwebwatch.html
Kwicken => <reply> $who, Loads and converts Quicken99 transaction statements into html.. URL: http://psyndicate.netpedia.net/Kwicken.html
kwintv => <reply> $who, Watch TV in a window on your PC screen. URL: http://www.mathematik.uni-kl.de/~wenk/kwintv/
kwrl => <reply> $who, . URL: http://www.cs.colostate.edu/~stevensm/kde/kwrl.html
KWvDial => <reply> $who, Graphical Re-Implementation of WvDial PPP Dialer Command Line Interface. URL: http://www.cnss.ca/~ppatters/KWvDial.html
KXicq => <reply> $who, The KDE ICQ clone. URL: http://www.caiw.nl/~herwinjs/
factpacks/Linux.fact view on Meta::CPAN
The Linux Image Montage Project => <reply> $who, Linux Image Montage Project Preview Release. URL: http://linux.remotepoint.com/
The Linux Memory Game => <reply> $who, A children's (and adults') game based on the card game. URL: http://www.ispchannel.com/~xgz/linux_game.html
The Linux/IR Project => <reply> $who, Linux IrDA implementation. URL: http://www.cs.uit.no/~dagb/irda/
The Loci Project => <reply> $who, A network-distributed system of clients and servers for computational biology. URL: http://theopenlab.uml.edu/loci/
The Locomotive => <reply> $who, java based servlet compatible web application server (runs on linux). URL: http://www.locomotive.org
The Log Applet => <reply> $who, GNOME panel applet to monitor a (log) file as it is updated. URL: http://orion.olg.com/~mcraig/log_applet.html
The looser corps => <reply> $who, Great multiplayer game, with pretty good graphics. URL: http://www.ime.usp.br/~massaro/loser/
The Monitor => <reply> $who, Small file monitoring program. URL: http://hem.passagen.se/osk/
The N.U.E. Order => <reply> $who, Highly integrated Order Processing system for Online commerce.. URL: http://nueorder.netpedia.net
The Newsroom => <reply> $who, The Newsroom for the Falken BBS Software.. URL: http://cmweb.bizhosting.com/
the PHP Snurk => <reply> $who, Search-engine friendly URLs for dynamic content in PHP.. URL: http://www.sabren.com/code/php/snurk/
factpacks/Linux.fact view on Meta::CPAN
Wizard => <reply> $who, Component to add a Windows 95-like Wizard to an application.. URL: http://www.bigfoot.com/~teras/wizard/
wm2 => <reply> $who, Minimal, elegant and unusual window manager. URL: http://www.all-day-breakfast.com/wm2/
wmakerconf => <reply> $who, GTK based configuration tool for WindowMaker window manager. URL: http://ulli.linuxbox.com/wmakerconf/
WMAmpMenu => <reply> $who, A simple utility that inserts MP3 playlists in your WM root menu.. URL: http://www.snowman.sgic.fi/ssl/wmampmenu/
wmanager => <reply> $who, X11 window manager selector. URL: http://heuss.techfak.uni-bielefeld.de/www/mtessmer/wmanager/
wmapm => <reply> $who, Small dock-app that shows continually-updated APMstatistics. URL: http://nis-www.lanl.gov/~mgh/WindowMaker/DockApps.shtml
wmappl => <reply> $who, Window Maker Application Launcher. URL: http://www.pobox.com/~charkins/wmappl.html
wmbattery => <reply> $who, APM status dock app. URL: http://kitenet.net/programs/wmbattery/
WMBeats => <reply> $who, InternetTime Clock .. URL: http://shadowmere.student.utwente.nl
wmbiff => <reply> $who, A new mail notifier for WindowMaker.. URL: http://www.elect.ru/wmbiff/
wmbored => <reply> $who, Displays the time between a past date and a future date.. URL: http://www.worldnet.net/~labayle/bored/
view all matches for this distribution
view release on metacpan or search on metacpan
(Kosuke Asami)
0.11 2013-10-08T23:29:10Z
- Amon2::Lite with Text::Xslate 2.0010- gets Perl 5.18+ issue.
Just updated deps.
ref. http://blog.64p.org/entry/2013/10/08/093236
(tokuhirom)
- Tiny fix for Amon2 5.00 compatibility.
(tokuhirom)
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Amon2/Setup/Asset/Bootstrap.pm view on Meta::CPAN
"bootstrap/css/bootstrap-grid.css" => "/*!\n * Bootstrap Grid v4.4.1 (https://getbootstrap.com/)\n * Copyright 2011-2019 The Bootstrap Authors\n * Copyright 2011-2019 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/mast...
"bootstrap/css/bootstrap-grid.css.map" => "{\"version\":3,\"sources\":[\"../../scss/bootstrap-grid.scss\",\"bootstrap-grid.css\",\"../../scss/_grid.scss\",\"../../scss/mixins/_grid.scss\",\"../../scss/mixins/_breakpoints.scss\",\"../../scss/_variab...
"bootstrap/css/bootstrap-grid.min.css" => "/*!\n * Bootstrap Grid v4.4.1 (https://getbootstrap.com/)\n * Copyright 2011-2019 The Bootstrap Authors\n * Copyright 2011-2019 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/...
"bootstrap/css/bootstrap-grid.min.css.map" => "{\"version\":3,\"sources\":[\"../../scss/bootstrap-grid.scss\",\"dist/css/bootstrap-grid.css\",\"../../scss/_grid.scss\",\"../../scss/mixins/_grid.scss\",\"../../scss/mixins/_breakpoints.scss\",\"../.....
"bootstrap/css/bootstrap-reboot.css" => "/*!\n * Bootstrap Reboot v4.4.1 (https://getbootstrap.com/)\n * Copyright 2011-2019 The Bootstrap Authors\n * Copyright 2011-2019 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/...
"bootstrap/css/bootstrap-reboot.css.map" => "{\"version\":3,\"sources\":[\"../../scss/bootstrap-reboot.scss\",\"bootstrap-reboot.css\",\"../../scss/_reboot.scss\",\"../../scss/_variables.scss\",\"../../scss/vendor/_rfs.scss\",\"../../scss/mixins/_h...
"bootstrap/css/bootstrap-reboot.min.css" => "/*!\n * Bootstrap Reboot v4.4.1 (https://getbootstrap.com/)\n * Copyright 2011-2019 The Bootstrap Authors\n * Copyright 2011-2019 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/b...
"bootstrap/css/bootstrap-reboot.min.css.map" => "{\"version\":3,\"sources\":[\"../../scss/bootstrap-reboot.scss\",\"../../scss/_reboot.scss\",\"dist/css/bootstrap-reboot.css\",\"../../scss/vendor/_rfs.scss\",\"bootstrap-reboot.css\",\"../../scss/mi...
"bootstrap/css/bootstrap.css" => "/*!\n * Bootstrap v4.4.1 (https://getbootstrap.com/)\n * Copyright 2011-2019 The Bootstrap Authors\n * Copyright 2011-2019 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE...
"bootstrap/css/bootstrap.css.map" => "{\"version\":3,\"sources\":[\"../../scss/bootstrap.scss\",\"bootstrap.css\",\"../../scss/_root.scss\",\"../../scss/_reboot.scss\",\"../../scss/_variables.scss\",\"../../scss/vendor/_rfs.scss\",\"../../scss/mixi...
"bootstrap/css/bootstrap.min.css" => "/*!\n * Bootstrap v4.4.1 (https://getbootstrap.com/)\n * Copyright 2011-2019 The Bootstrap Authors\n * Copyright 2011-2019 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LIC...
"bootstrap/css/bootstrap.min.css.map" => "{\"version\":3,\"sources\":[\"../../scss/bootstrap.scss\",\"../../scss/_root.scss\",\"../../scss/_reboot.scss\",\"dist/css/bootstrap.css\",\"../../scss/vendor/_rfs.scss\",\"bootstrap.css\",\"../../scss/mixi...
"bootstrap/dropdown.js" => "/*!\n * Bootstrap dropdown.js v4.4.1 (https://getbootstrap.com/)\n * Copyright 2011-2019 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)\n * Licensed under MIT (https://github.com/twbs/bo...
"bootstrap/dropdown.js.map" => "{\"version\":3,\"file\":\"dropdown.js\",\"sources\":[\"../src/dropdown.js\"],\"sourcesContent\":[\"/**\\n * --------------------------------------------------------------------------\\n * Bootstrap (v4.4.1): dropdown...
"bootstrap/index.js" => "/**\n * --------------------------------------------------------------------------\n * Bootstrap (v4.4.0): index.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * ------------------------...
"bootstrap/index.js.map" => "{\"version\":3,\"sources\":[\"../src/index.js\"],\"names\":[\"\$\",\"TypeError\",\"version\",\"fn\",\"jquery\",\"split\",\"minMajor\",\"ltMajor\",\"minMinor\",\"minPatch\",\"maxMajor\",\"Error\"],\"mappings\":\"AAaA;;;;...
"bootstrap/js/bootstrap.bundle.js" => "/*!\n * Bootstrap v4.4.1 (https://getbootstrap.com/)\n * Copyright 2011-2019 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)\n * Licensed under MIT (https://github.com/twbs/boo...
"bootstrap/js/bootstrap.bundle.js.map" => "{\"version\":3,\"file\":\"bootstrap.bundle.js\",\"sources\":[\"../../js/src/util.js\",\"../../js/src/alert.js\",\"../../js/src/button.js\",\"../../js/src/carousel.js\",\"../../js/src/collapse.js\",\"../../...
"bootstrap/js/bootstrap.bundle.min.js" => "/*!\n * Bootstrap v4.4.1 (https://getbootstrap.com/)\n * Copyright 2011-2019 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)\n * Licensed under MIT (https://github.com/twbs...
"bootstrap/js/bootstrap.bundle.min.js.map" => "{\"version\":3,\"sources\":[\"../../js/src/util.js\",\"../../js/src/alert.js\",\"../../js/src/button.js\",\"../../js/src/carousel.js\",\"../../js/src/collapse.js\",\"../../node_modules/popper.js/dist/e...
"bootstrap/js/bootstrap.js" => "/*!\n * Bootstrap v4.4.1 (https://getbootstrap.com/)\n * Copyright 2011-2019 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)\n * Licensed under MIT (https://github.com/twbs/bootstrap/...
"bootstrap/js/bootstrap.js.map" => "{\"version\":3,\"file\":\"bootstrap.js\",\"sources\":[\"../../js/src/util.js\",\"../../js/src/alert.js\",\"../../js/src/button.js\",\"../../js/src/carousel.js\",\"../../js/src/collapse.js\",\"../../js/src/dropdow...
"bootstrap/js/bootstrap.min.js" => "/*!\n * Bootstrap v4.4.1 (https://getbootstrap.com/)\n * Copyright 2011-2019 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)\n * Licensed under MIT (https://github.com/twbs/bootst...
"bootstrap/js/bootstrap.min.js.map" => "{\"version\":3,\"sources\":[\"../../js/src/util.js\",\"../../js/src/alert.js\",\"../../js/src/button.js\",\"../../js/src/carousel.js\",\"../../js/src/collapse.js\",\"../../js/src/dropdown.js\",\"../../js/src/...
"bootstrap/modal.js" => "/*!\n * Bootstrap modal.js v4.4.1 (https://getbootstrap.com/)\n * Copyright 2011-2019 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)\n * Licensed under MIT (https://github.com/twbs/bootstra...
view all matches for this distribution
view release on metacpan or search on metacpan
CHANGELOG.md view on Meta::CPAN
### Added
- Changelog based on "Keep a Changelog" project.
### Changed
- Copyright holder name and email.
- Development documentation updated.
### Fixed
- Dist::Zilla::Deb `debuild` task to build Debian package.
- Declaring missing Debian dependencies.
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Anansi/Actor.pm view on Meta::CPAN
operating system and either returns the module HASH or a B<1> I<(one)> on
success and a B<0> I<(zero)> on failure when determining the existence of the
modules that are specified in the I<PACKAGE> parameter. A temporary file
"Anansi-Actor.#" will be created if at all possible to improve the speed of this
subroutine by storing the module HASH. The temporary file will automatically
be updated when this subroutine is subsequently run when the number of seconds
specified in the I<INTERVAL> parameter or a full day has passed. Deleting the
temporary file will also cause an update to occur.
=cut
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Android/ElectricSheep/Automator.pm view on Meta::CPAN
$log->error("${whoami} (via $parent), line ".__LINE__." : error, there are no installed apps, even after enquiring them. The target device has no apps installed. Weird.");
return undef
}
}
# by now we are sure we have the list of installed apps updated
# but it is likely that there is no AppProperties object for each
# app in the list, but we need it, so make a search and if
# AppProperties is undef, then we need to call find_installed_apps() again.
my $searchres = $self->search_app({
'package' => $package,
lib/Android/ElectricSheep/Automator.pm view on Meta::CPAN
$log->error("${whoami} (via $parent), line ".__LINE__." : error, there are no installed apps, even after enquiring them. The target device has no apps installed. Weird.");
return undef
}
}
# by now we are sure we have the list of installed apps updated
# but it is likely that there is no AppProperties object for each
# app in the list, but we need it, so make a search and if
# AppProperties is undef, then we need to call find_installed_apps() again.
my $searchres = $self->search_app({
'package' => $package,
view all matches for this distribution
view release on metacpan or search on metacpan
create_table user => columns {
integer 'id' => not_null, unsigned, primary_key;
varchar 'name' => not_null;
datetime 'created_at' => not_null;
datetime 'updated_at' => not_null;
};
1;
__SCHEMA__
CREATE TABLE user (
id INTEGER PRIMARY KEY NOT NULL,
name VARCHAR(255) NOT NULL,
created_at DATETIME NOT NULL,
updated_at DATETIME NOT NULL
);
COMMIT;
view all matches for this distribution
view release on metacpan or search on metacpan
t/07_insert_on_duplicate.t view on Meta::CPAN
name => 'PAPIX',
message => 'fuga',
}, {
message => sql_raw('VALUES(message)'),
});
is db->select(author => {}, {})->count, 1, 'updated.';
is db->select(author => { name => 'PAPIX' }, { limit => 1 })->first->message, 'fuga';
};
done_testing();
view all matches for this distribution
view release on metacpan or search on metacpan
lib/AnnoCPAN/Control.pm view on Meta::CPAN
$notepos->hide;
} else {
$notepos->unhide;
}
}
$vars->{message} = "Note bindings updated";
} else {
$vars->{error} = "Edit not authorized";
}
($vars, 'show_notepos');
}
view all matches for this distribution
view release on metacpan or search on metacpan
lib/AntTweakBar.pm view on Meta::CPAN
=head2 refresh
$bar->refresh;
Tells Anttweakbar that variable values are possibly changed and
should be updated.
=cut
sub refresh {
my $self = shift;
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Antispam/Toolkit/Role/BerkeleyDB.pm view on Meta::CPAN
your own C<< $class->_extract_data_from_file() >> to handle different data
formats.
=item * database
The path to the BerkeleyDB file that will be created or updated.
If you're using multiple BerkeleyDB files for different types of data, you
probably should put each one in a separate directory, because the BerkeleyDB
library creates identically named log files for each database file.
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Antsy.pm view on Meta::CPAN
OSC 1337 ; PopKeyLabels=[label] ST
Where [label] is an ASCII string that works best if it is unique in the stack.
=item * unicode_version
iTerm2 by default uses Unicode 9's width tables. The user can opt to use Unicode 8's tables with a preference (for backward compatibility with older locale databases). Since not all apps will be updated at the same time, you can tell iTerm2 to use a ...
OSC 1337 ; UnicodeVersion=[n] ST
Where [n] is 8 or 9
You can push the current value on a stack and pop it off to return to the previous value by setting n to push or pop. Optionally, you may affix a label after push by setting n to something like push mylabel. This attaches a label to that stack entry....
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Any/Renderer/Template.pm view on Meta::CPAN
Any::Renderer::Template renders any Perl data structure passed to it with
Any::Template. The Any::Template backend used depends on the 'format' parameter passed to
the object constructor.
Templates expressed as filenames are cached using a package-level in-memory cache with Cache::AgainstFile.
This will stat the file to validate the cache before using the cached object, so if the template is updated,
this will be immediately picked up by all processes holding a cached copy.
=head1 FORMATS
All the formats supported by Any::Template. Try this to find out what's available on your system:
view all matches for this distribution
view release on metacpan or search on metacpan
lib/AnyData.pm view on Meta::CPAN
2. delete adTie('Pipe','games.db','u')->{"user$_"} for (0..3);
# no undef needed since no hash variable created
=head2 Deletions and Packing
In order to save time and to prevent having to do writes anywhere except at the end of the file, deletions and updates are *not* done at the time of issuing a delete command. Rather when the user does a delete, the position of the deleted record is ...
=head1 MORE HELP
See the README file and the test.pl included with the module
for further examples.
view all matches for this distribution
view release on metacpan or search on metacpan
examples/test.pl view on Meta::CPAN
# $client->put_room('535881', encode_json({ room => { name => 'Room 1', topic => 'oops' } }), sub {
# my ($body, $hdr) = @_;
# if ($hdr->{Status} !~ m/2/) {
# $client->emit('error', "$hdr->{Status}: $hdr->{Reason}");
# } else {
# print "$hdr->{Status}: updated room\n";
# }
#
# $client->exit;
# });
#
view all matches for this distribution
view release on metacpan or search on metacpan
lib/AnyEvent.pm view on Meta::CPAN
This returns the "current wallclock time" as a fractional number of
seconds since the Epoch (the same thing as C<time> or C<Time::HiRes::time>
return, and the result is guaranteed to be compatible with those).
It progresses independently of any event loop processing, i.e. each call
will check the system clock, which usually gets updated frequently.
=item AnyEvent->now
This also returns the "current wallclock time", but unlike C<time>, above,
this value might change only once per event loop iteration, depending on
lib/AnyEvent.pm view on Meta::CPAN
provide suitable (hopefully) replacements.
The above example isn't fictitious, the I<rxvt-unicode> (a.k.a. urxvt)
terminal emulator uses the above line as-is. An interface isn't included
in AnyEvent because it doesn't make sense outside the embedded interpreter
inside I<rxvt-unicode>, and it is updated and maintained as part of the
I<rxvt-unicode> distribution.
I<rxvt-unicode> also cheats a bit by not providing blocking access to
condition variables: code blocking while waiting for a condition will
C<die>. This still works with most modules/usages, and blocking calls must
view all matches for this distribution