Result:
Your query is still running in background...Search in progress... at this time found 436 distributions and 1333 files matching your query.
Next refresh should show more results. ( run in 2.033 )


FU

 view release on metacpan or  search on metacpan

FU/Util.pm  view on Meta::CPAN


Gzip compression can be done with a few different libraries. The canonical one
is I<zlib>, which is old and not well optimized for modern systems. There's
also I<zlib-ng>, a (much) more performant reimplementation that remains
API-compatible with I<zlib>. And there's I<libdeflate>, which offers a
different API that does not support streaming compression but is, in exchange,
even faster than I<zlib-ng>.

There are more implementations, of course, but this module only supports those
three and (attempts to) pick the best one that's available on your system.

FU/Util.pm  view on Meta::CPAN

This function is B<NOT> safe to use from multiple threads!

=back

This module does not currently implement decompression. If you need that, or
streaming, or other functionality not provided here, there's
L<Compress::Raw::Zlib> and L<Compress::Zlib> in the core Perl distribution and
L<Gzip::Faster>, L<Gzip::Zopfli> and L<Gzip::Libdeflate> on CPAN.


=head1 Brotli Compression

 view all matches for this distribution


Feersum

 view release on metacpan or  search on metacpan

eg/oneshot.pl  view on Meta::CPAN

