Result:
found more than 947 distributions - search limited to the first 2001 files matching your query ( run in 2.641 )


BDB

 view release on metacpan or  search on metacpan

BDB.pm  view on Meta::CPAN

=head1 NAME

BDB - Asynchronous Berkeley DB access

=head1 SYNOPSIS

 use BDB;

BDB.pm  view on Meta::CPAN

See the BerkeleyDB documentation (L<http://www.oracle.com/technology/documentation/berkeley-db/db/index.html>).
The BDB API is very similar to the C API (the translation has been very faithful).

See also the example sections in the document below and possibly the eg/
subdirectory of the BDB distribution. Last not least see the IO::AIO
documentation, as that module uses almost the same asynchronous request
model as this module.

I know this is woefully inadequate documentation. Send a patch!


BDB.pm  view on Meta::CPAN


=item pending

The request has been executed and is waiting for result processing.

While request submission and execution is fully asynchronous, result
processing is not and relies on the perl interpreter calling C<poll_cb>
(or another function with the same effect).

=item result

The request results are processed synchronously by C<poll_cb>.

The C<poll_cb> function will process all outstanding aio requests by
calling their callbacks, freeing memory associated with them and managing
any groups they are contained in.

BDB.pm  view on Meta::CPAN

=head1 BERKELEYDB FUNCTIONS

All of these are functions. The create functions simply return a new
object and never block. All the remaining functions take an optional
callback as last argument. If it is missing, then the function will be
executed synchronously. In both cases, C<$!> will reflect the return value
of the function.

BDB functions that cannot block (mostly functions that manipulate
settings) are method calls on the relevant objects, so the rule of thumb
is: if it's a method, it's not blocking, if it's a function, it takes a

BDB.pm  view on Meta::CPAN

The C<SV *callback> is the optional callback function to call when the
request is completed. This last callback argument is special: the callback
is simply the last argument passed. If there are "optional" arguments
before the callback they can be left out. The callback itself can be left
out or specified as C<undef>, in which case the function will be executed
synchronously.

For example, C<db_env_txn_checkpoint> usually is called with all integer
arguments zero. These can be left out, so all of these specify a call
to C<< DB_ENV->txn_checkpoint >>, to be executed asynchronously with a
callback to be called:

   db_env_txn_checkpoint $db_env, 0, 0, 0, sub { };
   db_env_txn_checkpoint $db_env, 0, 0, sub { };
   db_env_txn_checkpoint $db_env, sub { };

While these all specify a call to C<< DB_ENV->txn_checkpoint >> to be
executed synchronously:

   db_env_txn_checkpoint $db_env, 0, 0, 0, undef;
   db_env_txn_checkpoint $db_env, 0, 0, 0;
   db_env_txn_checkpoint $db_env, 0;

BDB.pm  view on Meta::CPAN

=item BDB::poll_wait

If there are any outstanding requests and none of them in the result
phase, wait till the result filehandle becomes ready for reading (simply
does a C<select> on the filehandle. This is useful if you want to
synchronously wait for some requests to finish).

See C<nreqs> for an example.

=item BDB::poll

BDB.pm  view on Meta::CPAN

=over 4

=item BDB::min_parallel $nthreads

Set the minimum number of BDB threads to C<$nthreads>. The current
default is C<8>, which means eight asynchronous operations can execute
concurrently at any one time (the number of outstanding requests,
however, is unlimited).

BDB starts threads only on demand, when an BDB request is queued and
no free thread exists. Please note that queueing up a hundred requests can

BDB.pm  view on Meta::CPAN

      )
   }

It works by polling for results till the request has finished and then
sets C<$!> to the return value. This means that if you don't use a
callback, BDB would simply fall back to synchronous operations.

By default, or if the sync prepare function is set to C<undef>, is to
execute callback-less BDB requests in the foreground thread, setting C<$!>
to the return value, without polling for other events.

 view all matches for this distribution


BPAN

 view release on metacpan or  search on metacpan

inc/Module/Install.pm  view on Meta::CPAN

use 5.004;
use strict 'vars';

