view release on metacpan or search on metacpan
cci-src/config/install-sh view on Meta::CPAN
# to itself, or perhaps because mv is so ancient that it does not
# support -f.
# Now remove or move aside any old file at destination location.
# We try this two ways since rm can't unlink itself on some
# systems and the destination file might be busy for other
# reasons. In this case, the final cleanup might fail but the new
# file should still install successfully.
{
if test -f "$dstdir/$dstfile"; then
$doit $rmcmd -f "$dstdir/$dstfile" 2>/dev/null \
view all matches for this distribution
view release on metacpan or search on metacpan
It is important to check that you are using the latest version before
posting. If you're not then we're very likely to simply say "upgrade to
the latest". You would do yourself a favour by upgrading beforehand.
Please remember that we're all busy. Try to help yourself first,
then try to help us help you by following these guidelines carefully.
Regards,
Tim Bunce and the perl5-dbi team.
view all matches for this distribution
view release on metacpan or search on metacpan
lib/DBIO/MySQL/Async/Pool.pm view on Meta::CPAN
=head1 DESCRIPTION
Connection pool for L<DBIO::MySQL::Async::Storage>. Manages a pool of
L<EV::MariaDB> connections, dispatching queries to available connections
and queuing when all are busy.
The acquire / release / capacity / shutdown mechanics are inherited from
L<DBIO::Storage::PoolBase>; this class supplies only the EV::MariaDB
seam â see L</_create_connection> and L</_shutdown_connection>.
view all matches for this distribution
view release on metacpan or search on metacpan
lib/DBIO/MySQL/EV/Pool.pm view on Meta::CPAN
=head1 DESCRIPTION
Connection pool for L<DBIO::MySQL::EV::Storage>. Manages a pool of
L<EV::MariaDB> connections, dispatching queries to available connections
and queuing when all are busy.
The acquire / release / capacity / shutdown mechanics, including the
connection-readiness gate, are inherited from L<DBIO::Storage::PoolBase>;
this class supplies only the EV::MariaDB seam â see L</_create_connection>,
L</_connection_ready_future> and L</_shutdown_connection>.
view all matches for this distribution
view release on metacpan or search on metacpan
lib/DBIO/PostgreSQL/Async/Pool.pm view on Meta::CPAN
=head1 DESCRIPTION
Connection pool for L<DBIO::PostgreSQL::Async::Storage>. Manages a pool of
L<EV::Pg> connections, dispatching queries to available connections
and queuing when all are busy.
The acquire / release / capacity / shutdown mechanics are inherited from
L<DBIO::Storage::PoolBase>; this class supplies only the EV::Pg
seam â see L</_create_connection>, L</_shutdown_connection> and
L</_transform_conninfo>.
view all matches for this distribution
view release on metacpan or search on metacpan
lib/DBIO/PostgreSQL/EV/Pool.pm view on Meta::CPAN
=head1 DESCRIPTION
Connection pool for L<DBIO::PostgreSQL::EV::Storage>. Manages a pool of
L<EV::Pg> connections, dispatching queries to available connections
and queuing when all are busy.
The acquire / release / capacity / shutdown mechanics, including the
connection-readiness gate, are inherited from L<DBIO::Storage::PoolBase>
(karr #75); this class supplies only the EV::Pg seam â see
L</_create_connection>, L</_connection_ready_future>,
view all matches for this distribution
view release on metacpan or search on metacpan
lib/DBIO/Storage/Async.pm view on Meta::CPAN
# karr #10: the coderef's Future is almost always the tail of a
# ->then chain. Real Future holds a downstream sequence Future only
# WEAKLY, so unless we keep a strong ref it gets GC'd the moment this
# callback returns -- Future warns "lost a sequence Future",
# COMMIT/ROLLBACK never fires, and the await loop busy-spins forever.
# ->retain gives $chain_f a self-reference until it is ready, keeping
# the whole chain alive. Not every future_class implements ->retain
# (an immediately-resolved shim has no GC window), so guard the call.
if (ref $inner && $inner->can('then')) {
my $chain_f = $inner->then(sub {
view all matches for this distribution
view release on metacpan or search on metacpan
lib/DBIx/Class/AuditAny.pm view on Meta::CPAN
=head2 Background
This module was originally written in 2012 for an internal client project, and the process
of getting it released open-source as a stand-alone, general-purpose module was started in
2013. However, I got busy with other projects and wasn't able to complete a CPAN release at
that time (mainly due to missing docs and minor loose ends). I finally came back to this
project (May 2015) to actually get a release out to CPAN. So, even though the release date
is in 2015, the majority of the code is actually several years old (and has been running
perfectly in production for several client apps the whole time).
view all matches for this distribution
view release on metacpan or search on metacpan
lib/DBIx/Class/Helper/ResultSet/DateMethods1/Announcement.pod view on Meta::CPAN
database?
Here's a query I originally wrote with date ops. Basically it groups some
columns by some "date parts" like year, month, day, etc. You can use it to make
nice reports of things like how many things have been done per month, or maybe
find out if the system is more busy in the summer:
$rs->search(undef, {
columns => {
count => '*',
year => $rs->dt_SQL_pluck({ -ident => '.start' }, 'year'),
view all matches for this distribution
view release on metacpan or search on metacpan
lib/DBIx/Class/RandomColumns.pm view on Meta::CPAN
} while $check and
$tries-- and
$self->result_source->resultset->search({$column => $id})->count;
}
$self->throw_exception("escaped from busy loop in DBIx::Class::RandomColumns::get_random_column_id()")
unless $tries;
return $id;
}
view all matches for this distribution
view release on metacpan or search on metacpan
lib/DBIx/DR/Iterator.pm view on Meta::CPAN
=head2 grep
Constructs new iterator that is subset of parent iterator.
my $busy = $list->grep(sub { $_[0]->busy ? 1 : 0 });
=head2 push
Pushes one element into iterator.
view all matches for this distribution
view release on metacpan or search on metacpan
test_data/README view on Meta::CPAN
might be relevant. You can of course also send patches to
actual bugs.
Mention the word "XBase" in the Subject line, otherwise your
post will probably just slip through my 1 MB daily email load
without even being read. Please note that I'm _very_ busy, so
try to help me to help you by using the latest version of the
module, minimalizing the script code that causes you problems,
providing me with tiny sample of datafile, anything that might
be related. Detailed description and small examples are the
best.
view all matches for this distribution
view release on metacpan or search on metacpan
lib/DBIx/OnlineDDL/Helper/SQLite.pm view on Meta::CPAN
# See FK comment in MySQL module. FKs in SQLite are a per-connection enabled
# feature, so this is always a "session" command.
'PRAGMA foreign_keys = OFF',
# DB timeouts
'PRAGMA busy_timeout = '.int($db_timeouts->{lock_file} * 1_000), # busy_timeout uses ms
);
# SQLite version 3.25.0 fixes table renames to also rename references to the table,
# ie: child FKs. Since SQLite doesn't yet have an DDL statement for renaming the FKs
# back to the old name, setting this PRAGMA variable is the only option.
view all matches for this distribution
view release on metacpan or search on metacpan
lib/DBIx/Poggy.pm view on Meta::CPAN
=over 4
=item pool_size
number of connections to create, creates one more in case all are busy
=back
Returns a new pool object.
view all matches for this distribution
view release on metacpan or search on metacpan
lib/DBIx/QuickORM/Manual/Async.pm view on Meta::CPAN
This uses the database driver's own asynchronous support. The query runs on
your B<primary> connection while your code keeps going. It is the cheapest
option - no extra connection, no extra process - but it has the strictest
constraints (see L</"RULES AND CONSTRAINTS"> below), because the one connection
is busy until the query finishes.
Not every database supports this. If the dialect does not advertise async
support (for example L<DBD::SQLite>), selecting C<async> and running a query
throws an exception. Use C<forked> instead on those backends.
view all matches for this distribution
view release on metacpan or search on metacpan
TableHash.pm view on Meta::CPAN
is all fields in the record.
=head1 SUPPORT
I am unable to provide any technical support for this module. The
whole reason I had to make it was that I was way too busy (lazy?) to
write all that SQL code...
But you are encouraged to send patches, bug warnings, updates, thanks,
or suggestions for improvements to the author as listed below.
view all matches for this distribution
view release on metacpan or search on metacpan
testdata/encantadas.txt view on Meta::CPAN
contrary moods of his more varying mind, or shipwreck and sudden death in
solitary waves -- whatever was the cause, the blithe stranger never was
seen again.
Yet, however dire a calamity was here in store, misgivings of it ere due
time never disturbed the Cholos' busy mind, now all intent upon the
toilsome matter which had brought them hither. Nay, by swift doom coming
like the thief at night, ere seven weeks went by, two of the little party
were removed from all anxieties of land or sea. No more they sought to gaze
with feverish fear, or still more feverish hope, beyond the present's
horizon line, but into the furthest future their own silent spirits sailed.
testdata/encantadas.txt view on Meta::CPAN
In the first were scored the days, each tenth one marked by a longer and
deeper notch; the second was scored for the number of seafowl eggs for
sustenance, picked out from the rocky nests; the third, how many fish had
been caught from the shore; the fourth, how many small tortoises found
inland; the fifth, how many days of sun; the sixth, of clouds; which last,
of the two, was the greater one. Long night of busy numbering, misery's
mathematics, to weary her too-wakeful soul to sleep; yet sleep for that was
none.
The panel of the days was deeply worn -- the long tenth notches half
effaced, as alphabets of the blind. Ten thousand times the longing widow
testdata/encantadas.txt view on Meta::CPAN
ready to push off and then spring himself. With the sagacity of their race,
the dogs now seemed aware that they were in the very instant of being
deserted upon a barren strand. The gunwales of the boat were high; its prow
-- presented inland -- was lifted; so, owing to the water, which they
seemed instinctively to shun, the dogs could not well leap into the little
craft. But their busy paws hard scraped the prow, as it had been some
farmer's door shutting them out from shelter in a winter storm. A clamorous
agony of alarm. They did not howl, or whine; they all but spoke.
"Push off! Give way!" cried the mate. The boat gave one heavy drag and
lurch, and next moment shot swiftly from the beach, turned on her heel, and
testdata/encantadas.txt view on Meta::CPAN
This proved an Englishman, and a smuggler, a sort of craft not apt to be
overcharitable. Oberlus is severely whipped, then handcuffed, taken ashore,
and compelled to make known his habitation and produce his property. His
potatoes, pumpkins, and tortoises, with a pile of dollars he had hoarded
from his mercantile operations, were secured on the spot. But while the too
vindictive smugglers were busy destroying his hut and garden, Oberlus makes
his escape into the mountains, and conceals himself there in impenetrable
recesses, only known to himself, till the ship sails, when he ventures
back, and by means of an old file which he sticks into a tree, contrives to
free himself from his handcuffs.
view all matches for this distribution
view release on metacpan or search on metacpan
ok $locker->do("PRAGMA locking_mode = EXCLUSIVE"), 'lock' or diag $locker->errstr;
ok $locker->do("BEGIN EXCLUSIVE"), 'begin transaction' or diag $locker->errstr;
ok $locker->do("COMMIT"), 'commit' or diag $locker->errstr;
$dbh->sqlite_busy_timeout(1);
# Now ready to try again :
ok !$dbh->do("insert into foo (a) values (10)"), "do failed";
like ($DBI::errstr, qr/locked/i, "got locked message");
view all matches for this distribution
view release on metacpan or search on metacpan
the latest". You would do yourself a favor by upgrading beforehand.
There is pod documentation for using DDL::Oracle in the Oracle.pm file.
From the .../DDL directory, try 'pod2text Oracle.pm'.
Please remember that I'm (hopefully employed and) busy. Try to help
yourself first, then try to help me help you by following these
guidelines carefully. (Note specifically that I'm unlikely to answer a
question that's answered clearly in the on-line documentation.)
Regards,
view all matches for this distribution
view release on metacpan or search on metacpan
lib/DJabberd/Stanza/StartTLS.pm view on Meta::CPAN
sub actual_error_on_empty_read {
my ($class, $ssl) = @_;
my $err = Net::SSLeay::get_error($ssl, -1);
if ($err == ERROR_WANT_READ || $err == ERROR_WANT_WRITE) {
# Not an actual error, SSL is busy doing something like renegotiating encryption
# just try again next time
return undef;
}
if ($err == ERROR_SYSCALL) {
# return the specific syscall error
view all matches for this distribution
view release on metacpan or search on metacpan
lib/DOCSIS/ConfigFile/mibs/PKTC-IETF-SIG-MIB view on Meta::CPAN
pktcSigDevToneSteady TruthValue
}
pktcSigDevToneType OBJECT-TYPE
SYNTAX INTEGER {
busy(1),
confirmation(2),
dial(3),
messageWaiting(4),
offHookWarning(5),
ringBack(6),
lib/DOCSIS/ConfigFile/mibs/PKTC-IETF-SIG-MIB view on Meta::CPAN
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
" This object contains the default time out value for busy
tone. The MTA MUST NOT update this object with the
value provided in the NCS message (if present). If
the value of the object is modified by the SNMP Management
Station, the MTA MUST use the new value as a default only
for a new signal requested by the NCS message.
view all matches for this distribution
view release on metacpan or search on metacpan
test_data/big.log view on Meta::CPAN
2010-06-22 18:47:48 status unpacked lvm2 2.02.39-7
2010-06-22 18:47:48 status unpacked lvm2 2.02.39-7
2010-06-22 18:47:48 status half-configured lvm2 2.02.39-7
2010-06-22 18:47:48 status installed lvm2 2.02.39-7
2010-06-22 18:48:17 startup archives unpack
2010-06-22 18:48:17 install busybox <keine> 1:1.10.2-2
2010-06-22 18:48:17 status half-installed busybox 1:1.10.2-2
2010-06-22 18:48:17 status triggers-pending man-db 2.5.2-4
2010-06-22 18:48:17 status half-installed busybox 1:1.10.2-2
2010-06-22 18:48:17 status unpacked busybox 1:1.10.2-2
2010-06-22 18:48:17 status unpacked busybox 1:1.10.2-2
2010-06-22 18:48:17 trigproc man-db 2.5.2-4 2.5.2-4
2010-06-22 18:48:17 status half-configured man-db 2.5.2-4
2010-06-22 18:48:17 status installed man-db 2.5.2-4
2010-06-22 18:48:18 startup packages configure
2010-06-22 18:48:18 configure busybox 1:1.10.2-2 1:1.10.2-2
2010-06-22 18:48:18 status unpacked busybox 1:1.10.2-2
2010-06-22 18:48:18 status half-configured busybox 1:1.10.2-2
2010-06-22 18:48:18 status installed busybox 1:1.10.2-2
2010-06-22 18:48:19 startup archives unpack
2010-06-22 18:48:19 install libvolume-id0 <keine> 0.125-7+lenny3
2010-06-22 18:48:19 status half-installed libvolume-id0 0.125-7+lenny3
2010-06-22 18:48:19 status unpacked libvolume-id0 0.125-7+lenny3
2010-06-22 18:48:19 status unpacked libvolume-id0 0.125-7+lenny3
test_data/big.log view on Meta::CPAN
2010-06-24 12:38:44 status unpacked git 1:1.7.1-1
2010-06-24 12:38:44 install autopoint <keine> 0.18.1.1-1
2010-06-24 12:38:44 status half-installed autopoint 0.18.1.1-1
2010-06-24 12:38:45 status unpacked autopoint 0.18.1.1-1
2010-06-24 12:38:45 status unpacked autopoint 0.18.1.1-1
2010-06-24 12:38:45 upgrade busybox 1:1.10.2-2 1:1.15.3-1
2010-06-24 12:38:45 status half-configured busybox 1:1.10.2-2
2010-06-24 12:38:45 status unpacked busybox 1:1.10.2-2
2010-06-24 12:38:45 status half-installed busybox 1:1.10.2-2
2010-06-24 12:38:45 status half-installed busybox 1:1.10.2-2
2010-06-24 12:38:45 status unpacked busybox 1:1.15.3-1
2010-06-24 12:38:45 status unpacked busybox 1:1.15.3-1
2010-06-24 12:38:46 install libao-common <keine> 1.0.0-4
2010-06-24 12:38:46 status half-installed libao-common 1.0.0-4
2010-06-24 12:38:46 status unpacked libao-common 1.0.0-4
2010-06-24 12:38:46 status unpacked libao-common 1.0.0-4
2010-06-24 12:38:46 install libao4 <keine> 1.0.0-4
test_data/big.log view on Meta::CPAN
2010-06-24 14:52:46 status installed libpcsclite1 1.5.5-3
2010-06-24 14:52:46 configure x11-xfs-utils 7.4+1 7.4+1
2010-06-24 14:52:46 status unpacked x11-xfs-utils 7.4+1
2010-06-24 14:52:46 status half-configured x11-xfs-utils 7.4+1
2010-06-24 14:52:46 status installed x11-xfs-utils 7.4+1
2010-06-24 14:52:46 configure busybox 1:1.15.3-1 1:1.10.2-2
2010-06-24 14:52:46 status unpacked busybox 1:1.15.3-1
2010-06-24 14:52:46 status half-configured busybox 1:1.15.3-1
2010-06-24 14:52:46 status installed busybox 1:1.15.3-1
2010-06-24 14:52:46 configure vim-tiny 2:7.2.438+hg~d44112feb815-5+b1 1:7.1.314-3+lenny2
2010-06-24 14:52:46 status unpacked vim-tiny 2:7.2.438+hg~d44112feb815-5+b1
2010-06-24 14:52:46 status unpacked vim-tiny 2:7.2.438+hg~d44112feb815-5+b1
2010-06-24 14:52:46 status half-configured vim-tiny 2:7.2.438+hg~d44112feb815-5+b1
2010-06-24 14:52:47 update-alternatives: run with --install /usr/bin/rview rview /usr/bin/vim.tiny 10
test_data/big.log view on Meta::CPAN
2010-08-16 13:54:48 status half-installed bluez 4.66-1
2010-08-16 13:54:49 status half-installed bluez 4.66-1
2010-08-16 13:54:52 status half-installed bluez 4.66-1
2010-08-16 13:54:52 status unpacked bluez 4.69-1
2010-08-16 13:54:52 status unpacked bluez 4.69-1
2010-08-16 13:54:52 upgrade busybox 1:1.15.3-1 1:1.17.1-2
2010-08-16 13:54:52 status half-configured busybox 1:1.15.3-1
2010-08-16 13:54:52 status unpacked busybox 1:1.15.3-1
2010-08-16 13:54:52 status half-installed busybox 1:1.15.3-1
2010-08-16 13:54:52 status half-installed busybox 1:1.15.3-1
2010-08-16 13:54:53 status half-installed busybox 1:1.15.3-1
2010-08-16 13:54:53 status unpacked busybox 1:1.17.1-2
2010-08-16 13:54:53 status unpacked busybox 1:1.17.1-2
2010-08-16 13:54:53 upgrade capplets-data 1:2.30.1-1 1:2.30.1-2
2010-08-16 13:54:53 status half-configured capplets-data 1:2.30.1-1
2010-08-16 13:54:53 status unpacked capplets-data 1:2.30.1-1
2010-08-16 13:54:53 status half-installed capplets-data 1:2.30.1-1
2010-08-16 13:54:53 status triggers-pending gconf2 2.28.1-3
test_data/big.log view on Meta::CPAN
2010-08-16 14:04:23 status unpacked bluez 4.69-1
2010-08-16 14:04:23 status unpacked bluez 4.69-1
2010-08-16 14:04:23 status unpacked bluez 4.69-1
2010-08-16 14:04:23 status half-configured bluez 4.69-1
2010-08-16 14:04:23 status installed bluez 4.69-1
2010-08-16 14:04:23 configure busybox 1:1.17.1-2 1:1.17.1-2
2010-08-16 14:04:23 status unpacked busybox 1:1.17.1-2
2010-08-16 14:04:23 status half-configured busybox 1:1.17.1-2
2010-08-16 14:04:23 status installed busybox 1:1.17.1-2
2010-08-16 14:04:23 configure capplets-data 1:2.30.1-2 1:2.30.1-2
2010-08-16 14:04:23 status unpacked capplets-data 1:2.30.1-2
2010-08-16 14:04:23 status unpacked capplets-data 1:2.30.1-2
2010-08-16 14:04:23 status half-configured capplets-data 1:2.30.1-2
2010-08-16 14:04:23 status installed capplets-data 1:2.30.1-2
test_data/big.log view on Meta::CPAN
2010-08-30 11:23:53 status triggers-pending software-center 2.0.7debian4
2010-08-30 11:23:53 status half-installed app-install-data 2010.01.31
2010-08-30 11:23:57 status half-installed app-install-data 2010.01.31
2010-08-30 11:23:57 status unpacked app-install-data 2010.08.21
2010-08-30 11:23:57 status unpacked app-install-data 2010.08.21
2010-08-30 11:23:57 upgrade busybox 1:1.17.1-2 1:1.17.1-4
2010-08-30 11:23:57 status half-configured busybox 1:1.17.1-2
2010-08-30 11:23:57 status unpacked busybox 1:1.17.1-2
2010-08-30 11:23:57 status half-installed busybox 1:1.17.1-2
2010-08-30 11:23:58 status half-installed busybox 1:1.17.1-2
2010-08-30 11:23:58 status unpacked busybox 1:1.17.1-4
2010-08-30 11:23:58 status unpacked busybox 1:1.17.1-4
2010-08-30 11:23:58 upgrade cl-asdf 2:2.004-1 2:2.005-1
2010-08-30 11:23:58 status half-configured cl-asdf 2:2.004-1
2010-08-30 11:23:58 status unpacked cl-asdf 2:2.004-1
2010-08-30 11:23:58 status half-installed cl-asdf 2:2.004-1
2010-08-30 11:23:58 status half-installed cl-asdf 2:2.004-1
test_data/big.log view on Meta::CPAN
2010-08-30 11:30:49 status installed acpi-support-base 0.137-5
2010-08-30 11:30:49 configure app-install-data 2010.08.21 2010.08.21
2010-08-30 11:30:49 status unpacked app-install-data 2010.08.21
2010-08-30 11:30:49 status half-configured app-install-data 2010.08.21
2010-08-30 11:30:49 status installed app-install-data 2010.08.21
2010-08-30 11:30:49 configure busybox 1:1.17.1-4 1:1.17.1-4
2010-08-30 11:30:49 status unpacked busybox 1:1.17.1-4
2010-08-30 11:30:49 status half-configured busybox 1:1.17.1-4
2010-08-30 11:30:49 status installed busybox 1:1.17.1-4
2010-08-30 11:30:49 configure cl-asdf 2:2.005-1 2:2.005-1
2010-08-30 11:30:49 status unpacked cl-asdf 2:2.005-1
2010-08-30 11:30:49 status half-configured cl-asdf 2:2.005-1
2010-08-30 11:30:51 status installed cl-asdf 2:2.005-1
2010-08-30 11:30:51 configure common-lisp-controller 7.4 7.4
test_data/big.log view on Meta::CPAN
2010-10-22 11:41:07 status unpacked bogofilter 1.2.2-1
2010-10-22 11:41:07 status half-installed bogofilter 1.2.2-1
2010-10-22 11:41:07 status half-installed bogofilter 1.2.2-1
2010-10-22 11:41:07 status unpacked bogofilter 1.2.2-2
2010-10-22 11:41:07 status unpacked bogofilter 1.2.2-2
2010-10-22 11:41:08 upgrade busybox 1:1.17.1-4 1:1.17.1-6
2010-10-22 11:41:08 status half-configured busybox 1:1.17.1-4
2010-10-22 11:41:08 status unpacked busybox 1:1.17.1-4
2010-10-22 11:41:08 status half-installed busybox 1:1.17.1-4
2010-10-22 11:41:08 status half-installed busybox 1:1.17.1-4
2010-10-22 11:41:08 status half-installed busybox 1:1.17.1-4
2010-10-22 11:41:08 status unpacked busybox 1:1.17.1-6
2010-10-22 11:41:08 status unpacked busybox 1:1.17.1-6
2010-10-22 11:41:08 upgrade devscripts 2.10.68 2.10.69
2010-10-22 11:41:08 status half-configured devscripts 2.10.68
2010-10-22 11:41:08 status unpacked devscripts 2.10.68
2010-10-22 11:41:08 status half-installed devscripts 2.10.68
2010-10-22 11:41:08 status half-installed devscripts 2.10.68
test_data/big.log view on Meta::CPAN
2010-10-22 11:44:05 status installed bogofilter-bdb 1.2.2-2
2010-10-22 11:44:05 configure bogofilter 1.2.2-2 1.2.2-2
2010-10-22 11:44:05 status unpacked bogofilter 1.2.2-2
2010-10-22 11:44:05 status half-configured bogofilter 1.2.2-2
2010-10-22 11:44:05 status installed bogofilter 1.2.2-2
2010-10-22 11:44:05 configure busybox 1:1.17.1-6 1:1.17.1-6
2010-10-22 11:44:05 status unpacked busybox 1:1.17.1-6
2010-10-22 11:44:05 status half-configured busybox 1:1.17.1-6
2010-10-22 11:44:05 status installed busybox 1:1.17.1-6
2010-10-22 11:44:05 configure devscripts 2.10.69 2.10.69
2010-10-22 11:44:05 status unpacked devscripts 2.10.69
2010-10-22 11:44:05 status unpacked devscripts 2.10.69
2010-10-22 11:44:05 status unpacked devscripts 2.10.69
2010-10-22 11:44:05 status unpacked devscripts 2.10.69
test_data/big.log view on Meta::CPAN
2010-11-16 09:59:02 status half-installed apache2-utils 2.2.16-3
2010-11-16 09:59:02 status half-installed apache2-utils 2.2.16-3
2010-11-16 09:59:02 status half-installed apache2-utils 2.2.16-3
2010-11-16 09:59:02 status unpacked apache2-utils 2.2.16-4
2010-11-16 09:59:02 status unpacked apache2-utils 2.2.16-4
2010-11-16 09:59:02 upgrade busybox 1:1.17.1-6 1:1.17.1-8
2010-11-16 09:59:02 status half-configured busybox 1:1.17.1-6
2010-11-16 09:59:02 status unpacked busybox 1:1.17.1-6
2010-11-16 09:59:02 status half-installed busybox 1:1.17.1-6
2010-11-16 09:59:02 status half-installed busybox 1:1.17.1-6
2010-11-16 09:59:02 status half-installed busybox 1:1.17.1-6
2010-11-16 09:59:03 status unpacked busybox 1:1.17.1-8
2010-11-16 09:59:03 status unpacked busybox 1:1.17.1-8
2010-11-16 09:59:03 upgrade common-lisp-controller 7.4 7.4+nmu1
2010-11-16 09:59:03 status half-configured common-lisp-controller 7.4
2010-11-16 09:59:03 status unpacked common-lisp-controller 7.4
2010-11-16 09:59:03 status half-installed common-lisp-controller 7.4
2010-11-16 09:59:03 status half-installed common-lisp-controller 7.4
test_data/big.log view on Meta::CPAN
2010-11-16 10:03:02 status installed apache2-mpm-worker 2.2.16-4
2010-11-16 10:03:02 configure apache2 2.2.16-4 2.2.16-4
2010-11-16 10:03:02 status unpacked apache2 2.2.16-4
2010-11-16 10:03:02 status half-configured apache2 2.2.16-4
2010-11-16 10:03:02 status installed apache2 2.2.16-4
2010-11-16 10:03:02 configure busybox 1:1.17.1-8 1:1.17.1-8
2010-11-16 10:03:02 status unpacked busybox 1:1.17.1-8
2010-11-16 10:03:02 status half-configured busybox 1:1.17.1-8
2010-11-16 10:03:02 status installed busybox 1:1.17.1-8
2010-11-16 10:03:02 configure common-lisp-controller 7.4+nmu1 7.4+nmu1
2010-11-16 10:03:02 status unpacked common-lisp-controller 7.4+nmu1
2010-11-16 10:03:02 status unpacked common-lisp-controller 7.4+nmu1
2010-11-16 10:03:02 status unpacked common-lisp-controller 7.4+nmu1
2010-11-16 10:03:02 status unpacked common-lisp-controller 7.4+nmu1
view all matches for this distribution
view release on metacpan or search on metacpan
lib/DR/Tarantool/StartTest.pm view on Meta::CPAN
my @xlogs = glob catfile $self->{temp}, '*.xlog';
unlink for @xlogs;
}
{
my %busy_ports;
sub _find_free_port {
while( 1 ) {
my $port = 10000 + int rand 30000;
next if exists $busy_ports{ $port };
next unless IO::Socket::INET->new(
Listen => 5,
LocalAddr => '127.0.0.1',
LocalPort => $port,
Proto => 'tcp',
(($^O eq 'MSWin32') ? () : (ReuseAddr => 1)),
);
return $busy_ports{ $port } = $port;
}
}
}
=head1 COPYRIGHT AND LICENSE
view all matches for this distribution
view release on metacpan or search on metacpan
lib/DR/Tnt/Test.pm view on Meta::CPAN
}
sub free_port() {
state $busy_ports = {};
while( 1 ) {
my $port = 10000 + int rand 30000;
next if exists $busy_ports->{ $port };
next unless IO::Socket::INET->new(
Listen => 5,
LocalAddr => '127.0.0.1',
LocalPort => $port,
Proto => 'tcp',
(($^O eq 'MSWin32') ? () : (ReuseAddr => 1)),
);
return $busy_ports->{ $port } = $port;
}
}
sub start_tarantool {
my %opts = @_;
view all matches for this distribution
view release on metacpan or search on metacpan
_Deparsed_XSubs.pm view on Meta::CPAN
sub _login;
sub backup_from_dbh;
sub backup_from_file;
sub backup_to_dbh;
sub backup_to_file;
sub busy_timeout;
sub collation_needed;
sub commit;
sub commit_hook;
sub create_aggregate;
sub create_collation;
_Deparsed_XSubs.pm view on Meta::CPAN
sub set_authorizer;
sub sqlite_backup_from_dbh;
sub sqlite_backup_from_file;
sub sqlite_backup_to_dbh;
sub sqlite_backup_to_file;
sub sqlite_busy_timeout;
sub sqlite_collation_needed;
sub sqlite_commit_hook;
sub sqlite_create_aggregate;
sub sqlite_create_collation;
sub sqlite_create_function;
view all matches for this distribution
view release on metacpan or search on metacpan
public/javascripts/jQuery/jquery-ui-1.12.min.js view on Meta::CPAN
this.isMultiLine=o||!a&&this._isContentEditable(this.element),this.valueMethod=this.element[o||a?"val":"text"],this.isNewMenu=!0,this._addClass("ui-autocomplete-input"),this.element.attr("autocomplete","off"),this._on(this.element,{keydown:function(n...
}},_updateDatepicker:function(e){this.maxRows=4,m=e,e.dpDiv.empty().append(this._generateHTML(e)),this._attachHandlers(e);var i,s=this._getNumberOfMonths(e),n=s[1],a=17,r=e.dpDiv.find("."+this._dayOverClass+" a");r.length>0&&o.apply(r.get(0)),e.dpDiv...
},_cacheMargins:function(){this.margins={left:parseInt(this.element.css("marginLeft"),10)||0,top:parseInt(this.element.css("marginTop"),10)||0,right:parseInt(this.element.css("marginRight"),10)||0,bottom:parseInt(this.element.css("marginBottom"),10)|...
},disable:t.noop,enable:t.noop,close:function(e){var i=this;this._isOpen&&this._trigger("beforeClose",e)!==!1&&(this._isOpen=!1,this._focusedElement=null,this._destroyOverlay(),this._untrackInstance(),this.opener.filter(":focusable").trigger("focus")...
},_refresh:function(){this._createRange(),this._createHandles(),this._setupEvents(),this._refreshValue()},_createHandles:function(){var e,i,s=this.options,n=this.element.find(".ui-slider-handle"),o="<span tabindex='0'></span>",a=[];for(i=s.values&&s....
this._delay(function(){n===this.counter&&this.refreshPositions(!s)})},_clear:function(t,e){function i(t,e,i){return function(s){i._trigger(t,s,e._uiHash(e))}}this.reverting=!1;var s,n=[];if(!this._noFinalSort&&this.currentItem.parent().length&&this.p...
view all matches for this distribution
view release on metacpan or search on metacpan
- Fix temporary directory handling in serialiser tests (PR 1133, nanis)
[ENHANCEMENTS]
- Promoting 1.3144 to stable. Only one odd, rare failure
remains on CPAN Testers, which I cannot reproduce.
- Bind to 127.0.0.1 in tests to avoid occasional spurious failures on busy
build hosts (PR 1136, thanks to @redbaron)
- More efficient handling of large requests - don't store the raw request
body, but fish it out of the HTTP::Body object's temp file if required
(PR 1134, David Precious (bigpresh))
- Allow mixd named params and splats in route definitions (PR 1086,
veryrusty)
1.3144 2015-11-04
[ENHANCEMENTS]
- Bind to 127.0.0.1 in tests to avoid occasional spurious failures on busy
build hosts (PR 1136, thanks to @redbaron)
1.3143 2015-10-26
- Note: new release manager for Dancer1: David Precious (BIGPRESH)
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Dancer2/Plugin/DBIC/Async.pm view on Meta::CPAN
delegates I/O to a background worker pool.
=head2 Non-Blocking I/O (Concurrency)
In a traditional sync app, if a database query takes B<500ms>, that L<Dancer2>
worker is B<"busy"> and cannot accept any other incoming requests for that
B<half a second>.
=over 4
=item Sync
view all matches for this distribution
view release on metacpan or search on metacpan
share/assets/dash_renderer/dash_renderer.dev.js view on Meta::CPAN
(function(global) {
var Module = function(Module) {
Module = Module || {};
var Module = Module;
var Module;if(!Module)Module=(typeof Module!=="undefined"?Module:null)||{};var moduleOverrides={};for(var key in Module){if(Module.hasOwnProperty(key)){moduleOverrides[key]=Module[key]}}var ENVIRONMENT_IS_WEB=false;var ENVIRONMENT_IS_WORKER=false;var...
var asm=(function(global,env,buffer) {
"use asm";var a=new global.Int8Array(buffer);var b=new global.Int16Array(buffer);var c=new global.Int32Array(buffer);var d=new global.Uint8Array(buffer);var e=new global.Uint16Array(buffer);var f=new global.Uint32Array(buffer);var g=new global.Float3...
// EMSCRIPTEN_START_FUNCS
function CV(a,b,d,e){a=a|0;b=b|0;d=d|0;e=e|0;var f=0,g=0,i=0.0,j=0.0,k=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0.0,t=0.0,u=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,G=0,H=0,I=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,W=0,X=0,Y=0,Z=0,_=0,$=0;$=l;l=l+9...
function s_(b,e,f,g){b=b|0;e=e|0;f=f|0;g=g|0;var h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0;a:do if((e|0)!=(f|0)){p=b+76|0;l=b+356|0;m=f;n=b+360|0;i=e+1|0;o=b+364|0;h=m-e|0;j=(i|0)==(f|0);k=e+2|0;b:do switch(a[p+(d[e>>0]|0)>>0]|0){case 4:{if(j){e=-1;break a...
view all matches for this distribution
view release on metacpan or search on metacpan
* yield). Drain the readers that were already holding when we won the CAS.
* The SEQ_CST CAS above + the SEQ_CST rdepth loads below are the writer side
* of the Dekker handshake. */
for (;;) {
uint32_t v = __atomic_load_n(&hdr->drain_seq, __ATOMIC_RELAXED); /* snapshot BEFORE scan */
int busy = 0;
/* Visit only OCCUPIED slots via the occupancy bitmap (SEQ_CST: a committed
* reader's bit -- set in claim, before its rdepth++ -- is ordered before
* this scan, so no held slot is skipped). O(BF_OCC_WORDS + live readers)
* instead of O(BF_READER_SLOTS). */
for (uint32_t w = 0; w < BF_OCC_WORDS; w++) {
uint32_t ep = pid;
__atomic_compare_exchange_n(&h->reader_slots[i].pid, &ep, 0,
0, __ATOMIC_ACQ_REL, __ATOMIC_RELAXED);
continue;
}
busy = 1; /* live reader still holding */
}
}
/* A live slotless reader keeps us waiting; a crashed slotless reader that
* cannot be attributed to a pid is the documented slotless limitation. */
if (__atomic_load_n(&hdr->slotless_rdepth, __ATOMIC_SEQ_CST) != 0)
busy = 1;
if (!busy)
return; /* exclusive: wlock held + every rdepth 0 */
/* Wait for a reader to release (drain_seq bump) or time out to re-scan
* (which reclaims any newly-dead slotted reader). */
syscall(SYS_futex, &hdr->drain_seq, FUTEX_WAIT, v, &bf_lock_timeout, NULL, 0);
}
view all matches for this distribution