my $evh = Feersum->new();
$evh->use_socket($socket);
$evh->request_handler(sub {
    my $r = shift;
    my $n = "only";
    my $w = $r->start_streaming("200 OK", [
        'Content-Type' => 'text/plain',
        'Connection' => 'close',
    ]);
    $w->write("Hello customer number ");
    $w->write(\$n);

 view all matches for this distribution


File-Format-RIFF

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN


1.0.0  Sun Aug  7 15:23:36 CDT 2005
	- finished test suite
	- fixed bug to allow 'read' to be called on an existing RIFF object
	- document RIFF::read usage as a method
	- added eg/socketpair.pl (example streaming a RIFF over a socket)

0.9.4  Sun Aug  7 12:56:13 CDT 2005
	- more testing
	- document 'total_size' and RIFF::write
	- other minor fixes to documentation

 view all matches for this distribution


File-Raw-Base64

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

Revision history for File-Raw-Base64

0.04    2026-05-17
        - Bumped File::Raw prereq to 0.13 to pick up the streaming
          O_BINARY fix on Windows.
	- Remove pax headers

0.03    2026-05-07
        - C89 cleanup

 view all matches for this distribution


File-Raw-Gzip

 view release on metacpan or  search on metacpan

lib/File/Raw/Gzip.pm  view on Meta::CPAN


    # WRITE: csv encode -> deflate -> bytes
    file_spew("out.csv.gz", $rows,
              plugin => ['gzip', 'csv']);

C<each_line> (the streaming path) is single-plugin only; chain
composition belongs to the slurp/spew/append/atomic_spew calls.

=head1 INSTALLATION REQUIREMENTS

C<File::Raw::Gzip> links against the system C<libz>. The development

lib/File/Raw/Gzip.pm  view on Meta::CPAN

=head1 SEE ALSO

L<File::Raw> - the underlying fast file IO layer.

L<IO::Compress::Gzip>, L<IO::Uncompress::Gunzip> - the in-memory and
streaming codecs we link against in tests for wire-compatibility.

L<Compress::Raw::Zlib> - the lower-level zlib binding;

=head1 AUTHOR

 view all matches for this distribution


File-Raw-Hash

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

Revision history for File-Raw-Hash

0.03    2026-05-17
        - Bumped File::Raw prereq to 0.13 to pick up the streaming
          O_BINARY fix on Windows.

0.02    2026-05-07
        - Bumped File::Raw prereq to 0.12

 view all matches for this distribution


File-Raw-JSON

 view release on metacpan or  search on metacpan

lib/File/Raw/JSON.pm  view on Meta::CPAN


    # Pretty-printed write
    file_spew("out.json", $payload, plugin => 'json',
              pretty => 1, sort_keys => 1);

    # JSON Lines / NDJSON streaming (line-by-line, RSS bounded)
    file_each_line("events.jsonl",
        sub { my $event = $_[0]; ... },
        plugin => 'jsonl');

    # Whole-file JSONL into AoV

 view all matches for this distribution


File-Raw-Separated

 view release on metacpan or  search on metacpan

lib/File/Raw/Separated.pm  view on Meta::CPAN

particular call, just don't pass C<plugin =E<gt>>.

The WRITE / RECORD / STREAM phases are not yet wired - they will land
once the parser core grows a serialiser and File::Raw teaches
C<each_line>, C<grep_lines>, etc. the plugin pipeline. In the meantime
use C<parse_stream> for streaming directly.

=head1 SEE ALSO

L<File::Raw> - the underlying fast file IO layer.

 view all matches for this distribution


File-Raw

 view release on metacpan or  search on metacpan

lib/File/Raw.pm  view on Meta::CPAN

streams bytes lazily and is memory-efficient. With a plugin tail
(C<lines_iter($path, plugin =E<gt> 'csv', ...)>) the iterator is eager:
the file is slurped and parsed into an AoA at construction time, and
C<next> walks the array; the C<header =E<gt> 1> and
C<header =E<gt> [names]> options are honoured. For memory-bounded
streaming through a plugin use C<each_line> instead.

B<Note:> For maximum performance, prefer C<each_line()> which uses
MULTICALL optimization and is significantly faster. Use C<lines_iter()>
when you need iterator control (e.g., early exit, multiple iterators).

lib/File/Raw.pm  view on Meta::CPAN

    my $page = File::Raw::range_lines($p, 100, 50,
                                      plugin => 'csv', header => 1);

Same eager trade-off as C<lines_iter> with a plugin: the file is
slurped and parsed in full before the slice is taken. For
memory-bounded streaming through a plugin use C<each_line> with a
counter and C<die> to bail.

=head2 atomic_spew

    my $ok = File::Raw::atomic_spew($path, $data);

lib/File/Raw.pm  view on Meta::CPAN


C<lines_iter> with a plugin tail is B<eager> (it slurps the file once
into an AoA at construction time and the iterator walks that array).
The iterator interface is preserved so callers can still store the
handle, call C<next>/C<eof>/C<close>, etc., but it is not
memory-bounded: for true streaming over huge files use C<each_line>
with the same plugin tail.

=head2 Plugin chains

The C<plugin> value can be an arrayref of plugin names instead of a

lib/File/Raw.pm  view on Meta::CPAN

Chains are supported for B<READ> and B<WRITE> only. The record-derived
helpers (C<grep_lines>, C<count_lines>, C<find_line>, C<map_lines>)
get chain support transparently because they slurp + transform via
READ before iterating records.

C<each_line> (the true streaming path) rejects arrayref C<plugin>
values: composing two streams needs a record-to-chunk adapter that's
its own design problem. Pass a single plugin name there. C<record>
phase is also single-plugin only - chaining record functions would
require records to keep the same shape across links.

lib/File/Raw.pm  view on Meta::CPAN

        write  => sub { my ($path, $rows,   $opts) = @_; ... },  # rows  -> bytes
        record => sub { my ($path, $record, $opts) = @_; ... },  # transform/filter
    });

The C<stream> phase is intentionally not exposed from Perl - per-chunk
C<call_sv> overhead defeats the purpose of streaming. Plugins that need
record-by-record callbacks should implement C<record>; File::Raw drives
the iteration itself. Streaming plugins must be written in C.

Re-registering a name without C<$override> croaks; pass a true
C<$override> to replace.

lib/File/Raw.pm  view on Meta::CPAN


=head1 XS API

File::Raw exposes a plugin C API via C<include/file_plugin.h>. Downstream
XS modules can register C-level plugins that File::Raw's read / write /
streaming dispatch routes calls into - no per-record C<call_sv>
overhead. The shared object is loaded with C<RTLD_GLOBAL> so symbols
resolve at load time without an explicit link step on Linux/macOS.

=head2 Types

lib/File/Raw.pm  view on Meta::CPAN