use vars qw{$VERSION};
BEGIN {
    # All Module::Install core packages now require synchronised versions.
    # This will be used to ensure we don't accidentally load old or
    # different versions of modules.
    # This is not enforced yet, but will be some time in the next few
    # releases once we can make sure it won't clash with custom
    # Module::Install extensions.

 view all matches for this distribution


BPM-Engine

 view release on metacpan or  search on metacpan

inc/Module/Install.pm  view on Meta::CPAN

use File::Find ();
use File::Path ();

use vars qw{$VERSION $MAIN};
BEGIN {
	# All Module::Install core packages now require synchronised versions.
	# This will be used to ensure we don't accidentally load old or
	# different versions of modules.
	# This is not enforced yet, but will be some time in the next few
	# releases once we can make sure it won't clash with custom
	# Module::Install extensions.

 view all matches for this distribution


BPM-XPDL

 view release on metacpan or  search on metacpan

lib/BPM/XPDL/xsd/xpdl-2.0/TC-1025_schema_20_2005-09-07_xpdl.xsd  view on Meta::CPAN

					<xsd:documentation>BPMN: needed for independent subprocess</xsd:documentation>
				</xsd:annotation>
			</xsd:attribute>
			<xsd:attribute name="InstanceDataField" type="xsd:string" use="optional">
				<xsd:annotation>
					<xsd:documentation> Used to store the instance id of the subflow instantiated by the activity. This is then available later on (e.g. for correlation, messaging etc.) especially in the case of asynchronous invocation.</xsd:documentation>
				</xsd:annotation>
			</xsd:attribute>
			<xsd:attribute name="StartActivitySetId" type="xsd:NMTOKEN" use="optional"/>
			<xsd:attribute name="StartActivityId" type="xsd:NMTOKEN" use="optional"/>
			<xsd:anyAttribute namespace="##other" processContents="lax"/>

 view all matches for this distribution


BSD-Process-Affinity

 view release on metacpan or  search on metacpan

inc/Module/Install.pm  view on Meta::CPAN

use 5.005;
use strict 'vars';

use vars qw{$VERSION $MAIN};
BEGIN {
	# All Module::Install core packages now require synchronised versions.
	# This will be used to ensure we don't accidentally load old or
	# different versions of modules.
	# This is not enforced yet, but will be some time in the next few
	# releases once we can make sure it won't clash with custom
	# Module::Install extensions.

 view all matches for this distribution


BSD-devstat

 view release on metacpan or  search on metacpan

inc/Module/Install.pm  view on Meta::CPAN

use 5.005;
use strict 'vars';

use vars qw{$VERSION $MAIN};
BEGIN {
	# All Module::Install core packages now require synchronised versions.
	# This will be used to ensure we don't accidentally load old or
	# different versions of modules.
	# This is not enforced yet, but will be some time in the next few
	# releases once we can make sure it won't clash with custom
	# Module::Install extensions.

 view all matches for this distribution


BSON-XS

 view release on metacpan or  search on metacpan

bson/bson-atomic.h  view on Meta::CPAN


#if defined(_WIN32)
# define bson_memory_barrier() MemoryBarrier()
#elif defined(__GNUC__)
# if BSON_GNUC_CHECK_VERSION(4, 1)
#  define bson_memory_barrier() __sync_synchronize()
# else
#  warning "GCC Pre-4.1 discovered, using inline assembly for memory barrier."
#  define bson_memory_barrier() __asm__ volatile ("":::"memory")
# endif
#elif defined(__SUNPRO_C)

 view all matches for this distribution


BZ-Client

 view release on metacpan or  search on metacpan

lib/BZ/Client/Bugzilla.pm  view on Meta::CPAN


=item db_time

I<db_time> (L<DateTime>) -  The current time in UTC, according to the Bugzilla database server.

Note that Bugzilla assumes that the database and the webserver are running in the same time zone. However, if the web server and the database server aren't synchronized for some reason, this is the time that you should rely on for doing searches and ...

=item web_time

I<web_time> (L<DateTime>) -  This is the current time in UTC, according to Bugzilla's web server.

 view all matches for this distribution


Backblaze-B2

 view release on metacpan or  search on metacpan

lib/Backblaze/B2.pm  view on Meta::CPAN

        api => 'Backblaze::B2::v1::Synchronous', # the default
    );

Creates a new instance. Depending on whether you pass in
C<<Backblaze::B2::v1::Synchronous>> or C<<Backblaze::B2::v1::AnyEvent>>,
you will get a synchronous or asynchronous API.

The synchronous API is what is documented here, as this is the
most likely use case.

    my @buckets = $b2->buckets();
    for( @buckets ) {
        ...
    }

The asynchronous API is identical to the synchronous API in spirit, but
will return L<Promises> . These condvars usually return
two or more parameters upon completion:

    my $results = $b2->buckets();
    $results->then( sub{ 

lib/Backblaze/B2.pm  view on Meta::CPAN

        for( @buckets ) {
            ...
        }
    }

The asynchronous API puts the burden of error handling into your code.

=cut

use vars '$API_BASE';
$API_BASE = 'https://api.backblazeb2.com/b2api/v1/';

sub new {
    my( $class, %options ) = @_;
    
    # Hrr. We need to get at an asynchronous API here and potentially
    # wrap the results to synchronous results in case the user wants them.
    # Turtles all the way down, this means we can't reuse calls into ourselves...

    $options{ api } ||= 'Backblaze::B2::v1::Synchronous';
    if( ! ref $options{ api }) {
        eval "require $options{ api }";

lib/Backblaze/B2.pm  view on Meta::CPAN

sub new {
    my( $class, %options ) = @_;
    weaken $options{ parent };
    
    # Whoa! We assume that the async version has the same class name
    # as the synchronous version and just strip it off.
    $options{ file_class } =~ s!::Synchronized$!!;
    
    bless \%options => $class,
}

 view all matches for this distribution


Backup-Duplicity-YADW

 view release on metacpan or  search on metacpan

lib/Backup/Duplicity/YADW.pm  view on Meta::CPAN

	args_pos
		my $self,
		my $cmds;

	if ( $self->_conf()->get('asyncupload') ) {
		push @$cmds, '--asynchronous-upload';
	}
}

sub _get_incl_excl_list {

 view all matches for this distribution


BackupPC-XS

 view release on metacpan or  search on metacpan

zlib/inflate.h  view on Meta::CPAN

    CHECK,      /* i: waiting for 32-bit check value */
    LENGTH,     /* i: waiting for 32-bit length (gzip) */
    DONE,       /* finished check, done -- remain here until reset */
    BAD,        /* got a data error -- remain here until reset */
    MEM,        /* got an inflate() memory error -- remain here until reset */
    SYNC        /* looking for synchronization bytes to restart inflate() */
} inflate_mode;

/*
    State transitions between above modes -

 view all matches for this distribution


Barcode-DataMatrix

 view release on metacpan or  search on metacpan

inc/Module/Install.pm  view on Meta::CPAN

use File::Find ();
use File::Path ();

use vars qw{$VERSION $MAIN};
BEGIN {
	# All Module::Install core packages now require synchronised versions.
	# This will be used to ensure we don't accidentally load old or
	# different versions of modules.
	# This is not enforced yet, but will be some time in the next few
	# releases once we can make sure it won't clash with custom
	# Module::Install extensions.

 view all matches for this distribution


BarefootJS

 view release on metacpan or  search on metacpan

lib/BarefootJS.pm  view on Meta::CPAN

#
# The value stacks live in a package-level store rather than per-instance or
# on `$c->stash`: a parent template and the child templates it renders via
# `render_child` are separate bf instances that don't reliably share a
# controller (the Xslate backend runs with `c => undef`) nor a backend (the
# Mojo path lazily builds one per instance). SSR rendering is synchronous —
# nothing awaits between a provider's push and its matching pop — and the
# push/pop are perfectly balanced, so the per-name stack always unwinds to
# empty at the end of each provider subtree, keeping concurrent root renders
# isolated. provide/revoke return '' so they drop cleanly into an inline
# `<: … :>` (Kolon) or `% … ;` (EP) emit.

 view all matches for this distribution


Baseball-Sabermetrics

 view release on metacpan or  search on metacpan

inc/Module/Install.pm  view on Meta::CPAN

use 5.004;
use strict 'vars';

use vars qw{$VERSION};
BEGIN {
    # All Module::Install core packages now require synchronised versions.
    # This will be used to ensure we don't accidentally load old or
    # different versions of modules.
    # This is not enforced yet, but will be some time in the next few
    # releases once we can make sure it won't clash with custom
    # Module::Install extensions.

 view all matches for this distribution


Bb-Collaborate-Ultra

 view release on metacpan or  search on metacpan

inc/Module/Install.pm  view on Meta::CPAN

use File::Find ();
use File::Path ();

use vars qw{$VERSION $MAIN};
BEGIN {
	# All Module::Install core packages now require synchronised versions.
	# This will be used to ensure we don't accidentally load old or
	# different versions of modules.
	# This is not enforced yet, but will be some time in the next few
	# releases once we can make sure it won't clash with custom
	# Module::Install extensions.

 view all matches for this distribution


Bb-Collaborate-V3

 view release on metacpan or  search on metacpan

inc/Module/Install.pm  view on Meta::CPAN

use File::Find ();
use File::Path ();

use vars qw{$VERSION $MAIN};
BEGIN {
	# All Module::Install core packages now require synchronised versions.
	# This will be used to ensure we don't accidentally load old or
	# different versions of modules.
	# This is not enforced yet, but will be some time in the next few
	# releases once we can make sure it won't clash with custom
	# Module::Install extensions.

 view all matches for this distribution


Beagle

 view release on metacpan or  search on metacpan

share/public/js/base/prettify.js  view on Meta::CPAN

window.PR_SHOULD_USE_CONTINUATION=true,window.PR_TAB_WIDTH=8,window.PR_normalizedHtml=window.PR=window.prettyPrintOne=window.prettyPrint=void
0,window._pr_isIE6=function(){var a=navigator&&navigator.userAgent&&navigator.userAgent.match(/\bMSIE ([678])\./);return a=a?+a[1]:false,window._pr_isIE6=function(){return a},a},(function(){var
a=true,b=null,c='break continue do else for if return while auto case char const default double enum extern float goto int long register short signed sizeof static struct switch typedef union unsigned void volatile catch class delete false import new...
a=['!','!=','!==','#','%','%=','&','&&','&&=','&=','(','*','*=','+=',',','-=','->','/','/=',':','::',';','<','<<','<<=','<=','=','==','===','>','>=','>>','>>=','>>>','>>>=','?','@','[','^','^=','^^','^^=','{','|','|=','||','||=','~','break','case','c...
G(a){return a.replace(n,'&amp;').replace(o,'&lt;').replace(p,'&gt;').replace(q,'&quot;')}function
H(a){return a.replace(n,'&amp;').replace(o,'&lt;').replace(p,'&gt;')}C=/&lt;/g,B=/&gt;/g,w=/&apos;/g,E=/&quot;/g,v=/&amp;/g,D=/&nbsp;/g;function
I(a){var b=a.indexOf('&'),c,d,e,f;if(b<0)return a;for(--b;(b=a.indexOf('&#',b+1))>=0;)d=a.indexOf(';',b),d>=0&&(e=a.substring(b+3,d),f=10,e&&e.charAt(0)==='x'&&(e=e.substring(1),f=16),c=parseInt(e,f),isNaN(c)||(a=a.substring(0,b)+String.fromCharCode(...
J(a){return'XMP'===a.tagName}u=/[\r\n]/g;function K(c,d){var e;return'PRE'===c.tagName?a:u.test(d)?(e='',c.currentStyle?(e=c.currentStyle.whiteSpace):window.getComputedStyle&&(e=window.getComputedStyle(c,b).whiteSpace),!e||e==='pre'):a}function

 view all matches for this distribution


BeamerReveal

 view release on metacpan or  search on metacpan

beamer-reveal-example_files/libs/revealjs/dist/reveal.esm.js.map  view on Meta::CPAN

{"version":3,"file":"reveal.esm.js","sources":["../js/utils/util.js","../js/utils/device.js","../node_modules/fitty/dist/fitty.module.js","../js/controllers/slidecontent.js","../js/utils/constants.js","../js/controllers/slidenumber.js","../js/control...

 view all matches for this distribution


Beanstalk-Client

 view release on metacpan or  search on metacpan

inc/Module/Install.pm  view on Meta::CPAN

use File::Path ();
use FindBin;

use vars qw{$VERSION $MAIN};
BEGIN {
	# All Module::Install core packages now require synchronised versions.
	# This will be used to ensure we don't accidentally load old or
	# different versions of modules.
	# This is not enforced yet, but will be some time in the next few
	# releases once we can make sure it won't clash with custom
	# Module::Install extensions.

 view all matches for this distribution


Beekeeper

 view release on metacpan or  search on metacpan

examples/scraper/client.pl  view on Meta::CPAN


if (!$opt_async) {

    foreach my $url (@urls) {

        # Using the synchronous client: urls will be processed one after another

        my $response = MyApp::Service::Scraper->get_title( $url );

        if ($response->success) {
            my $title = $response->result;

examples/scraper/client.pl  view on Meta::CPAN


    my $cv = AnyEvent->condvar;

    foreach my $url (@urls) {

        # Using the asynchronous client: urls will be processed concurrently

        $cv->begin;

        MyApp::Service::Scraper->get_title_async( $url, sub {
            my ($response) = @_;

 view all matches for this distribution


Bencher

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

          this release (duplicate).


1.050   2020-06-18  Released-By: PERLANCAR; Urgency: medium

        - Resynchronize version number with Bencher-Backend.

	- Introduce module_startup_precision property, deprecate
	  default_precision.


Changes  view on Meta::CPAN

	- Introduce participant's import_args, import_args_array.


1.040   2017-07-13  Released-By: PERLANCAR

        - Update information and synchronize version number with
          Bencher::Backend 1.040.


1.028   2017-01-25  Released-By: PERLANCAR

 view all matches for this distribution


Benchmark-DKbench

 view release on metacpan or  search on metacpan

data/wiki1.html  view on Meta::CPAN

<td style="background: LightGreen; color: black; vertical-align: middle; text-align: center;" class="table-success">Success
</td>
<td style="background: #ececec; color: black; vertical-align: middle; white-space: nowrap; text-align: center;" class="table-noAttempt">No attempt<br /><sup id="cite_ref-expendable_175-1" class="reference"><a href="#cite_note-expendable-175">&#91;167...
</td></tr>
<tr>
<td colspan="9">The launch was originally scheduled for the Falcon Heavy, but <a href="/wiki/Falcon_9_Full_Thrust#Modifications_from_Falcon_9_v1.1" title="Falcon 9 Full Thrust">performance improvements</a> allowed the mission to be carried out by an ...
</td></tr>
<tr>
<th scope="row" rowspan="2" style="text-align:center;">35
</th>
<td>3 June 2017,<br />21:07

data/wiki1.html  view on Meta::CPAN

<td style="background: LightGreen; color: black; vertical-align: middle; text-align: center;" class="table-success">Success
</td>
<td style="background: #ececec; color: black; vertical-align: middle; white-space: nowrap; text-align: center;" class="table-noAttempt">No attempt<br /><sup id="cite_ref-expendable_175-2" class="reference"><a href="#cite_note-expendable-175">&#91;167...
</td></tr>
<tr>
<td colspan="9">Originally expected to be flown on a <a href="/wiki/Falcon_Heavy" title="Falcon Heavy">Falcon Heavy</a>,<sup id="cite_ref-213" class="reference"><a href="#cite_note-213">&#91;205&#93;</a></sup> improvements to the Merlin engines meant...
</td></tr>
<tr>
<th scope="row" rowspan="2" style="text-align:center;">39
</th>
<td>14 August 2017,<br />16:31

data/wiki1.html  view on Meta::CPAN

</td>
<td><a href="/wiki/Formosat-5" title="Formosat-5">Formosat-5</a><sup id="cite_ref-eoportal-formosat5_220-0" class="reference"><a href="#cite_note-eoportal-formosat5-220">&#91;212&#93;</a></sup><sup id="cite_ref-Formosat5_homepage_221-0" class="refere...
</td>
<td>475&#160;kg (1,047&#160;lb)<sup id="cite_ref-gunter-formosat5_222-0" class="reference"><a href="#cite_note-gunter-formosat5-222">&#91;214&#93;</a></sup>
</td>
<td><a href="/wiki/Sun-synchronous_orbit" title="Sun-synchronous orbit">SSO</a>
</td>
<td><a href="/wiki/National_Space_Organization" title="National Space Organization">NSPO</a>
</td>
<td style="background: LightGreen; color: black; vertical-align: middle; text-align: center;" class="table-success">Success
</td>

data/wiki1.html  view on Meta::CPAN

<td style="background: LightGreen; color: black; vertical-align: middle; text-align: center;" class="table-success">Success<sup id="cite_ref-Govsat_SN_259-0" class="reference"><a href="#cite_note-Govsat_SN-259">&#91;250&#93;</a></sup>
</td>
<td style="background: #adffe6; color: black; vertical-align: middle; text-align: center;" class="partial table-partial">Controlled<br /><small>(ocean)</small><sup id="cite_ref-ocean_landing_39-6" class="reference"><a href="#cite_note-ocean_landing-3...
</td></tr>
<tr>
<td colspan="9">Reused booster from the classified <a href="/wiki/List_of_NRO_launches" title="List of NRO launches">NROL-76</a> mission in May 2017.<sup id="cite_ref-sfn-20180111_256-1" class="reference"><a href="#cite_note-sfn-20180111-256">&#91;24...
</td></tr>
<tr>
<th scope="row" rowspan="4" style="text-align:center;"><a href="/wiki/Falcon_Heavy_test_flight" title="Falcon Heavy test flight">FH 1</a>
</th>
<td rowspan="3">6 February 2018,<br />20:45<sup id="cite_ref-264" class="reference"><a href="#cite_note-264">&#91;255&#93;</a></sup>

data/wiki1.html  view on Meta::CPAN

<li><a href="/wiki/Starlink" title="Starlink">Tintin A and Tintin B</a><sup id="cite_ref-gunter-microsat2_281-0" class="reference"><a href="#cite_note-gunter-microsat2-281">&#91;272&#93;</a></sup></li></ul>
</div>
</td>
<td>2,150&#160;kg (4,740&#160;lb)
</td>
<td><a href="/wiki/Sun-synchronous_orbit" title="Sun-synchronous orbit">SSO</a>
</td>
<td><div class="plainlist">
<ul><li><a href="/wiki/Hisdesat" class="mw-redirect" title="Hisdesat">Hisdesat</a></li>
<li><a href="/wiki/ExactEarth" title="ExactEarth">exactEarth</a></li>
<li><a href="/wiki/SpaceX" title="SpaceX">SpaceX</a></li></ul>

data/wiki1.html  view on Meta::CPAN

<td style="background: LightGreen; color: black; vertical-align: middle; text-align: center;" class="table-success">Success<sup id="cite_ref-Hispasat_SFN_291-0" class="reference"><a href="#cite_note-Hispasat_SFN-291">&#91;282&#93;</a></sup>
</td>
<td style="background:#ececec; text-align:center;">No attempt<br /><sup id="cite_ref-nsf-20180305_292-0" class="reference"><a href="#cite_note-nsf-20180305-292">&#91;283&#93;</a></sup>
</td></tr>
<tr>
<td colspan="9">The Spanish commsat was the largest satellite flown by SpaceX as of March&#160;2018<sup class="plainlinks noexcerpt noprint asof-tag update" style="display:none;"><a class="external text" href="https://en.wikipedia.org/w/index.php?tit...
</td></tr>
<tr>
<th scope="row" rowspan="2" style="text-align:center;">51
</th>
<td>30 March 2018,<br />14:14<sup id="cite_ref-296" class="reference"><a href="#cite_note-296">&#91;287&#93;</a></sup>

data/wiki1.html  view on Meta::CPAN

<td style="background: LightGreen; color: black; vertical-align: middle; text-align: center;" class="table-success">Success<sup id="cite_ref-345" class="reference"><a href="#cite_note-345">&#91;335&#93;</a></sup>
</td>
<td style="background: #ececec; color: black; vertical-align: middle; white-space: nowrap; text-align: center;" class="table-noAttempt">No attempt<br /><sup id="cite_ref-expendable_175-4" class="reference"><a href="#cite_note-expendable-175">&#91;167...
</td></tr>
<tr>
<td colspan="9">The communications satellite serving the Middle East and the Asia-Pacific region at the same place as <a href="/wiki/SES-8" title="SES-8">SES-8</a>, and was the largest satellite built for SES.<sup id="cite_ref-SES12_343-1" class="ref...
</td></tr>
<tr>
<th scope="row" rowspan="2" style="text-align:center;">57
</th>
<td>29 June 2018,<br />09:42<sup id="cite_ref-347" class="reference"><a href="#cite_note-347">&#91;337&#93;</a></sup>

data/wiki1.html  view on Meta::CPAN

</td>
<td><a href="/wiki/SAOCOM_1A" class="mw-redirect" title="SAOCOM 1A">SAOCOM 1A</a><sup id="cite_ref-SAOCOM20090416_377-0" class="reference"><a href="#cite_note-SAOCOM20090416-377">&#91;367&#93;</a></sup><sup id="cite_ref-saocom_revision_378-0" class="...
</td>
<td>3,000&#160;kg (6,600&#160;lb)<sup id="cite_ref-nsf-20181008_375-1" class="reference"><a href="#cite_note-nsf-20181008-375">&#91;365&#93;</a></sup>
</td>
<td><a href="/wiki/Sun-synchronous_orbit" title="Sun-synchronous orbit">SSO</a>
</td>
<td><a href="/wiki/Comisi%C3%B3n_Nacional_de_Actividades_Espaciales" title="Comisión Nacional de Actividades Espaciales">CONAE</a>
</td>
<td style="background: LightGreen; color: black; vertical-align: middle; text-align: center;" class="table-success">Success<sup id="cite_ref-nsf-20181008_375-2" class="reference"><a href="#cite_note-nsf-20181008-375">&#91;365&#93;</a></sup>
</td>

data/wiki1.html  view on Meta::CPAN

</td>
<td><a href="/wiki/SSO-A" class="mw-redirect" title="SSO-A">SSO-A</a> (<i>SmallSat Express</i>)
</td>
<td>~4,000&#160;kg (8,800&#160;lb)<sup id="cite_ref-384" class="reference"><a href="#cite_note-384">&#91;374&#93;</a></sup>
</td>
<td><a href="/wiki/Sun-synchronous_orbit" title="Sun-synchronous orbit">SSO</a>
</td>
<td><a href="/wiki/Spaceflight_Industries" title="Spaceflight Industries">Spaceflight Industries</a>
</td>
<td style="background: LightGreen; color: black; vertical-align: middle; text-align: center;" class="table-success">Success<sup id="cite_ref-spacenews20181203_385-0" class="reference"><a href="#cite_note-spacenews20181203-385">&#91;375&#93;</a></sup>
</td>

data/wiki1.html  view on Meta::CPAN

</td>
<td style="background: LightGreen; color: black; vertical-align: middle; text-align: center;" class="table-success">Success<br /><small><span class="nowrap">(drone ship)</span></small>
</td></tr>
<tr>
<td colspan="9">Nusantara Satu is a private Indonesian comsat planned to be located at 146.0°&#160;east,<sup id="cite_ref-jls-201801012_412-1" class="reference"><a href="#cite_note-jls-201801012-412">&#91;402&#93;</a></sup> with a launch mass of 4,1...
<p>The <i>Beresheet</i> Moon lander (initially called <i>Sparrow</i>) was one of the candidates for the <a href="/wiki/Google_Lunar_X-Prize" class="mw-redirect" title="Google Lunar X-Prize">Google Lunar X-Prize</a>, whose developers <a href="/wiki/Sp...
</p>
</td></tr>
<tr>
<th scope="row" rowspan="2" style="text-align:center;">69
</th>

data/wiki1.html  view on Meta::CPAN

<td>B1053.1<br />(side)
</td>
<td style="background: LightGreen; color: black; vertical-align: middle; text-align: center;" class="table-success">Success<br /><small><span class="nowrap">(ground pad)</span></small>
</td></tr>
<tr>
<td colspan="9">Second flight of <a href="/wiki/Falcon_Heavy" title="Falcon Heavy">Falcon Heavy</a>, the first commercial flight, and the first one using <a href="/wiki/Falcon_9_Block_5" title="Falcon 9 Block 5">Block 5</a> boosters. SpaceX successfu...
</td></tr>
<tr>
<th scope="row" rowspan="2" style="text-align:center;">70
</th>
<td>4 May 2019,<br />06:48

data/wiki1.html  view on Meta::CPAN

</td>
<td><a href="/wiki/RADARSAT_Constellation" title="RADARSAT Constellation">RADARSAT Constellation</a><br />(3 satellites)
</td>
<td>4,200&#160;kg (9,300&#160;lb)<sup id="cite_ref-:9_457-0" class="reference"><a href="#cite_note-:9-457">&#91;445&#93;</a></sup>
</td>
<td><a href="/wiki/Sun-synchronous_orbit" title="Sun-synchronous orbit">SSO</a>
</td>
<td><a href="/wiki/Canadian_Space_Agency" title="Canadian Space Agency">Canadian Space Agency</a> (CSA)
</td>
<td style="background: LightGreen; color: black; vertical-align: middle; text-align: center;" class="table-success">Success
</td>

data/wiki1.html  view on Meta::CPAN

<td style="background: LightGreen; color: black; vertical-align: middle; text-align: center;" class="table-success">Success
</td>
<td style="background: LightGreen; color: black; vertical-align: middle; text-align: center;" class="table-success">Success<br /><small><span class="nowrap">(drone ship)</span></small>
</td></tr>
<tr>
<td colspan="9">Singaporean-Japanese <a href="/wiki/CondoSat" title="CondoSat">CondoSat</a> that will cover the Asia-Pacific region.<sup id="cite_ref-502" class="reference"><a href="#cite_note-502">&#91;490&#93;</a></sup> Due to the heavy weight of t...
</td></tr></tbody></table>
<h3><span class="mw-headline" id="2020">2020</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=List_of_Falcon_9_and_Falcon_Heavy_launches&amp;action=edit&amp;section=14" title="Edit section: 2...
<p>In late 2019, <a href="/wiki/Gwynne_Shotwell" title="Gwynne Shotwell">Gwynne Shotwell</a> stated that SpaceX hoped for as many as 24 launches for Starlink satellites in 2020,<sup id="cite_ref-spacenews-spacex-plans-24-starlink-launches-next-year_5...
</p>
<table class="wikitable plainrowheaders collapsible" style="width: 100%;">

data/wiki1.html  view on Meta::CPAN

<td style="background: LightGreen; color: black; vertical-align: middle; text-align: center;" class="table-success">Success
</td>
<td style="background: LightGreen; color: black; vertical-align: middle; text-align: center;" class="table-success">Success<br /><small><span class="nowrap">(drone ship)</span></small>
</td></tr>
<tr>
<td colspan="9">At 5-6 tonnes, the satellite formerly known as <i>K-Milsat-1</i> is South Korea's first dedicated military satellite. Contracted by South Korea's <a href="/wiki/Defense_Acquisition_Program_Administration" title="Defense Acquisition Pr...
</td></tr>
<tr>
<th scope="row" rowspan="2" style="text-align:center;">90
</th>
<td>7 August 2020,<br />05:12<sup id="cite_ref-563" class="reference"><a href="#cite_note-563">&#91;551&#93;</a></sup>

data/wiki1.html  view on Meta::CPAN

</td>
<td><a href="/wiki/SAOCOM_1B" class="mw-redirect" title="SAOCOM 1B">SAOCOM 1B</a><sup id="cite_ref-skyrocket-saocom1b_570-0" class="reference"><a href="#cite_note-skyrocket-saocom1b-570">&#91;558&#93;</a></sup><br /><a href="/w/index.php?title=GNOMES...
</td>
<td>3,130&#160;kg (6,900&#160;lb)<sup id="cite_ref-572" class="reference"><a href="#cite_note-572">&#91;560&#93;</a></sup>
</td>
<td><a href="/wiki/Sun-synchronous_orbit" title="Sun-synchronous orbit">SSO</a>
</td>
<td><a href="/wiki/CONAE" class="mw-redirect" title="CONAE">CONAE</a><br /><a href="/w/index.php?title=PlanetIQ&amp;action=edit&amp;redlink=1" class="new" title="PlanetIQ (page does not exist)">PlanetIQ</a><br /><a href="/wiki/Tyvak" title="Tyvak">Ty...
</td>
<td style="background: LightGreen; color: black; vertical-align: middle; text-align: center;" class="table-success">Success
</td>

data/wiki1.html  view on Meta::CPAN

<td style="background: LightGreen; color: black; vertical-align: middle; text-align: center;" class="table-success">Success
</td>
<td style="background: LightGreen; color: black; vertical-align: middle; text-align: center;" class="table-success">Success<br /><small><span class="nowrap">(drone ship)</span></small>
</td></tr>
<tr>
<td colspan="9">Launched the largest, high-power broadcasting satellite for SiriusXM's <a href="/wiki/Digital_audio_radio_service" title="Digital audio radio service">digital audio radio service</a> (DARS). SXM-7 was built by <a href="/wiki/Maxar_Tec...
</td></tr>
<tr>
<th scope="row" rowspan="2" style="text-align:center;">103
</th>
<td>19 December 2020<br />14:00:00<sup id="cite_ref-SFN20201217_616-0" class="reference"><a href="#cite_note-SFN20201217-616">&#91;604&#93;</a></sup>

data/wiki1.html  view on Meta::CPAN

<td style="background: LightGreen; color: black; vertical-align: middle; text-align: center;" class="table-success">Success
</td>
<td style="background: LightGreen; color: black; vertical-align: middle; text-align: center;" class="table-success">Success<br /><small><span class="nowrap">(drone ship)</span></small>
</td></tr>
<tr>
<td colspan="9">A 3,500&#160;kg (7,700&#160;lb) satellite intended to be stationed at 31.0° east.<sup id="cite_ref-turk5a_621-1" class="reference"><a href="#cite_note-turk5a-621">&#91;609&#93;</a></sup> This is the most powerful satellite in Türksa...
</td></tr>
<tr>
<th rowspan="2" scope="row" style="text-align:center;">105
</th>
<td>20 January 2021<br />13:02:22<sup id="cite_ref-624" class="reference"><a href="#cite_note-624">&#91;612&#93;</a></sup>

data/wiki1.html  view on Meta::CPAN

</td>
<td><a href="/wiki/List_of_spaceflight_launches_in_January%E2%80%93June_2021#SpXTransporter1" title="List of spaceflight launches in January–June 2021"><i>Transporter-1</i>: (143 smallsat rideshare)</a>
</td>
<td>~5,000&#160;kg (11,000&#160;lb)
</td>
<td><a href="/wiki/Sun-synchronous_orbit" title="Sun-synchronous orbit">SSO</a>
</td>
<td>Various
</td>
<td style="background: LightGreen; color: black; vertical-align: middle; text-align: center;" class="table-success">Success
</td>

data/wiki1.html  view on Meta::CPAN

</td>
<td><a href="/wiki/List_of_spaceflight_launches_in_January%E2%80%93June_2021#SpXTransporter2" title="List of spaceflight launches in January–June 2021"><i>Transporter-2</i>: (88 payloads Smallsat Rideshare)</a>
</td>
<td>~11,000&#160;kg (24,000&#160;lb)
</td>
<td><a href="/wiki/Sun-synchronous_orbit" title="Sun-synchronous orbit">SSO</a>
</td>
<td>Various
</td>
<td style="background: LightGreen; color: black; vertical-align: middle; text-align: center;" class="table-success">Success
</td>

data/wiki1.html  view on Meta::CPAN

<td style="background: LightGreen; color: black; vertical-align: middle; text-align: center;" class="table-success">Success
</td>
<td style="background: LightGreen; color: black; vertical-align: middle; text-align: center;" class="table-success">Success<br /><small><span class="nowrap">(drone ship)</span></small>
</td></tr>
<tr>
<td colspan="9">First launch of Starlink satellites from <a href="/wiki/Vandenberg_Space_Force_Base" title="Vandenberg Space Force Base">Vandenberg Space Force Base</a>, and first West coast launch in 10 months. The 70-degree inclination launch is th...
</td></tr>
<tr>
<th rowspan="2" scope="row" style="text-align:center;">126
</th>
<td>16 September 2021<br />00:02:56<sup id="cite_ref-712" class="reference"><a href="#cite_note-712">&#91;700&#93;</a></sup>

data/wiki1.html  view on Meta::CPAN

</td>
<td><a href="/wiki/Starlink" title="Starlink">Starlink</a> Group 4-3 (48 satellites)<br />SXRS-2: BlackSky Global (2 sats)<sup id="cite_ref-738" class="reference"><a href="#cite_note-738">&#91;725&#93;</a></sup>
</td>
<td>~14,500&#160;kg (32,000&#160;lb)
</td>
<td><a href="/wiki/Low_Earth_orbit" title="Low Earth orbit">LEO</a> (<a href="/wiki/Sun-synchronous_orbit" title="Sun-synchronous orbit">SSO</a>)
</td>
<td><a href="/wiki/SpaceX" title="SpaceX">SpaceX</a><br /><a href="/wiki/Spaceflight,_Inc." title="Spaceflight, Inc.">Spaceflight, Inc.</a> (BlackSky Global)
</td>
<td style="background: LightGreen; color: black; vertical-align: middle; text-align: center;" class="table-success">Success
</td>

data/wiki1.html  view on Meta::CPAN

</td>
<td><a href="/wiki/Cape_Canaveral_Space_Force_Station" title="Cape Canaveral Space Force Station">CCSFS</a>,<br /><a href="/wiki/Cape_Canaveral_Space_Launch_Complex_40" title="Cape Canaveral Space Launch Complex 40">SLC-40</a><sup id="cite_ref-sfn_ls...
</td>
<td><i>Transporter-3</i>, SmallSat Rideshare<sup id="cite_ref-749" class="reference"><a href="#cite_note-749">&#91;736&#93;</a></sup>
</td>
<td><a href="/wiki/Sun-synchronous_orbit" title="Sun-synchronous orbit">SSO</a>
</td>
<td>Various
</td></tr>
<tr>
<td colspan="5">

data/wiki1.html  view on Meta::CPAN

</td>
<td><a href="/wiki/Vandenberg_Space_Force_Base" title="Vandenberg Space Force Base">VSFB</a>,<br /><a href="/wiki/Vandenberg_Space_Launch_Complex_4" title="Vandenberg Space Launch Complex 4">SLC-4E</a>
</td>
<td><a href="/wiki/List_of_NRO_launches" title="List of NRO launches">NROL-87</a><sup id="cite_ref-752" class="reference"><a href="#cite_note-752">&#91;739&#93;</a></sup>
</td>
<td><a href="/wiki/Sun-synchronous_orbit" title="Sun-synchronous orbit">SSO</a><sup id="cite_ref-gunter-NRO_753-0" class="reference"><a href="#cite_note-gunter-NRO-753">&#91;740&#93;</a></sup>
</td>
<td><a href="/wiki/National_Reconnaissance_Office" title="National Reconnaissance Office">NRO</a>
</td></tr>
<tr>
<td colspan="5">Classified payload. It was expected to be completed by December 2021.<sup id="cite_ref-USDD190219_754-0" class="reference"><a href="#cite_note-USDD190219-754">&#91;741&#93;</a></sup>

data/wiki1.html  view on Meta::CPAN

</td>
<td><a href="/wiki/Vandenberg_Space_Force_Base" title="Vandenberg Space Force Base">VSFB</a>,<br /><a href="/wiki/Vandenberg_Space_Launch_Complex_4" title="Vandenberg Space Launch Complex 4">SLC-4E</a>
</td>
<td><a href="/wiki/DigitalGlobe#WorldView-Legion" title="DigitalGlobe">WorldView Legion 1 &amp; 2</a> Mission 1 (2 Sats)<sup id="cite_ref-worldviewlegion_760-1" class="reference"><a href="#cite_note-worldviewlegion-760">&#91;747&#93;</a></sup>
</td>
<td><a href="/wiki/Sun-synchronous_orbit" title="Sun-synchronous orbit">SSO</a>
</td>
<td><a href="/wiki/Maxar_Technologies" title="Maxar Technologies">Maxar</a>
</td></tr>
<tr>
<td colspan="5">Two <a href="/wiki/Maxar_Technologies" title="Maxar Technologies">Maxar Technologies</a> satellites built by subsidiary <a href="/wiki/SSL_(company)" title="SSL (company)">SSL</a> for subsidiary <a href="/wiki/DigitalGlobe" title="Dig...

data/wiki1.html  view on Meta::CPAN

</td>
<td><a href="/wiki/Vandenberg_Space_Force_Base" title="Vandenberg Space Force Base">VSFB</a> or <a href="/wiki/Cape_Canaveral" title="Cape Canaveral">CC</a><sup id="cite_ref-762" class="reference"><a href="#cite_note-762">&#91;749&#93;</a></sup><br /...
</td>
<td><i>Transporter-4</i>, SmallSat Rideshare
</td>
<td><a href="/wiki/Sun-synchronous_orbit" title="Sun-synchronous orbit">SSO</a>
</td>
<td>Various
</td></tr>
<tr>
<td colspan="5">Dedicated SmallSat Rideshare mission to sun-synchronous orbit. Payloads expected to include Bluewalker-3,<sup id="cite_ref-763" class="reference"><a href="#cite_note-763">&#91;750&#93;</a></sup> D-Orbit ION, Hawk-6A/6B/6C, CNCE (2), H...
</td></tr>
<tr>
<td rowspan="2">Q1 2022<sup id="cite_ref-766" class="reference"><a href="#cite_note-766">&#91;753&#93;</a></sup>
</td>
<td><a href="/wiki/Falcon_9_Block_5" title="Falcon 9 Block 5">F9 B5</a>

data/wiki1.html  view on Meta::CPAN

</td>
<td><a href="/wiki/Vandenberg_Space_Force_Base" title="Vandenberg Space Force Base">VSFB</a>,<br /><a href="/wiki/Vandenberg_Space_Launch_Complex_4" title="Vandenberg Space Launch Complex 4">SLC-4E</a>
</td>
<td><a href="/wiki/DigitalGlobe#WorldView-Legion" title="DigitalGlobe">WorldView Legion 3-6</a> Mission 2 (4 sats)<sup id="cite_ref-worldviewlegion_760-4" class="reference"><a href="#cite_note-worldviewlegion-760">&#91;747&#93;</a></sup><sup id="cite...
</td>
<td><a href="/wiki/Sun-synchronous_orbit" title="Sun-synchronous orbit">SSO</a>
</td>
<td>
</td></tr>
<tr>
<td colspan="5"><a href="/wiki/Maxar_Technologies" title="Maxar Technologies">Maxar Technologies</a> built satellites.

data/wiki1.html  view on Meta::CPAN

</td>
<td><a href="/wiki/Cape_Canaveral" title="Cape Canaveral">CC</a>,<br /><a href="/wiki/Kennedy_Space_Center_Launch_Complex_39A" title="Kennedy Space Center Launch Complex 39A">LC-39A</a> or <a href="/wiki/Cape_Canaveral_Space_Launch_Complex_40" title=...
</td>
<td><a href="/wiki/COSMO-SkyMed" title="COSMO-SkyMed">CSG-2</a>
</td>
<td><a href="/wiki/Sun-synchronous_orbit" title="Sun-synchronous orbit">SSO</a>
</td>
<td><a href="/wiki/Italian_Space_Agency" title="Italian Space Agency">ASI</a>
</td></tr>
<tr>
<td colspan="5">Second COSMO-SkyMed 2nd Generation satellite. Originally scheduled to launch in 2021 on an ArianSpace <a href="/wiki/Vega-C" class="mw-redirect" title="Vega-C">Vega-C</a> rocket, resulting delays caused by the pandemic and two Vega la...

data/wiki1.html  view on Meta::CPAN

</td>
<td><a href="/wiki/Vandenberg_Space_Force_Base" title="Vandenberg Space Force Base">VSFB</a>,<br /><a href="/wiki/Vandenberg_Space_Launch_Complex_4" title="Vandenberg Space Launch Complex 4">SLC-4E</a>
</td>
<td><i>Transporter-5</i>, SmallSat Rideshare
</td>
<td><a href="/wiki/Sun-synchronous_orbit" title="Sun-synchronous orbit">SSO</a>
</td>
<td>Various
</td></tr>
<tr>
<td colspan="5">Dedicated SmallSat Rideshare mission to sun-synchronous orbit.
</td></tr>
<tr>
<td rowspan="2">Q2 2022<sup id="cite_ref-sfn-20211004_775-1" class="reference"><a href="#cite_note-sfn-20211004-775">&#91;762&#93;</a></sup>
</td>
<td><a href="/wiki/Falcon_Heavy" title="Falcon Heavy">Falcon Heavy</a>

data/wiki1.html  view on Meta::CPAN

</td>
<td><a href="/wiki/Vandenberg_Space_Force_Base" title="Vandenberg Space Force Base">VSFB</a>,<br /><a href="/wiki/Vandenberg_Space_Launch_Complex_4" title="Vandenberg Space Launch Complex 4">SLC-4E</a>
</td>
<td><i>Transporter-6</i>, SmallSat Rideshare
</td>
<td><a href="/wiki/Sun-synchronous_orbit" title="Sun-synchronous orbit">SSO</a>
</td>
<td>Various
</td></tr>
<tr>
<td colspan="5">Dedicated SmallSat Rideshare mission to sun-synchronous orbit. Expected to include MethaneSat, a 350&#160;kg (770&#160;lb) among satellite aimed at locating, quantifying, and tracking <a href="/wiki/Methane_emissions" title="Methane e...
</td></tr>
<tr>
<td rowspan="2">15 November 2022<sup id="cite_ref-SMSR_808-2" class="reference"><a href="#cite_note-SMSR-808">&#91;795&#93;</a></sup>
</td>
<td><a href="/wiki/Falcon_9_Block_5" title="Falcon 9 Block 5">F9 B5</a>

data/wiki1.html  view on Meta::CPAN

</td>
<td><a href="/wiki/Cape_Canaveral" title="Cape Canaveral">CC</a>,<br /><a href="/wiki/Kennedy_Space_Center_Launch_Complex_39A" title="Kennedy Space Center Launch Complex 39A">LC-39A</a> or <a href="/wiki/Cape_Canaveral_Space_Launch_Complex_40" title=...
</td>
<td><a href="/wiki/EnMAP" title="EnMAP">EnMAP</a> <span style="color:darkgreen"><abbr title="It is not yet clear whether this will fly as a primary payload, a secondary payload or on a dedicated rideshare mission">Possible rideshare</abbr></span>
</td>
<td><a href="/wiki/Sun-synchronous_orbit" title="Sun-synchronous orbit">SSO</a>
</td>
<td><a href="/wiki/German_Aerospace_Center" title="German Aerospace Center">DLR</a><br /><a href="/wiki/GFZ_German_Research_Centre_for_Geosciences" title="GFZ German Research Centre for Geosciences">GFZ</a>
</td></tr>
<tr>
<td colspan="5">First German <a href="/wiki/Hyperspectral_imaging" title="Hyperspectral imaging">hyperspectral imaging</a> satellite.

data/wiki1.html  view on Meta::CPAN

</td>
<td><a href="/wiki/Vandenberg_Space_Force_Base" title="Vandenberg Space Force Base">VSFB</a>,<br /><a href="/wiki/Vandenberg_Space_Launch_Complex_4" title="Vandenberg Space Launch Complex 4">SLC-4E</a>
</td>
<td><a href="/wiki/SARah" class="mw-redirect" title="SARah">SARah</a>-1<sup id="cite_ref-gunter-sarah1_844-0" class="reference"><a href="#cite_note-gunter-sarah1-844">&#91;831&#93;</a></sup><br />Additional payload to be announced.<sup id="cite_ref-g...
</td>
<td><a href="/wiki/Sun-synchronous_orbit" title="Sun-synchronous orbit">SSO</a>
</td>
<td><a href="/wiki/German_Intelligence_Service" class="mw-redirect" title="German Intelligence Service">German Intelligence Service</a>
</td></tr>
<tr>
<td colspan="5"><a href="/wiki/Phased_array" title="Phased array">Phased-array-antenna</a> satellite intended to upgrade the German <a href="/wiki/SAR-Lupe" title="SAR-Lupe">SAR-Lupe</a> surveillance satellites.<sup id="cite_ref-spx-20130808_845-0" c...

data/wiki1.html  view on Meta::CPAN

</td>
<td><a href="/wiki/Vandenberg_Space_Force_Base" title="Vandenberg Space Force Base">VSFB</a>,<br /><a href="/wiki/Vandenberg_Space_Launch_Complex_4" title="Vandenberg Space Launch Complex 4">SLC-4E</a>
</td>
<td><a href="/wiki/SARah" class="mw-redirect" title="SARah">SARah</a> 2 &amp; 3<sup id="cite_ref-gunter-sarah2_847-0" class="reference"><a href="#cite_note-gunter-sarah2-847">&#91;834&#93;</a></sup>
</td>
<td><a href="/wiki/Sun-synchronous_orbit" title="Sun-synchronous orbit">SSO</a>
</td>
<td><a href="/wiki/Federal_Intelligence_Service" title="Federal Intelligence Service">German Intelligence Service</a>
</td></tr>
<tr>
<td colspan="5">In January 2019, the satellites were expected to be launched between November 2020 and September 2021.<sup id="cite_ref-Deutscher_Bundestag_846-1" class="reference"><a href="#cite_note-Deutscher_Bundestag-846">&#91;833&#93;</a></sup>

data/wiki1.html  view on Meta::CPAN

<td><a href="/wiki/Highly_elliptical_orbit" title="Highly elliptical orbit">HEO</a>
</td>
<td><a href="/wiki/Norwegian_Space_Agency" title="Norwegian Space Agency">Space Norway</a> / <a href="/wiki/Inmarsat" title="Inmarsat">Inmarsat</a>
</td></tr>
<tr>
<td colspan="5"><a href="/wiki/Norwegian_Space_Agency" title="Norwegian Space Agency">Space Norway</a> will launch 2 satellites of the <a href="/wiki/Arctic_Satellite_Broadband_Mission" class="mw-redirect" title="Arctic Satellite Broadband Mission">A...
</td></tr>
<tr>
<td rowspan="2">Q1 2023<sup id="cite_ref-863" class="reference"><a href="#cite_note-863">&#91;850&#93;</a></sup>
</td>
<td><a href="/wiki/Falcon_9_Block_5" title="Falcon 9 Block 5">F9 B5</a>

data/wiki1.html  view on Meta::CPAN

</td>
<td><a href="/wiki/Vandenberg_Space_Force_Base" title="Vandenberg Space Force Base">VSFB</a>,<br /><a href="/wiki/Vandenberg_Space_Launch_Complex_4" title="Vandenberg Space Launch Complex 4">SLC-4E</a>
</td>
<td><i>Transporter-7</i>, SmallSat Rideshare
</td>
<td><a href="/wiki/Sun-synchronous_orbit" title="Sun-synchronous orbit">SSO</a>
</td>
<td>Various
</td></tr>
<tr>
<td colspan="5">Dedicated SmallSat Rideshare mission to sun-synchronous orbit. The On-Orbit Servicing, Assembly and Manufacturing Mission 2 (OSAM-2), formerly known as <a href="/wiki/Archinaut" title="Archinaut">Archinaut</a> One, may launch on this ...
</td></tr>
<tr>
<td rowspan="2">5 June 2023<sup id="cite_ref-SMSR_808-5" class="reference"><a href="#cite_note-SMSR-808">&#91;795&#93;</a></sup>
</td>
<td><a href="/wiki/Falcon_9_Block_5" title="Falcon 9 Block 5">F9 B5</a>

data/wiki1.html  view on Meta::CPAN

</td>
<td><a href="/wiki/Vandenberg_Space_Force_Base" title="Vandenberg Space Force Base">VSFB</a>,<br /><a href="/wiki/Vandenberg_Space_Launch_Complex_4" title="Vandenberg Space Launch Complex 4">SLC-4E</a>
</td>
<td><i>Transporter-8</i>, SmallSat Rideshare
</td>
<td><a href="/wiki/Sun-synchronous_orbit" title="Sun-synchronous orbit">SSO</a>
</td>
<td>Various
</td></tr>
<tr>
<td colspan="5">Dedicated SmallSat Rideshare mission to sun-synchronous orbit.
</td></tr>
<tr>
<td rowspan="2">Fall 2023<sup id="cite_ref-866" class="reference"><a href="#cite_note-866">&#91;853&#93;</a></sup><sup id="cite_ref-867" class="reference"><a href="#cite_note-867">&#91;854&#93;</a></sup><sup id="cite_ref-868" class="reference"><a hre...
</td>
<td><a href="/wiki/Falcon_9_Block_5" title="Falcon 9 Block 5">F9 B5</a>

data/wiki1.html  view on Meta::CPAN

</td>
<td><a href="/wiki/Vandenberg_Space_Force_Base" title="Vandenberg Space Force Base">VSFB</a>,<br /><a href="/wiki/Vandenberg_Space_Launch_Complex_4" title="Vandenberg Space Launch Complex 4">SLC-4E</a>
</td>
<td><i>Transporter-9</i>, SmallSat Rideshare
</td>
<td><a href="/wiki/Sun-synchronous_orbit" title="Sun-synchronous orbit">SSO</a>
</td>
<td>Various
</td></tr>
<tr>
<td colspan="5">Dedicated SmallSat Rideshare mission to sun-synchronous orbit. A possible payload is the 700kg MBZ SAT from UAE by customer <a href="/wiki/Mohammed_Bin_Rashid_Space_Centre" class="mw-redirect" title="Mohammed Bin Rashid Space Centre">...
</td></tr>
<tr>
<td rowspan="2">30 November 2023<sup id="cite_ref-SMSR_808-7" class="reference"><a href="#cite_note-SMSR-808">&#91;795&#93;</a></sup>
</td>
<td><a href="/wiki/Falcon_9_Block_5" title="Falcon 9 Block 5">F9 B5</a> ♺
</td>
<td><a href="/wiki/Cape_Canaveral_Space_Force_Station" title="Cape Canaveral Space Force Station">CCSFS</a>,<br /><a href="/wiki/Cape_Canaveral_Space_Launch_Complex_40" title="Cape Canaveral Space Launch Complex 40">SLC-40</a>
</td>
<td><a href="/wiki/Plankton,_Aerosol,_Cloud,_ocean_Ecosystem" title="Plankton, Aerosol, Cloud, ocean Ecosystem">PACE</a>
</td>
<td><a href="/wiki/Sun-synchronous_orbit" title="Sun-synchronous orbit">SSO</a>
</td>
<td><a href="/wiki/NASA" title="NASA">NASA</a> (<a href="/wiki/Launch_Services_Program" title="Launch Services Program">LSP</a>)
</td></tr>
<tr>
<td colspan="5"><i>Plankton, Aerosol, Cloud, ocean Ecosystem</i> is a 1.7 tonne, US$800 million craft that will orbit at 676&#160;km (420&#160;mi) altitude. It will include the <i>Ocean Color Imager</i> intended to study phytoplankton in the ocean, a...

data/wiki1.html  view on Meta::CPAN

</td>
<td><a href="/wiki/Vandenberg_Space_Force_Base" title="Vandenberg Space Force Base">VSFB</a>,<br /><a href="/wiki/Vandenberg_Space_Launch_Complex_4" title="Vandenberg Space Launch Complex 4">SLC-4E</a>
</td>
<td><a href="/wiki/SPHEREx" title="SPHEREx">SPHEREx</a>
</td>
<td><a href="/wiki/Sun-synchronous_orbit" title="Sun-synchronous orbit">SSO</a><sup id="cite_ref-889" class="reference"><a href="#cite_note-889">&#91;876&#93;</a></sup>
</td>
<td><a href="/wiki/NASA" title="NASA">NASA</a>
</td></tr>
<tr>
<td colspan="5">In February 2021, NASA announced a $99 million contract for its Astrophysics Division.<sup id="cite_ref-890" class="reference"><a href="#cite_note-890">&#91;877&#93;</a></sup>

data/wiki1.html  view on Meta::CPAN

<li><a href="/wiki/List_of_communications_satellite_firsts" title="List of communications satellite firsts">Communications satellite firsts</a></li>
<li><a href="/wiki/CubeSat" title="CubeSat">CubeSats</a></li>
<li><a href="/wiki/PocketQube" title="PocketQube">PocketQube</a></li>
<li><a href="/wiki/List_of_Earth_observation_satellites" title="List of Earth observation satellites">Earth observation satellites</a>
<ul><li><a href="/wiki/Timeline_of_first_Earth_observation_satellites" title="Timeline of first Earth observation satellites">Timeline of first Earth observation satellites</a></li></ul></li>
<li><a href="/wiki/List_of_satellites_in_geosynchronous_orbit" title="List of satellites in geosynchronous orbit">Geosynchronous orbit</a></li>
<li><a href="/wiki/List_of_GOES_satellites" title="List of GOES satellites">GOES</a></li>
<li><a href="/wiki/List_of_GPS_satellites" title="List of GPS satellites">GPS</a></li>
<li><a href="/wiki/List_of_Kosmos_satellites" title="List of Kosmos satellites">Kosmos</a></li>
<li><a href="/wiki/List_of_satellites_which_have_provided_data_on_Earth%27s_magnetosphere" title="List of satellites which have provided data on Earth&#39;s magnetosphere">Magnetospheric</a></li>
<li><a href="/wiki/List_of_NRO_launches" title="List of NRO launches">NRO</a></li>

 view all matches for this distribution


Benchmark-Perl-Formance-Cargo

 view release on metacpan or  search on metacpan

share/SpamAssassin/easy_ham/00164.8a0a728a1d5e56631369e5192f0348b6  view on Meta::CPAN

decentralization. I think that decentralization is the workaround
from technical limitations.  The fallout being that the only way
inconsistent information spaces can be maintained is by 
protecting them through a set of trust barriers and boundaries. 
The local information when combined with the technical
troubles of providing "just enough" forced synchronization
to remote information provide workable data consistenty, i.e.
enforcing local constraints or ignoring global ones when
concerns are more immedidate.  

Tolerating temporary, irreconcilable deviations is how

 view all matches for this distribution


Benchmark-ProgressBar

 view release on metacpan or  search on metacpan

inc/Module/Install.pm  view on Meta::CPAN

}
use strict 'vars';

use vars qw{$VERSION};
BEGIN {
	# All Module::Install core packages now require synchronised versions.
	# This will be used to ensure we don't accidentally load old or
	# different versions of modules.
	# This is not enforced yet, but will be some time in the next few
	# releases once we can make sure it won't clash with custom
	# Module::Install extensions.

 view all matches for this distribution


Benchmark-Timer

 view release on metacpan or  search on metacpan

inc/Module/Install.pm  view on Meta::CPAN

use File::Find ();
use File::Path ();

use vars qw{$VERSION $MAIN};
BEGIN {
	# All Module::Install core packages now require synchronised versions.
	# This will be used to ensure we don't accidentally load old or
	# different versions of modules.
	# This is not enforced yet, but will be some time in the next few
	# releases once we can make sure it won't clash with custom
	# Module::Install extensions.

 view all matches for this distribution


BenchmarkAnything-Storage-Backend-SQL

 view release on metacpan or  search on metacpan

lib/BenchmarkAnything/Storage/Backend/SQL.pm  view on Meta::CPAN


Please note, this immediate indexing adds an overhead to insert
time. You could as well switch-off this setting and take care of
indexing the data at another time. Then again, for instance the
C<::Frontend::HTTP> already takes care of bulk-adding new data
asynchronously, so the overhead should be hidden in there, so just
switch-on the feature and don't worry too much.

=head3 Search

When C<enable_query> is set, the BenchmarkAnything queries are

 view all matches for this distribution


BerkeleyDB

 view release on metacpan or  search on metacpan

BerkeleyDB.pod  view on Meta::CPAN


Ensure that handles returned by the Berkeley DB subsystems are useable by multiple threads within a single process, i.e., that the system is free-threaded.

B<DB_TXN_NOSYNC>

On transaction commit, do not synchronously flush the log; see txn_open. Ignored unless DB_INIT_TXN is also specified.

B<DB_USE_ENVIRON>

The Berkeley DB process' environment may be permitted to specify information to be used when naming files; see Berkeley DB File Naming. As permitting users to specify which files are used can create security problems, environment information will be ...

 view all matches for this distribution


Best

 view release on metacpan or  search on metacpan

inc/Module/Install.pm  view on Meta::CPAN

use File::Find ();
use File::Path ();

use vars qw{$VERSION $MAIN};
BEGIN {
	# All Module::Install core packages now require synchronised versions.
	# This will be used to ensure we don't accidentally load old or
	# different versions of modules.
	# This is not enforced yet, but will be some time in the next few
	# releases once we can make sure it won't clash with custom
	# Module::Install extensions.

 view all matches for this distribution


Biblio-RFID

 view release on metacpan or  search on metacpan

inc/Module/Install.pm  view on Meta::CPAN

use File::Find ();
use File::Path ();

use vars qw{$VERSION $MAIN};
BEGIN {
	# All Module::Install core packages now require synchronised versions.
	# This will be used to ensure we don't accidentally load old or
	# different versions of modules.
	# This is not enforced yet, but will be some time in the next few
	# releases once we can make sure it won't clash with custom
	# Module::Install extensions.

 view all matches for this distribution


( run in 2.641 seconds using v1.01-cache-2.11-cpan-9581c071862 )