view release on metacpan or search on metacpan
lib/Medical/DukePTP.pm view on Meta::CPAN
=head1 FUNCTIONS
=head2 ptp
Accepts a reference to a hash with parameters and returns a scalar
which denotes the pre-test probability of coronary artery disease.
Note that the value is rounded upwards.
Required parameters include:
sex : 'male' or 'female'
view all matches for this distribution
view release on metacpan or search on metacpan
Meta/Chess/Move.pm view on Meta::CPAN
#sub new($);
#sub set($$$);
#sub get_from($);
#sub get_to($);
#sub set_coronation($$);
#sub get_coronation($);
#sub set_coronation_piece($$);
#sub get_coronation_piece($);
#sub set_small_castle($$);
#sub get_small_castle($);
#sub set_large_castle($$);
#sub get_large_castle($);
#sub print($$);
Meta/Chess/Move.pm view on Meta::CPAN
sub get_to($) {
my($self)=@_;
return($self->{TO});
}
sub set_coronation($$) {
my($self,$val)=@_;
Meta::Development::Assert::assert_true($self->get_to()->get_y() eq "7" || $self->get_to()->get_y() eq "0","problem with coronation");
$self->{CORONATION}=$val;
}
sub get_coronation($) {
my($self)=@_;
return($self->{CORONATION});
}
sub set_coronation_piece($$) {
my($self,$piece)=@_;
Meta::Development::Assert::assert_true($self->get_coronation(),"cannot set coronation piece with no coronation");
$self->{CORONATION_PIECE}=$piece;
}
sub get_coronation_piece($) {
my($self)=@_;
return($self->{CORONATION_PIECE});
}
sub set_small_castle($$) {
Meta/Chess/Move.pm view on Meta::CPAN
if($self->get_large_castle()) {
print $file "0-0-0";
return;
}
$self->get_to()->print($file);
if($self->get_coronation()) {
print $file "=".Meta::Chess::Piece::get_shortcut($self->get_coronation_piece());
}
}
sub TEST($) {
my($context)=@_;
Meta/Chess/Move.pm view on Meta::CPAN
new($)
set($$$)
get_from($)
get_to($)
set_coronation($$)
get_coronation($)
set_coronation_piece($$)
get_coronation_piece($)
set_small_castle($$)
get_small_castle($)
set_large_castle($$)
get_large_castle($)
print($$)
Meta/Chess/Move.pm view on Meta::CPAN
=item B<get_to($)>
This will give you the position at which the move ends.
=item B<set_coronation($$)>
This sets the moves coronation parameter.
=item B<get_coronation($)>
This will let you have the information if were talking about coronation.
=item B<set_coronation_piece($$)>
This will set the piece that the coronation produces.
=item B<get_coronation_piece($)>
This will give you the piece that the coronation produces.
=item B<set_small_castle($$)>
This will set the small castle parameter.
view all matches for this distribution
view release on metacpan or search on metacpan
perlmulticore.h view on Meta::CPAN
Of course, the overhead is much higher when these functions actually
implement anything useful, but you always get what you pay for.
With L<Coro::Multicore>, every release/acquire involves two pthread
switches, two coro thread switches, a bunch of syscalls, and sometimes
interacting with the event loop.
A dedicated thread pool such as the one L<IO::AIO> uses could reduce
these overheads, and would also reduce the dependencies (L<AnyEvent> is a
smaller and more portable dependency than L<Coro>), but it would require a
view all matches for this distribution
view release on metacpan or search on metacpan
author/data/f_name/readme.txt view on Meta::CPAN
MIHO, MIKA, MINA, MINKO, MIO, MIRAI, MIW, MIYAJI, MIZ, MIZUHOâ, MM, MMK, MO,
MO-TO, MOMO, MOMONA, MOO, MOSSA, MUSUME , MUTSUMI NKNS., MYO, Maburu2, Maci, MahoSatomi,
Mai, Maki, MakieMatsuda, MakotoMurase, MakotoSaito, MamoruShimazaki, Manazo, Mari,
Mark, MasaharuKuga, MasaoMikazuki, MasaruOzawa, MasatakaNAKANO, MasayaHamakawa,
MasayukiAkiyama, Matsuda, MatsuiYujiro, Mayu, MayumiUeda, Meatian, Meddy, Meg,
MegumiYamazaki, Memex, Michelle., Micoro, MiekoSaka, Miffy, Mig, MihoIWASAKA,
Mikey, Miki, MikiNakajima, MikotoHimeno, MinaSuzuki, Minatuki, Minife, Mino, Minto,
MiouYamada, MireSuzuki, Mishima, Missing, Misty, MitsuguTanaka, MitsuhiroKondo,
MiyakoAoki, MiyatoshiOhno, Mizho, Mizuho, Momo, Momotarou, MorihiroIwasaki, MotofumiGoto,
MotokiKanamori, Mr, Mr.IKKI, Mr.K, Mr.Tsubame, Mr.山岡, Mrï¼åä»ãã, MsatoNagai,
Mâ, MAYMama, Mï½.0, Mã®å«, Mä»ââ
, Må, N.Sato, N=W-Ai(EYE), NAGISA, NAME_C,
view all matches for this distribution
view release on metacpan or search on metacpan
0.32_01 2014-01-10
- Now that we aren't packaging extensions against 3.6, we can use
cmp_versions imported from RT core rather than copy/paste.
- new rt_too_new which allows you to bail out before being installed on a
version of RT which is too new for you to function normally on
(corollary to requires_rt).
- requires_rt now dies if your RT is too old rather than just warning.
0.32 2013-09-06
- new make upgrade-database command; this feature needs RT 4.2 or
4.0.14+ for maximum benefit, and is used in the RTIR 3.0 release
view all matches for this distribution
view release on metacpan or search on metacpan
test-data/03modlist.data view on Meta::CPAN
'Coro',
'a',
'd',
'c',
'h',
'create an manage coroutines',
'MLEHMANN',
'20'
],
[
'PApp::SQL',
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Mojo/AsyncAwait/Backend/Coro.pm view on Meta::CPAN
our @EXPORT = (qw/async await/);
my $main = Coro::State->new;
$main->{desc} = 'Mojo::AsyncAwait::Backend::Coro/$main';
# LIFO stack of coroutines waiting to come back to
# always has $main as the bottom of the stack
my @stack = ($main);
# Coroutines that are ostensible done but need someone to kill them
my @clean;
# _push adds a coroutine to the stack and enters it
# when control returns to the original pusher, it will clean up
# any coroutines that are waiting to be cleaned up
sub _push {
push @stack, @_;
$stack[-2]->transfer($stack[-1]);
$_->cancel for @clean;
@clean = ();
}
# _pop pops the current coroutine off the stack. If given a callback, it calls
# a callback on it, otherwise, schedules it for cleanup. It then transfers to
# the next one on the stack. Note that it can't pop-and-return (which would
# make more sense) because any action on it must happen before control is
# transfered away from it
lib/Mojo/AsyncAwait/Backend/Coro.pm view on Meta::CPAN
if Sub::Util::subname($body) =~ /::__ANON__$/;
my $wrapped = sub {
my @caller = caller;
my $promise = Mojo::Promise->new;
my $coro = Coro::State->new(sub {
eval {
BEGIN { $^H{'Mojo::AsyncAwait::Backend::Coro/async'} = 1 }
$promise->resolve($body->(@_)); 1
} or $promise->reject($@);
_pop;
}, @_);
$coro->{desc} = "$subname called at $caller[1] line $caller[2], $desc";
_push $coro;
return $promise;
};
if ($opts->{-install}) {
Mojo::Util::monkey_patch $caller[0], $opts->{-name} => $wrapped;
view all matches for this distribution
view release on metacpan or search on metacpan
t/complex.html view on Meta::CPAN
</li><li class="thumbstrip__item js-thumbstrip-item xs-relative xs-overflow-hidden list-unstyled js-scl-item ">
<div class="xs-relative">
<div class="thumbstrip__item__image js-progressive-image xs-col-12 xs-mb1 ">
<img class="xs-block" src="https://img.buzzfeed.com/buzzfeed-static/static/2020-08/13/23/campaign_images/ebd272f8b183/congress-has-stopped-negotiating-on-coronavirus-a-2-5145-1597360711-23_dblbig.jpg?output-format=auto&output-qual...
</div>
</div>
t/complex.html view on Meta::CPAN
</li><li class="thumbstrip__item js-thumbstrip-item xs-relative xs-overflow-hidden list-unstyled js-scl-item ">
<div class="xs-relative">
<div class="thumbstrip__item__image js-progressive-image xs-col-12 xs-mb1 ">
<img class="xs-block" src="https://img.buzzfeed.com/buzzfeed-static/static/2020-08/14/1/campaign_images/c0c2c7b757fd/coronavirus-testing-in-hot-spot-states-is-declini-2-15309-1597368834-2_dblbig.jpg?output-format=auto&output-quali...
</div>
</div>
<a href="https://www.buzzfeednews.com/article/peteraldhous/coronavirus-testing-decline-texas-florida?origin=thum" class="thumbstrip__item__link xs-absolute xs-t0 xs-l0 xs-text-6 text-white xs-p1" data-bfa-impressions="true" data-bfa="@a:Fee...
type:buzz,
contentCategory:,
unit:trending-on-buzzfeednews,
unitType:thumbstrip,
unit_name:,
t/complex.html view on Meta::CPAN
<a href="https://www.buzzfeednews.com/article/emersonmalone/new-jersey-party-host-arrested-coronavirus?origin=thum" class="thumbstrip__item__link xs-absolute xs-t0 xs-l0 xs-text-6 text-white xs-p1" data-bfa-impressions="true" data-bfa="@a:F...
type:buzz,
contentCategory:,
unit:trending-on-buzzfeednews,
unitType:thumbstrip,
unit_name:,
view all matches for this distribution
view release on metacpan or search on metacpan
t/samples/perlmonks.html view on Meta::CPAN
<p>Warning: I've never written a VM or a bytecode interpreter. I have written interpreters and worked with bytecodes before (okay, a 6502 emulator, but that's basically a bytecode interpreter, right?) Just remember that I'm not posting from a posit...
<p>So I found the Lua opcode set, and it seems a good starting point for talking about a small, though perhaps not minimal, Turing machine that seems to do much of what Chromatic was thinking about... except for XS, which I still haven't wrapped my h...
<p>Lua has <a href="http://www.jucs.org/jucs_11_7/the_implementation_of_lua/jucs_11_7_1159_1176_defigueiredo.html#sec7">a register-based 35 opcode VM with flat closures, threads, coroutines, incremental garbage collection...</a> and manages to shoeho...
<p>Again, a disclaimer: I haven't been in a compiler construction class for 25 years, and my career has typically been enterprise coding, data analysis, and tool scripting. Regardless, a small opcode set seems to me to be important for portability. ...
<p>I don't assume that Lua's codes are sufficient for Perl... things are likely missing or just not quite right for Perl. But I have to start somewhere, right? And I figure some of you have the right Domain Knowledge to shed some light on the subje...
view all matches for this distribution
view release on metacpan or search on metacpan
t/assets/js/DataTables-1.9.4/media/js/jquery.dataTables.js view on Meta::CPAN
* the data that is being used to sort a column. This is useful if you want to do sorting
* based on live data (for example the contents of an 'input' element) rather than just the
* static string that DataTables knows of. The way these plug-ins work is that you create
* an array of the values you wish to be sorted for the column in question and then return
* that array. Which pre-sorting function is run here depends on the sSortDataType parameter
* that is used for the column (if any). This is the corollary of <i>ofnSearch</i> for sort
* data.
* <ul>
* <li>
* Function input parameters:
* <ul>
t/assets/js/DataTables-1.9.4/media/js/jquery.dataTables.js view on Meta::CPAN
* (or have it automatically detected for you by DataTables or a type detection plug-in),
* you will typically be using this for custom sorting, but it can also be used to provide
* custom filtering by allowing you to pre-processing the data and returning the data in
* the format that should be filtered upon. This is done by adding functions this object
* with a parameter name which matches the sType for that target column. This is the
* corollary of <i>afnSortData</i> for filtering data.
* <ul>
* <li>
* Function input parameters:
* <ul>
* <li>{*} Data from the column cell to be prepared for filtering</li>
view all matches for this distribution
view release on metacpan or search on metacpan
t/samples/perlmonks.html view on Meta::CPAN
<p>Warning: I've never written a VM or a bytecode interpreter. I have written interpreters and worked with bytecodes before (okay, a 6502 emulator, but that's basically a bytecode interpreter, right?) Just remember that I'm not posting from a posit...
<p>So I found the Lua opcode set, and it seems a good starting point for talking about a small, though perhaps not minimal, Turing machine that seems to do much of what Chromatic was thinking about... except for XS, which I still haven't wrapped my h...
<p>Lua has <a href="http://www.jucs.org/jucs_11_7/the_implementation_of_lua/jucs_11_7_1159_1176_defigueiredo.html#sec7">a register-based 35 opcode VM with flat closures, threads, coroutines, incremental garbage collection...</a> and manages to shoeho...
<p>Again, a disclaimer: I haven't been in a compiler construction class for 25 years, and my career has typically been enterprise coding, data analysis, and tool scripting. Regardless, a small opcode set seems to me to be important for portability. ...
<p>I don't assume that Lua's codes are sufficient for Perl... things are likely missing or just not quite right for Perl. But I have to start somewhere, right? And I figure some of you have the right Domain Knowledge to shed some light on the subje...
view all matches for this distribution
view release on metacpan or search on metacpan
share/public/revealjs/plugin/highlight/highlight.js view on Meta::CPAN
}
})();
// END CUSTOM REVEAL.JS INTEGRATION
/*! highlight.js v9.11.0 | BSD3 License | git.io/hljslicense */
!function(e){var n="object"==typeof window&&window||"object"==typeof self&&self;"undefined"!=typeof exports?e(exports):n&&(n.hljs=e({}),"function"==typeof define&&define.amd&&define([],function(){return n.hljs}))}(function(e){function n(e){return e.r...
c:[{cN:"comment",b:/\(\*/,e:/\*\)/},e.ASM,e.QSM,e.CNM,{b:/\{/,e:/\}/,i:/:/}]}});hljs.registerLanguage("roboconf",function(a){var e="[a-zA-Z-_][^\\n{]+\\{",n={cN:"attribute",b:/[a-zA-Z-_]+/,e:/\s*:/,eE:!0,starts:{e:";",r:0,c:[{cN:"variable",b:/\.[a-zA...
view all matches for this distribution
view release on metacpan or search on metacpan
share/resources/public/swagger-ui/swagger-ui-bundle.js view on Meta::CPAN
*
* Copyright(c) 2016 Gregory Jacobs <greg@greg-jacobs.com>
* MIT License
*
* https://github.com/gregjacobs/Autolinker.js
*/o=[],void 0===(i="function"==typeof(r=function(){var e,t,n,r,o,i,a,s=function(e){e=e||{},this.version=s.version,this.urls=this.normalizeUrlsCfg(e.urls),this.email="boolean"!=typeof e.email||e.email,this.twitter="boolean"!=typeof e.twitter||e.twitt...
//# sourceMappingURL=swagger-ui-bundle.js.map
view all matches for this distribution
view release on metacpan or search on metacpan
benchmark_compare.pl view on Meta::CPAN
use Benchmark ':all';
async { # use thread and run EV. You can use MongoDB::Async not in Coro threads, but it's ineffective, because coro must run EV every time you waiting for data.
print "Save 20000 docs\n";
cmpthese ( 20000, {
'MongoDB::Async save' => sub {$dba->save($doc); $doc->{_id}++ },
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Monitoring/GLPlugin/SNMP/MibsAndOids/PRINTERMIB.pm view on Meta::CPAN
'11' => 'fuserOil',
'12' => 'solidWax',
'13' => 'ribbonWax',
'14' => 'wasteWax',
'15' => 'fuser',
'16' => 'coronaWire',
'17' => 'fuserOilWick',
'18' => 'cleanerUnit',
'19' => 'fuserCleaningPad',
'20' => 'transferUnit',
'21' => 'tonerCartridge',
view all matches for this distribution
view release on metacpan or search on metacpan
lib/MooX/Role/Chatty.pm view on Meta::CPAN
end, you don't need to worry about setting up L</logger> if you don't
want to. If you haven't explicitly set this attribute, the first time
you need it (by calling L</logger> or L</remark>) a default logger
will be instantiated for you. This logger is a L<Log::Any::Proxy>, so
you can call any of the methods supported by L<Log::Any> to generate
messages. A corollary of this behavior is that you have to have
L<Log::Any> installed, or a fatal error occurs.
A brief timestamp is prepended to each line of the message. The
logger is connected to a L<Log::Any::Adapter::Carp> adapter that passes
on logged messages but suppresses file/line information. The result
view all matches for this distribution
view release on metacpan or search on metacpan
lib/MooseX/Event/Role.pm view on Meta::CPAN
$self->current_event($ce);
return;
};
my $emit_coro = sub {
my $self = shift;
my( $event, @args ) = @_;
if ( ! $self->event_exists($event) ) {
die "Event $event does not exist";
}
lib/MooseX/Event/Role.pm view on Meta::CPAN
sub emit {
no warnings 'redefine';
if ( defined *Coro::async{CODE} ) {
*emit = $emit_coro;
goto $emit_coro;
}
else {
*emit = $emit_stock;
goto $emit_stock;
}
lib/MooseX/Event/Role.pm view on Meta::CPAN
=head2 our method emit( Str $event, Array[Any] *@args )
Normally called within the class using the MooseX::Event role. This calls all
of the registered listeners on $event with @args.
If you're using coroutines then each listener will get its own thread and
emit will cede before returning.
=head2 our method remove_all_listeners( Str $event )
Removes all listeners for $event
lib/MooseX/Event/Role.pm view on Meta::CPAN
=end internal
=begin internal
=method my method emit_coro( Str $event, Array[Any] *@args )
The L<Coro> implementation of the emit method-- calls each of the listeners
in its own thread and emits immediate execution by calling cede before
returning.
view all matches for this distribution
view release on metacpan or search on metacpan
bench/moose.forkbomb.pl
dist.ini
ex/candygram.pl
ex/serial_watcher.pl
ex/tbray/tbray_baseline.pl
ex/tbray/tbray_coro.pl
ex/tbray/tbray_coro_fork.pl
ex/tbray/tbray_coro_workers.pl
ex/tbray/tbray_poe.pl
ex/tbray/tbray_poe_workers.pl
ex/tbray/wf_mmap.pl
ex/tbray/widefinder.pl
lib/MooseX/POE.pm
view all matches for this distribution
view release on metacpan or search on metacpan
effective_tld_names.dat view on Meta::CPAN
// sandvik : Sandvik AB
// https://www.iana.org/domains/root/db/sandvik.html
sandvik
// sandvikcoromant : Sandvik AB
// https://www.iana.org/domains/root/db/sandvikcoromant.html
sandvikcoromant
// sanofi : Sanofi
// https://www.iana.org/domains/root/db/sanofi.html
sanofi
view all matches for this distribution
view release on metacpan or search on metacpan
htdocs/src-min/mode-lean.js view on Meta::CPAN
define("ace/mode/doc_comment_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules"],function(e,t,n){"use strict";var r=e("../lib/oop"),i=e("./text_highlight_rules").TextHighlightRules,s=function(){this.$rules={s...
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Myriad.pm view on Meta::CPAN
=head2 PHP
=over 4
=item * L<Swoft|http://en.swoft.org/> - async support via Swoole's coroutines, HTTP/websockets based with additional support for Redis/database connection pooling and ORM
=back
=head2 Cloud providers
view all matches for this distribution
view release on metacpan or search on metacpan
t/sample.mzML view on Meta::CPAN
</binaryDataArray>
<binaryDataArray encodedLength="105600">
<cvParam cvRef="MS" accession="MS:1000521" name="32-bit float" value=""/>
<cvParam cvRef="MS" accession="MS:1000576" name="no compression" value=""/>
<cvParam cvRef="MS" accession="MS:1000515" name="intensity array" value="" unitCvRef="MS" unitAccession="MS:1000131" unitName="number of counts"/>
<binary>sjpCQaE260LjnVxDLN19Qx7xZEPkhK5DXPm0Q8KKI0MolrhBAAAAAAAAAABVIuxAFJv2QimHZ0MilpxDlcvMQyImGEQtoppDbHIkQgAAAAB35NFB7FrnQmljTkIlx0RC47gxQ5oCQUMWVWVDjsh2QztSrEKiTupAAAAAAAAAAAAb1rtADRYXQ82uuEO66blDbWWFQ9gMk0OAalJDZmRKQ7N/V0OHAmNDLAIE...
</binaryDataArray>
</binaryDataArrayList>
</spectrum>
<spectrum index="9" id="controllerType=0 controllerNumber=1 scan=10" defaultArrayLength="552">
<cvParam cvRef="MS" accession="MS:1000511" name="ms level" value="2"/>
view all matches for this distribution
view release on metacpan or search on metacpan
share/bibframe2marc-2.10.0.xsl view on Meta::CPAN
<label>trumpet</label>
</performer>
<performer xmlns:bf2marc="http://www.loc.gov/bf2marc">
<code>bc</code>
<type>brass</type>
<label>coronet</label>
</performer>
<performer xmlns:bf2marc="http://www.loc.gov/bf2marc">
<code>bd</code>
<type>brass</type>
<label>trombone</label>
view all matches for this distribution
view release on metacpan or search on metacpan
share/2.10.0/ConvSpec-010-048.xsl view on Meta::CPAN
</local:marctimeperiod>
<local:instrumentCode>
<ba property="bf:instrument" entity="bf:MusicInstrument"><bf:instrumentalType>brass</bf:instrumentalType><rdfs:label>horn</rdfs:label></ba>
<bb property="bf:instrument" entity="bf:MusicInstrument"><bf:instrumentalType>brass</bf:instrumentalType><rdfs:label>trumpet</rdfs:label></bb>
<bc property="bf:instrument" entity="bf:MusicInstrument"><bf:instrumentalType>brass</bf:instrumentalType><rdfs:label>coronet</rdfs:label></bc>
<bd property="bf:instrument" entity="bf:MusicInstrument"><bf:instrumentalType>brass</bf:instrumentalType><rdfs:label>trombone</rdfs:label></bd>
<be property="bf:instrument" entity="bf:MusicInstrument"><bf:instrumentalType>brass</bf:instrumentalType><rdfs:label>tuba</rdfs:label></be>
<bf property="bf:instrument" entity="bf:MusicInstrument"><bf:instrumentalType>brass</bf:instrumentalType><rdfs:label>baritone</rdfs:label></bf>
<bn property="bf:instrument" entity="bf:MusicInstrument"><bf:instrumentalType>brass</bf:instrumentalType></bn>
<bu property="bf:instrument" entity="bf:MusicInstrument"><bf:instrumentalType>brass</bf:instrumentalType></bu>
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Net/AMQP.pm view on Meta::CPAN
=head1 QUOTES
"All problems in computer science can be solved by another level of indirection." -- David Wheeler's observation
"...except for the problem of too many layers of indirection." -- Kevlin Henney's corollary
=head1 COPYRIGHT
Copyright (c) 2009 Eric Waters and XMission LLC (http://www.xmission.com/).
Copyright (c) 2012, 2013 Chip Salzenberg and Topsy Labs (http://labs.topsy.com/).
view all matches for this distribution
view release on metacpan or search on metacpan
t/21-async-anyevent.t
t/22-async-poe.t
t/23-async-ev.t
t/24-async-any.t
t/30-useragent-simple.t
t/40-coro-any.t
t/41-coro-ev.t
t/42-coro-anyevent.t
t/43-coro-select.t
t/90-pod.t
t/91-pod-coverage.t
META.yml Module meta-data (added by MakeMaker)
SIGNATURE Public-key signature (added by MakeMaker)
view all matches for this distribution
view release on metacpan or search on metacpan
** TODO **
XS:
- under coro and threads, when forcibly destroyed, there are some ways to
make it leak or double-free memory, must be investigated further.
Easy:
- test callback arguments just before perform (maybe only for default writers)
- write more documentation
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Net/Domain/Parts.pm view on Meta::CPAN
"schaeffler" : 1,
"mh" : 1,
"jm" : 1,
"nc" : 1,
"solar" : 1,
"sandvikcoromant" : 1,
"business" : 1,
"soccer" : 1,
"sg" : 1,
"hyundai" : 1,
"tkmaxx" : 1,
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Net/Domain/TLD.pm view on Meta::CPAN
'sale' => q{United TLD Holdco, Ltd},
'salon' => q{Outer Orchard, LLC},
'samsclub' => q{Wal-Mart Stores, Inc.},
'samsung' => q{SAMSUNG SDS CO., LTD},
'sandvik' => q{Sandvik AB},
'sandvikcoromant' => q{Sandvik AB},
'sanofi' => q{Sanofi},
'sap' => q{SAP AG},
'sapo' => q{PT Comunicacoes S.A.},
'sarl' => q{Delta Orchard, LLC},
'sas' => q{Research IP LLC},
view all matches for this distribution
view release on metacpan or search on metacpan
examples/coro.pl view on Meta::CPAN
use Coro::Handle;
&main;exit;
sub main {
my @coros;
for my $i (0..10) {
push @coros, async { one_request($i) };
}
$_->join for @coros;
}
sub one_request {
my $i = shift;
view all matches for this distribution