=item B<FilePluginPhase>

    FILE_PLUGIN_PHASE_READ      /* whole-file slurp transform           */
    FILE_PLUGIN_PHASE_WRITE     /* whole-file spew/append transform     */
    FILE_PLUGIN_PHASE_RECORD    /* per-record dispatch                  */
    FILE_PLUGIN_PHASE_STREAM    /* chunked feed for streaming           */

=item B<FilePluginContext>

Per-call dispatch context (lifetime: single dispatch call).

 view all matches for this distribution


File-Util

 view release on metacpan or  search on metacpan

examples/pretty_print_a_directory_using_as_tree.pl  view on Meta::CPAN


# The fool-proof, dead-simple way to pretty-print a directory tree.  Caveat:
# This isn't a method for massive directory traversal, and is subject to the
# limitations inherent in stuffing an entire directory tree into RAM.  Go
# back and use bare callbacks (see other examples) if you need a more efficient,
# streaming (real-time) pretty-printer where top-level sorting is less
# important than resource constraints and speed of execution.

# set this to the name of the directory to pretty-print
my $treetrunk = '.';

 view all matches for this distribution


Filter-NumberLines

 view release on metacpan or  search on metacpan

examples/raven.pl  view on Meta::CPAN

                                sitting, still is sitting
                        On the pallid bust of Pallas just above
                                my chamber door;
                        And his eyes have all the seeming of a
                                demon's that is dreaming,
                        And the lamp-light o'er him streaming
                                throws his shadow on the floor;
                        And my soul from out that shadow that
                                lies floating on the floor
                                Shall be lifted--nevermore!
EOF

 view all matches for this distribution


Finance-Alpaca

 view release on metacpan or  search on metacpan

lib/Finance/Alpaca/Struct/Order.pm  view on Meta::CPAN

Alpaca. Each order has a unique identifier provided by the client. This
client-side unique order ID will be automatically generated by the system if
not provided by the client, and will be returned as part of the order object
along with the rest of the fields described below. Once an order is placed, it
can be queried using the client-side order ID to check the status. Updates on
open orders at Alpaca will also be sent over the streaming interface, which is
the recommended method of maintaining order state.

=head1 Properties

The following properties are contained in the object.

 view all matches for this distribution


Finance-Bitcoin-Feed

 view release on metacpan or  search on metacpan

lib/Finance/Bitcoin/Feed.pm  view on Meta::CPAN


__END__

=head1 NAME

Finance::Bitcoin::Feed - Collect bitcoin real-time price from many sites' streaming data source

=head1 SYNOPSIS

    use Finance::Bitcoin::Feed;

 view all matches for this distribution


Finance-CompanyNames

 view release on metacpan or  search on metacpan

CompanyNames/TextSupport.pm  view on Meta::CPAN

mainland mainlander mainlanders
mainline mainliners mainlines
mainlobe mainlobes
mainstay mainstays
mainstem mainstems
mainstream mainstreamed mainstreamer mainstreamers mainstreaming mainstreams
maintain maintainability maintainable maintained maintainer maintainers maintaining maintains
maison maisons
majestatis majestic majestically majesties majesty
major majored majoring majorities majority majors
majorette majorettes

CompanyNames/TextSupport.pm  view on Meta::CPAN

stratosphere stratospheric
straw strawed straws
strawberries strawberry
stray strayed straying strays
streak streaked streaker streakers streaking streaks
stream streamed streaming streams
streambank streambanks
streambed streambeds
streamer streamers
streamflow streamflows
streamline streamlined streamliner streamliners streamlines streamlining

CompanyNames/TextSupport.pm  view on Meta::CPAN

streaks
stream
streamed
streamer
streamers
streaming
streamline
streamlined
streamliner
streamlines
streamlining

 view all matches for this distribution


Finance-IG

 view release on metacpan or  search on metacpan

lib/Finance/IG.pm  view on Meta::CPAN

#    "market" : {
#       "lotSize" : 1,
#       "marketStatus" : "EDITS_ONLY",
#       "instrumentType" : "SHARES",
#       "expiry" : "DFB",
#       "streamingPricesAvailable" : false,
#       "instrumentName" : "Regeneron Pharmaceuticals Inc",
#       "offer" : 60261,
#       "delayTime" : 0,
#       "updateTime" : "20:59:56",
#       "high" : 61455,

 view all matches for this distribution


Flat-Profile

 view release on metacpan or  search on metacpan

lib/Flat/Profile.pm  view on Meta::CPAN

        max_errors  => 1000,
    );

=head1 DESCRIPTION

Flat::Profile is part of the Flat::* series. It provides streaming-first profiling
for CSV/TSV inputs for practical ETL and legacy data workflows.

Design goals:

=over 4

lib/Flat/Profile.pm  view on Meta::CPAN


=head2 profile_file

    my $report = $p->profile_file(%args);

Profiles a CSV/TSV file in a streaming pass and returns a hashref report.

Key named arguments include:

=over 4

 view all matches for this distribution


Fluent-Logger

 view release on metacpan or  search on metacpan

t/Util.pm  view on Meta::CPAN

use Test::TCP;
use version;

use Exporter 'import';
our $ENABLE_TEST_EVENT_TIME;
our @EXPORT_OK = qw/ streaming_decode_mp run_fluentd slurp_log $ENABLE_TEST_EVENT_TIME /;

sub streaming_decode_mp {
    my $sock   = shift;
    my $offset = 0;
    my $up     = Data::MessagePack::Unpacker->new;
    while( read($sock, my $buf, 1024) ) {
        $offset = $up->execute($buf, $offset);

 view all matches for this distribution



FreeHAL

 view release on metacpan or  search on metacpan

lang_en/conceptnet-commonsense-is-1.pro  view on Meta::CPAN

is <> a very fine <> material <> leather <>  <>  <> nothing <>  <>  <>  <> 50
is <> junks <> ships <>  <>  <>  <> nothing <>  <>  <>  <> 50
is <> hockey <> a popular sport <> in canada <>  <>  <> nothing <>  <>  <>  <> 50
is <> plants <> nothing <> for the environment;good <>  <>  <> nothing <>  <>  <>  <> 50
is <> steel <> a metal <>  <>  <>  <> nothing <>  <>  <>  <> 50
is streaming <> a website <> video <>  <>  <>  <> nothing <>  <>  <>  <> 50
going is <> a <> nothing <> to france;traveler <>  <>  <> nothing <>  <>  <>  <> 50
is <> a tool <> a object <>  <>  <>  <> nothing <>  <>  <>  <> 50
is <> the egret <> a bird <>  <>  <>  <> nothing <>  <>  <>  <> 50
is <> tanks <> largeheavy weapons <>  <>  <>  <> nothing <>  <>  <>  <> 50
is <> it <> nothing <> relaxing;to walk in the woods <>  <>  <> nothing <>  <>  <>  <> 50

lang_en/conceptnet-commonsense-is-1.pro  view on Meta::CPAN

is <> e-mail <> a form <> of communication <>  <>  <> nothing <>  <>  <>  <> 50
is is <> innovations <> nothing <> more common than <>  <>  <> nothing <>  <>  <>  <> 50
is <> http <> a set <> of standards <>  <>  <> nothing <>  <>  <>  <> 50
beings is <> human <> threatening the habitats <> of many other creatures <>  <>  <> nothing <>  <>  <>  <> 50
is <> a ballad <> a long somg <>  <>  <>  <> nothing <>  <>  <>  <> 50
is streaming <> video <> nothing <> over the internet <>  <>  <> nothing <>  <>  <>  <> 50
is <> the <> many species <> of insects <>  <>  <> nothing <>  <>  <>  <> 50
is <> a bottle <> nothing <> on the table;standing <>  <>  <> nothing <>  <>  <>  <> 50
is <> whales <> marine mammals <>  <>  <>  <> nothing <>  <>  <>  <> 50
is <> the statue <> a symbol <> of liberty;of freedom <>  <>  <> nothing <>  <>  <>  <> 50
is <> a horse <> a mammal <>  <>  <>  <> nothing <>  <>  <>  <> 50

lang_en/conceptnet-commonsense-is-1.pro  view on Meta::CPAN

is leaves modified <> flowers <> nothing <>  <>  <>  <> nothing <>  <>  <>  <> 50
is <> the violin <> a stringed instrument <>  <>  <>  <> nothing <>  <>  <>  <> 50
is running <> a person <> a shop <>  <>  <>  <> nothing <>  <>  <>  <> 50
is <> a author <> ending a story <>  <>  <>  <> nothing <>  <>  <>  <> 50
is <> a god <> ending a world <>  <>  <>  <> nothing <>  <>  <>  <> 50
is streaming <> a skateboard <> nothing <> down a sidewalk <>  <>  <> nothing <>  <>  <>  <> 50
is <> pears <> fruits <>  <>  <>  <> nothing <>  <>  <>  <> 50
is <> champagne <> a alcoholic beverage <>  <>  <>  <> nothing <>  <>  <>  <> 50
is used <> rubber chickens <> nothing <> as jokes <>  <>  <> nothing <>  <>  <>  <> 50
is <> bicycles <> complex machines <>  <>  <>  <> nothing <>  <>  <>  <> 50
is time <> measuring <> duration <> of events <>  <>  <> nothing <>  <>  <>  <> 50

lang_en/conceptnet-commonsense-is-1.pro  view on Meta::CPAN

is shoving <> he <> nothing <> a <>  <>  <> nothing <>  <>  <>  <> 50
going is <> employees <> nothing <> to work <>  <>  <> nothing <>  <>  <>  <> 50
coursing is <> dogs <> game <>  <>  <>  <> nothing <>  <>  <>  <> 50
crashing is <> a car <> a good hobby <>  <>  <>  <> nothing <>  <>  <>  <> 50
is <> a monkey wrench <> a good weapon <>  <>  <>  <> nothing <>  <>  <>  <> 50
is streaming tears <> nothing <> nothing <> down <>  <>  <> nothing <>  <>  <>  <> 50
is <> a fitting room <> a place <>  <> try <> before purchasing them <> nothing <> on clothes <> xxtoxx <>  <> 50
is <> a discotheque <> a club <>  <> recorded <> music <> nothing <>  <> xxtoxx <>  <> 50
is <> a index card <> a small piece <> of lightweight card <>  <>  <> nothing <>  <>  <>  <> 50
is <> a car park <> a place cars <> to park <>  <>  <> nothing <>  <>  <>  <> 50
is <> a projectile <> something <>  <>  <>  <> nothing <>  <>  <>  <> 50

lang_en/conceptnet-commonsense-is-1.pro  view on Meta::CPAN

is <> a axe <> a way wood <> into smaller pieces;of breaking <>  <>  <> nothing <>  <>  <>  <> 50
is <> a jug <> nothing <> a;container <>  <>  <> nothing <>  <>  <>  <> 50
is <> creme dental <> pasta <>  <>  <>  <> nothing <>  <>  <>  <> 50
is <> music <> a language <>  <>  <>  <> nothing <>  <>  <>  <> 50
is time <> it <> cleaning <> again <>  <>  <> nothing <>  <>  <>  <> 50
is streaming tears <> your eyes <> nothing <>  <>  <>  <> nothing <>  <>  <>  <> 50
is <> frisbees <> round <>  <>  <>  <> nothing <>  <>  <>  <> 50
called is <> the study <> astronomy <> of the sky <>  <>  <> nothing <>  <>  <>  <> 50
called is <> planets <> astronomy <> of the sky <>  <>  <> nothing <>  <>  <>  <> 50
is <> he <> having a ball <>  <>  <>  <> nothing <>  <>  <>  <> 50
is <> a cup <> put <> in a saucer <>  <>  <> nothing <>  <>  <>  <> 50

 view all matches for this distribution


Fsdb

 view release on metacpan or  search on metacpan

lib/Fsdb.pm  view on Meta::CPAN

=cut
our $VERSION = '3.4';

=head1 SYNOPSIS

Fsdb, the flatfile streaming database is package of commands
for manipulating flat-ASCII databases from
shell scripts.  Fsdb is useful to process medium amounts of data (with
very little data you'd do it by hand, with megabytes you might want a
real database).
Fsdb was known as as Jdb from 1991 to Oct. 2008.

lib/Fsdb.pm  view on Meta::CPAN


=over 4

=item INCOMPATIBLE CHANGE

Jdb has been renamed Fsdb, the flatfile-streaming database.
This change affects all internal Perl APIs,
but no shell command-level APIs.
While Jdb served well for more than ten years,
it is easily confused with the Java debugger (even though Jdb was there first!).
It also is too generic to work well in web search engines.

 view all matches for this distribution


FunctionalPerl

 view release on metacpan or  search on metacpan

lib/FP/Abstract/Sequence.pm  view on Meta::CPAN

# XX better name?
sub extreme {
    @_ == 2 or fp_croak_arity 2;
    my ($self, $cmp) = @_;

    # XXX: fold_right is good for FP::Stream streaming. left fold will
    # be better for FP::List. How? Add fold_left for explicit left
    # folding and make fold chose the preferred solution for
    # order-irrelevant folding?
    $self->rest->fold(
        sub {

 view all matches for this distribution


Future-Buffer

 view release on metacpan or  search on metacpan

lib/Future/Buffer.pm  view on Meta::CPAN

unbounded C<read_until> though.

=item *

Consider extensions of the L</read_unpacked> method to handle more situations.
This may require building a shared CPAN module for doing streaming-unpack
along with C<IO::Handle::Packable> and other situations.

=back

=head1 AUTHOR

 view all matches for this distribution


GBrowse

 view release on metacpan or  search on metacpan

lib/Bio/Graphics/Browser2/RenderPanels.pm  view on Meta::CPAN

  }

  my (%groups,%feature_count,%group_pattern,%group_field);

  # The effect of this loop is to fetch a feature from each iterator in turn
  # using a queueing scheme. This allows streaming iterators to parallelize a
  # bit. This may not be worth the effort.
  my (%feature2dbid,%classes,%limit_hit,%has_subtracks);

  while (keys %iterators) {
    for my $iterator (values %iterators) {

 view all matches for this distribution


GDPR-IAB-TCFv2

 view release on metacpan or  search on metacpan

lib/GDPR/IAB/TCFv2/Constants/Purpose.pm  view on Meta::CPAN


A travel magazine has published an article on its website about the new online courses proposed by a language school, to improve travelling experiences abroad. The school's blog posts are inserted directly at the bottom of the page, and selected on t...

=item *

A sports news mobile app has started a new section of articles covering the most recent football games. Each article includes videos hosted by a separate streaming platform showcasing the highlights of each match. If you fast-forward a video, this in...

=back

=head2 PurposeDescription

 view all matches for this distribution


GOOGLE-ADWORDS-PERL-CLIENT

 view release on metacpan or  search on metacpan

lib/Google/Ads/AdWords/v201309/Audio.pm  view on Meta::CPAN

my %name_of :ATTR(:get<name>);
my %fileSize_of :ATTR(:get<fileSize>);
my %creationTime_of :ATTR(:get<creationTime>);
my %Media__Type_of :ATTR(:get<Media__Type>);
my %durationMillis_of :ATTR(:get<durationMillis>);
my %streamingUrl_of :ATTR(:get<streamingUrl>);
my %readyToPlayOnTheWeb_of :ATTR(:get<readyToPlayOnTheWeb>);

__PACKAGE__->_factory(
    [ qw(        mediaId
        type

lib/Google/Ads/AdWords/v201309/Audio.pm  view on Meta::CPAN

        name
        fileSize
        creationTime
        Media__Type
        durationMillis
        streamingUrl
        readyToPlayOnTheWeb

    ) ],
    {
        'mediaId' => \%mediaId_of,

lib/Google/Ads/AdWords/v201309/Audio.pm  view on Meta::CPAN

        'name' => \%name_of,
        'fileSize' => \%fileSize_of,
        'creationTime' => \%creationTime_of,
        'Media__Type' => \%Media__Type_of,
        'durationMillis' => \%durationMillis_of,
        'streamingUrl' => \%streamingUrl_of,
        'readyToPlayOnTheWeb' => \%readyToPlayOnTheWeb_of,
    },
    {
        'mediaId' => 'SOAP::WSDL::XSD::Typelib::Builtin::long',
        'type' => 'Google::Ads::AdWords::v201309::Media::MediaType',

lib/Google/Ads/AdWords/v201309/Audio.pm  view on Meta::CPAN

        'name' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
        'fileSize' => 'SOAP::WSDL::XSD::Typelib::Builtin::long',
        'creationTime' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
        'Media__Type' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
        'durationMillis' => 'SOAP::WSDL::XSD::Typelib::Builtin::long',
        'streamingUrl' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
        'readyToPlayOnTheWeb' => 'SOAP::WSDL::XSD::Typelib::Builtin::boolean',
    },
    {

        'mediaId' => 'mediaId',

lib/Google/Ads/AdWords/v201309/Audio.pm  view on Meta::CPAN

        'name' => 'name',
        'fileSize' => 'fileSize',
        'creationTime' => 'creationTime',
        'Media__Type' => 'Media.Type',
        'durationMillis' => 'durationMillis',
        'streamingUrl' => 'streamingUrl',
        'readyToPlayOnTheWeb' => 'readyToPlayOnTheWeb',
    }
);

} # end BLOCK

lib/Google/Ads/AdWords/v201309/Audio.pm  view on Meta::CPAN

=over

=item * durationMillis


=item * streamingUrl


=item * readyToPlayOnTheWeb


 view all matches for this distribution


Game-WordBrain

 view release on metacpan or  search on metacpan

lib/Game/WordBrain/WordList.pm  view on Meta::CPAN

instonement
instop
instore
instr
instratified
instreaming
instrengthen
instressed
instroke
instrokes
instruct

lib/Game/WordBrain/WordList.pm  view on Meta::CPAN

streamful
streamhead
streamier
streamiest
streaminess
streaming
streamingly
streamless
streamlet
streamlets
streamlike
streamline

lib/Game/WordBrain/WordList.pm  view on Meta::CPAN

unstrategically
unstratified
unstraying
unstreaked
unstreamed
unstreaming
unstreamlined
unstreng
unstrength
unstrengthen
unstrengthened

 view all matches for this distribution


Games-Cryptoquote

 view release on metacpan or  search on metacpan

t/patterns.txt  view on Meta::CPAN

1|2|3|4|5|6|7|8|8|6|11:doubtlessly|faithlessly|fruitlessly|thanklessly|
1|2|3|4|5|6|7|8|8|7:marionette|silhouette|
1|2|3|4|5|6|7|8|8|7|1:silhouettes|
1|2|3|4|5|6|7|8|8|7|11:silhouetted|
1|2|3|4|5|6|7|8|8|7|11|12:earsplitting|
1|2|3|4|5|6|7|8|9:Abernathy|Alpheratz|Americans|Apetalous|Aphrodite|Archibald|Ashmolean|Auschwitz|Baltimore|Berkowitz|Bialystok|Blackburn|Blomquist|Bolshevik|Bromfield|Brunhilde|Brunswick|Bucharest|Bundestag|Byronizes|Byzantium|Cambridge|Catholics|Ca...
1|2|3|4|5|6|7|8|9|1:discharged|discounted|dislocated|dismounted|dispatched|downplayed|duplicated|exhaustive|expansible|metabolism|monetarism|sandwiches|scoundrels|searchings|shipwrecks|signatures|simulators|slanderous|slaughters|spreadings|subdomains...
1|2|3|4|5|6|7|8|9|10:Andromache|Babylonize|Blackstone|Bridgetown|Buchenwald|Burlingame|Candlewick|Charleston|Copernicus|Culbertson|Cumberland|Ektachrome|Fauntleroy|Fitzgerald|Fleischman|Fulbrights|Gatlinburg|Gilbertson|Heraclitus|Hieronymus|Kenilwort...
1|2|3|4|5|6|7|8|9|10|1:discouraged|disgruntled|speculators|subnetworks|subtrahends|sympathizes|thunderbolt|
1|2|3|4|5|6|7|8|9|10|10:harmfulness|typicalness|uprightness|
1|2|3|4|5|6|7|8|9|10|10|12:Jacksonville|Raymondville|domestically|impersonally|methodically|

 view all matches for this distribution


Games-Word-Wordlist-Enable

 view release on metacpan or  search on metacpan

lib/Games/Word/Wordlist/Enable.pm  view on Meta::CPAN

mailing mailings maill mailless maillot maillots maills mailman mailmen mails
maim maimed maimer maimers maiming maims main mainframe mainframes mainland
mainlander mainlanders mainlands mainline mainlined mainlines mainlining
mainly mainmast mainmasts mains mainsail mainsails mainsheet mainsheets
mainspring mainsprings mainstay mainstays mainstream mainstreamed
mainstreaming mainstreams maintain maintainabilities maintainability
maintainable maintained maintainer maintainers maintaining maintains
maintenance maintenances maintop maintops maiolica maiolicas mair mairs
maisonette maisonettes maist maists maize maizes majagua majaguas majestic
majestically majesties majesty majolica majolicas major majordomo majordomos
majored majorette majorettes majoring majoritarian majoritarianism

lib/Games/Word/Wordlist/Enable.pm  view on Meta::CPAN

slinking slinks slinky slip slipcase slipcased slipcases slipcover slipcovers
slipe sliped slipes slipform slipformed slipforming slipforms sliping slipknot
slipknots slipless slipout slipouts slipover slipovers slippage slippages
slipped slipper slippered slipperier slipperiest slipperiness slipperinesses
slippers slippery slippier slippiest slipping slippy slips slipshod slipslop
slipslops slipsole slipsoles slipstream slipstreamed slipstreaming slipstreams
slipt slipup slipups slipware slipwares slipway slipways slit slither
slithered slithering slithers slithery slitless slits slitted slitter slitters
slitting sliver slivered sliverer sliverers slivering slivers slivovic
slivovices slivovitz slivovitzes slob slobber slobbered slobberer slobberers
slobbering slobbers slobbery slobbier slobbiest slobbish slobby slobs sloe

lib/Games/Word/Wordlist/Enable.pm  view on Meta::CPAN

stravaiging stravaigs straw strawberries strawberry strawed strawflower
strawflowers strawhat strawier strawiest strawing straws strawy stray strayed
strayer strayers straying strays streak streaked streaker streakers streakier
streakiest streakiness streakinesses streaking streakings streaks streaky
stream streambed streambeds streamed streamer streamers streamier streamiest
streaming streamings streamlet streamlets streamline streamlined streamliner
streamliners streamlines streamlining streams streamside streamsides streamy
streek streeked streeker streekers streeking streeks streel streeled streeling
streels street streetcar streetcars streetlamp streetlamps streetlight
streetlights streets streetscape streetscapes streetwalker streetwalkers
streetwalking streetwalkings streetwise strength strengthen strengthened

 view all matches for this distribution


Gazelle

 view release on metacpan or  search on metacpan

lib/Plack/Handler/Gazelle.xs  view on Meta::CPAN

    (void)hv_stores(e,"psgi.errors",          newRV((SV*)PL_stderrgv));
    (void)hv_stores(e,"psgi.url_scheme",      newSVpvs("http"));
    (void)hv_stores(e,"psgi.run_once",        newSV(0));
    (void)hv_stores(e,"psgi.multithread",     newSV(0));
    (void)hv_stores(e,"psgi.multiprocess",    newSViv(1));
    (void)hv_stores(e,"psgi.streaming",       newSViv(1));
    (void)hv_stores(e,"psgi.nonblocking",     newSV(0));
    (void)hv_stores(e,"psgix.input.buffered", newSViv(1));
    (void)hv_stores(e,"psgix.harakiri",       newSViv(1));

    /* stolenn from Feersum */

 view all matches for this distribution


Geo-GDAL

 view release on metacpan or  search on metacpan

MANIFEST  view on Meta::CPAN

cv.dox
index.dox
pdl.dox
rr.dox
rv.dox
streaming.dox
transform.dox
check_dox.pl
parse-for-doxygen.pl
Changes-in-the-API-in-2.0
MYMETA.yml

 view all matches for this distribution


( run in 2.033 seconds using v1.01-cache-2.11-cpan-cdf2f3d4e48 )