view release on metacpan or search on metacpan
lib/BZ/Client/Bug/Attachment.pm view on Meta::CPAN
I<summary> (string) Required - A short string describing the attachment.
=item content_type
I<content_type> (string) Required - The MIME type of the attachment, like I<text/plain> or I<image/png>.
=item comment
I<comment> (string) - A comment to add along with this attachment.
lib/BZ/Client/Bug/Attachment.pm view on Meta::CPAN
I<comment> (string) - A comment to add along with this attachment.
=item content_type
I<content_type> (string) - The MIME type of the attachment, like C<text/plain> or C<image/png>.
=item is_patch
I<is_patch> (boolean) - True if Bugzilla should treat this attachment as a patch. If you specify this, you do not need to specify a L</content_type>. The L</content_type> of the attachment will be forced to C<text/plain>.
lib/BZ/Client/Bug/Attachment.pm view on Meta::CPAN
B<Required>, Read and Write.
=head2 content_type
I<content_type> (string) The MIME type of the attachment, like C<text/plain> or C<image/png>.
B<Required>, Read and Write.
=head2 comment
view all matches for this distribution
view release on metacpan or search on metacpan
script/b2_client view on Meta::CPAN
Downloads a file from B2. Required arguments are the name of the bucket containing the file and the name of the file in B2 (not the ID). Optional third argument is a destination directory, defaulting to the current working directory. Be sure you can ...
# b2_client put BUCKET_NAME PATH_TO_FILE
Upload a file to B2. Required arguments are the name of the destination B2 bucket and the path to the file to be uploaded. Best if the file has a standard extension (i.e. .txt, .png, .js, etc.)
# b2_client list
Lists the B2 buckets in your account.
view all matches for this distribution
view release on metacpan or search on metacpan
script/b2_client view on Meta::CPAN
Downloads a file from B2. Required arguments are the name of the bucket containing the file and the name of the file in B2 (not the ID). Optional third argument is a destination directory, defaulting to the current working directory. Be sure you can ...
# b2_client put BUCKET_NAME PATH_TO_FILE
Upload a file to B2. Required arguments are the name of the destination B2 bucket and the path to the file to be uploaded. Best if the file has a standard extension (i.e. .txt, .png, .js, etc.)
# b2_client list_items [BUCKET_NAME] [START_FILE_NAME]
If no argument provided, lists the B2 buckets in your account.
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Bag/Similarity.pm view on Meta::CPAN
Bag::Similarity - Similarity measures for bags
=begin html
<a href="https://travis-ci.org/wollmers/Bag-Similarity"><img src="https://travis-ci.org/wollmers/Bag-Similarity.png" alt="Bag-Similarity"></a>
<a href='https://coveralls.io/r/wollmers/Bag-Similarity?branch=master'><img src='https://coveralls.io/repos/wollmers/Bag-Similarity/badge.png?branch=master' alt='Coverage Status' /></a>
<a href='http://cpants.cpanauthors.org/dist/Bag-Similarity'><img src='http://cpants.cpanauthors.org/dist/Bag-Similarity.png' alt='Kwalitee Score' /></a>
<a href="http://badge.fury.io/pl/Bag-Similarity"><img src="https://badge.fury.io/pl/Bag-Similarity.svg" alt="CPAN version" height="18"></a>
=end html
lib/Bag/Similarity.pm view on Meta::CPAN
Helmut Wollmersdorfer E<lt>helmut@wollmersdorfer.atE<gt>
=begin html
<a href='http://cpants.cpanauthors.org/author/wollmers'><img src='http://cpants.cpanauthors.org/author/wollmers.png' alt='Kwalitee Score' /></a>
=end html
=head1 COPYRIGHT
view all matches for this distribution
view release on metacpan or search on metacpan
lib/BalanceOfPower/templates/html/print_actual_nation_situation.tt view on Meta::CPAN
<h3>STATUS</h3>
<div class="row">
<div class="col-sm-12">
<div class="col-md-4">
<div class="center-block">
<img style="height:120px" src="/images/flags/[% nation.code %].png" class="img-thumbnail">
</div>
</div>
<div class="col-md-8">
<div>
<p>
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Barcode/Code128.pm view on Meta::CPAN
left_margin 0 No. of pixels to the left of the barcode
right_margin 0 No. of pixels to the right of the barcode
padding 20 Size of whitespace before & after barcode
* Width and height are the default values for the $x and $y arguments
to the png, gif, or gd_image method (q.v.)
** Font may be one of the following: "giant", "large", "medium",
"small", or "tiny". Or, it may be any valid GD font name, such as
"gdMediumFont".
lib/Barcode/Code128.pm view on Meta::CPAN
##----------------------------------------------------------------------------
=item gif
=item png
=item gd_image
Usage:
$object->png($text)
$object->png($text, $x, $y)
$object->png($text, { options... })
$object->gif($text)
$object->gif($text, $x, $y)
$object->gif($text, { options... })
lib/Barcode/Code128.pm view on Meta::CPAN
method returns a GD object, which is useful if you want to do
additional processing to it using the GD object methods. The other
two create actual images. NOTE: GIF files require an old version of
GD, and so you probably are not able to create them - see below.
The gif() and png() methods are wrappers around gd_image() that create
the GD object and then run the corresponding GD method to create
output that can be displayed or saved to a file. Note that only one
of these two methods will work, depending on which version of GD you
have - see below. The return value from gif() or png() is a binary
file, so if you are working on an operating system (e.g. Microsoft
Windows) that makes a distinction between text and binary files be
sure to call binmode(FILEHANDLE) before writing the image to it, or
the file may get corrupted. Example:
open(PNG, ">code128.png") or die "Can't write code128.png: $!\n";
binmode(PNG);
print PNG $object->png("CODE 128");
close(PNG);
If you have GD version 1.20 or newer, the PNG file format is the only
allowed option. Conversely if you have GD version prior to 1.20, then
the GIF format is the only option. Check the $object->image_format()
lib/Barcode/Code128.pm view on Meta::CPAN
unless $GD_VERSION;
my $image = $self->gd_image($text, $x, $y, $scale);
return $image->gif();
}
sub png
{
my($self, $text, $x, $y, $scale) = @_;
croak "The png() method of Barcode::Code128 requires the GD module"
unless $GD_VERSION;
my $image = $self->gd_image($text, $x, $y, $scale);
return $image->png();
}
##----------------------------------------------------------------------------
=item barcode
lib/Barcode/Code128.pm view on Meta::CPAN
"Barcode::Code128" but if it has been inherited into another module,
that module will show instead. C<$opt> is the attempted option.
=item The gd_image() method of Barcode::Code128 requires the GD module
To call the C<gd_image()>, C<png()>, or C<gif()> methods, the GD
module must be present. This module is used to create the actual
image. Without it, you can only use the C<barcode()> method.
=item Scale must be a positive integer
The scale factor for the C<gd_image()>, C<png()>, or C<gif()> methods
must be a positive integer.
=item Border ($border) must be a positive integer or zero
The border option cannot be a fractional or negative number.
lib/Barcode/Code128.pm view on Meta::CPAN
=item Image width $x is too small for bar code
You have specified an image width that does not allow enough space for
the bar code to be displayed. The minimum allowable is the size of
the bar code itself plus 40 pixels. If in doubt, just omit the width
value when calling C<gd_image()>, C<png()>, or C<gif()> and it will
use the minimum.
=item Image height $y is too small for bar code
You have specified an image height that does not allow enough space
for the bar code to be displayed. The minimum allowable is 15% of the
width of the bar code. If in doubt, just omit the height value when
calling C<gd_image()>, C<png()>, or C<gif()> and it will use the
minimum.
=item Unable to create $x x $y image
An error occurred when initializing a GD::Image object for the
lib/Barcode/Code128.pm view on Meta::CPAN
=item The gif() method of Barcode::Code128 requires the GD module
=item The gif() method of Barcode::Code128 requires version less than 1.20 of GD
=item The png() method of Barcode::Code128 requires the GD module
=item The png() method of Barcode::Code128 requires at least version 1.20 of GD
These errors indicate that the GD module, or the correct version of
the GD module for this method, was not present. You need to install
GD version 1.20 or greater to create PNG files, or a version of GD
less than 1.20 to create GIF files.
lib/Barcode/Code128.pm view on Meta::CPAN
This message from C<barcode()> typically means that there was no text
message supplied either during the current method call or in a
previous method call on the same object. This error occurs when you
are trying to create a barcode by calling one of C<gd_image()>,
C<png()>, C<gif()>, or C<barcode()> without having specified the text
to be encoded.
=item No text defined
This message from C<encode()> typically means that there was no text
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Barcode/DataMatrix/PNG.pm view on Meta::CPAN
}
$x = 0;
$y = ($y + $self->resolution);
}
if ($self->target =~ /pass/i) {
# Return the png image.
return ($img->png);
} else {
# Dump our image to STDOUT.
print $img->png;
return 1;
}
}
sub echo_barcode {
view all matches for this distribution
view release on metacpan or search on metacpan
inc/Devel/CheckLib.pm
Makefile.PL
MANIFEST This list of files
ppport.h
README
t/barcode.png
t/Decoder.t
t/Image.t
t/pod-coverage.t
t/pod.t
t/Processor.t
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Beagle/Model/Info.pm view on Meta::CPAN
);
has 'avatar' => (
isa => 'Str',
is => 'rw',
default => 'system/images/beagle.png',
trigger => sub {
my $self = shift;
my $value = shift;
return unless $value && $value !~ m{/};
$value = join '/', 'static', split_id($self->id), $value;
view all matches for this distribution
view release on metacpan or search on metacpan
copy = LICENSE
copy = Makefile.PL
[Run::AfterBuild]
; Add travis and coveralls badges to README.mkdn
run = perl -pi -e 's{(# SYNOPSIS)}{# STATUS\n\n<a href="https://travis-ci.org/preaction/Beam-Emitter"><img src="https://travis-ci.org/preaction/Beam-Emitter.svg?branch=master"></a><a href="https://coveralls.io/r/preaction/Beam-Emitter"><img src="http...
; --- Git management
[CheckChangesHasContent]
changelog = CHANGES
[Git::Check]
view all matches for this distribution
view release on metacpan or search on metacpan
copy = LICENSE
copy = Makefile.PL
[Run::AfterBuild]
; Add travis and coveralls badges to README.mkdn
run = perl -pi -e 's{(# SYNOPSIS)}{# STATUS\n\n<a href="https://travis-ci.org/preaction/Beam-Minion"><img src="https://travis-ci.org/preaction/Beam-Minion.svg?branch=master"></a><a href="https://coveralls.io/r/preaction/Beam-Minion"><img src="https:/...
; --- Git management
[CheckChangesHasContent]
changelog = CHANGES
[Git::Check]
view all matches for this distribution
view release on metacpan or search on metacpan
copy = LICENSE
copy = Makefile.PL
[Run::AfterBuild]
; Add travis and coveralls badges to README.mkdn
run = perl -pi -e 's{(# SYNOPSIS)}{# STATUS\n\n<a href="https://travis-ci.org/preaction/Beam-Runner"><img src="https://travis-ci.org/preaction/Beam-Runner.svg?branch=master"></a><a href="https://coveralls.io/r/preaction/Beam-Runner"><img src="https:/...
; --- Git management
[CheckChangesHasContent]
changelog = CHANGES
[Git::Check]
view all matches for this distribution
view release on metacpan or search on metacpan
copy = Makefile.PL
copy = CHANGES
[Run::AfterBuild]
; Add travis and coveralls badges to README.mkdn
run = perl -pi -e 's{(# SYNOPSIS)}{# STATUS\n\n<a href="https://travis-ci.org/preaction/Beam-Service"><img src="https://travis-ci.org/preaction/Beam-Service.svg?branch=master"></a><a href="https://coveralls.io/r/preaction/Beam-Service"><img src="http...
; --- Git management
[CheckChangesHasContent]
changelog = CHANGES
[Git::Check]
view all matches for this distribution
view release on metacpan or search on metacpan
README.mkdn view on Meta::CPAN
version 0.005
# STATUS
<a href="https://travis-ci.org/preaction/Beam-Wire-Moose"><img src="https://travis-ci.org/preaction/Beam-Wire-Moose.svg?branch=master"></a><a href="https://coveralls.io/r/preaction/Beam-Wire-Moose"><img src="https://coveralls.io/repos/preaction/Beam-...
# SYNOPSIS
# container.yml
db:
view all matches for this distribution
view release on metacpan or search on metacpan
META.yml
Makefile.PL
Media/beamer-reveal-AnimatedPendulum.gif
Media/beamer-reveal-AudioSample.ogg
Media/beamer-reveal-PCB.html
Media/beamer-reveal-WiresTp.png
Media/beamer-reveal-testvideo.mp4
README
TODO.org
beamer-reveal-example-notes-4940D9B0-3334-11F1-8059-A02A0361802B.tex
beamer-reveal-example-notes-6DF34466-3346-11F1-B68D-A1AAB65F3B63.log
music-ideas.org
pdf/beamer-reveal-example.pdf
quarto/custom.css
quarto/hello.html
quarto/hello.qmd
quarto/hello_files/figure-html/fig-polar-output-1.png
quarto/hello_files/libs/bootstrap/bootstrap-47fdc16c3155bf2e4612729af4b9db0e.min.css
quarto/hello_files/libs/bootstrap/bootstrap-icons.css
quarto/hello_files/libs/bootstrap/bootstrap-icons.woff
quarto/hello_files/libs/bootstrap/bootstrap.min.js
quarto/hello_files/libs/clipboard/clipboard.min.js
test/2026-01-01-LVP/jo_files/libs/revealjs/plugin/zoom/plugin.js
test/2026-01-01-LVP/jo_files/libs/revealjs/plugin/zoom/zoom.esm.js
test/2026-01-01-LVP/jo_files/libs/revealjs/plugin/zoom/zoom.js
test/2026-01-01-LVP/jo_files/media/Slides/slide-1.jpg
test/2026-02-04-DRM/beamer-reveal-example.brlog
test/2026-02-04-DRM/grade-pie.png
test/2026-02-04-DRM/index.html
test/2026-02-04-DRM/texput.log
test/2026-02-04-DRM/the_shell-notes-5476C9D2-01A9-11F1-99C0-B718CF90B9A1.11.vrb
test/2026-02-04-DRM/the_shell-notes-5476C9D2-01A9-11F1-99C0-B718CF90B9A1.12.vrb
test/2026-02-04-DRM/the_shell-notes-5476C9D2-01A9-11F1-99C0-B718CF90B9A1.13.vrb
view all matches for this distribution
view release on metacpan or search on metacpan
examples/chat/README.md view on Meta::CPAN
```
./run.sh stop
```
This is `bkpr-top` showing this example running:

---
### Mosquitto setup
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Bencher/Backend.pm view on Meta::CPAN
v => 1.1,
summary => 'Generate chart from the result',
description => <<'_',
Will use gnuplot (via <pm:Chart::Gnuplot>) to generate the chart. Will produce
`.png` files in the specified directory.
Currently only results with one or two permutations of different items will be
chartable.
Options to customize the look/style of the chart will be added in the future.
lib/Bencher/Backend.pm view on Meta::CPAN
chart_result(%args) -> [$status_code, $reason, $payload, \%result_meta]
Generate chart from the result.
Will use gnuplot (via L<Chart::Gnuplot>) to generate the chart. Will produce
C<.png> files in the specified directory.
Currently only results with one or two permutations of different items will be
chartable.
Options to customize the look/style of the chart will be added in the future.
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Bencher/Scenario/AcmePERLANCARTestPerformance.pm view on Meta::CPAN
The above result presented as chart:
=begin html
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAtAAAAH4CAMAAABUnipoAAAJJmlDQ1BpY2MAAEiJlZVnUJNZF8fv8zzphUASQodQQ5EqJYCUEFoo0quoQOidUEVsiLgCK4qINEWQRQEXXJUia0UUC4uCAhZ0gywCyrpxFVFBWXDfGZ33HT+8/5l7z2/+c+bec8/5cAEgiINlwct7YlK6wNvJjhkYFMwE3yiMn5...
=end html
=head2 Sample benchmark #2
lib/Bencher/Scenario/AcmePERLANCARTestPerformance.pm view on Meta::CPAN
The above result presented as chart:
=begin html
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAtAAAAH4CAMAAABUnipoAAAJJmlDQ1BpY2MAAEiJlZVnUJNZF8fv8zzphUASQodQQ5EqJYCUEFoo0quoQOidUEVsiLgCK4qINEWQRQEXXJUia0UUC4uCAhZ0gywCyrpxFVFBWXDfGZ33HT+8/5l7z2/+c+bec8/5cAEgiINlwct7YlK6wNvJjhkYFMwE3yiMn5...
=end html
To display as an interactive HTML table on a browser, you can add option C<--format html+datatables>.
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Bencher/Scenario/Allocations.pm view on Meta::CPAN
The above result presented as chart:
=begin html
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAtAAAAH4CAMAAABUnipoAAAJJmlDQ1BpY2MAAEiJlZVnUJNZF8fv8zzphUASQodQQ5EqJYCUEFoo0quoQOidUEVsiLgCK4qINEWQRQEXXJUia0UUC4uCAhZ0gywCyrpxFVFBWXDfGZ33HT+8/5l7z2/+c+bec8/5cAEgiINlwct7YlK6wNvJjhkYFMwE3yiMn5...
=end html
To display as an interactive HTML table on a browser, you can add option C<--format html+datatables>.
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Bencher/Scenario/AppSorted.pm view on Meta::CPAN
The above result presented as chart:
=begin html
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAtAAAAH4CAMAAABUnipoAAAJJmlDQ1BpY2MAAEiJlZVnUJNZF8fv8zzphUASQodQQ5EqJYCUEFoo0quoQOidUEVsiLgCK4qINEWQRQEXXJUia0UUC4uCAhZ0gywCyrpxFVFBWXDfGZ33HT+8/5l7z2/+c+bec8/5cAEgiINlwct7YlK6wNvJjhkYFMwE3yiMn5...
=end html
=head2 Sample benchmark #2
lib/Bencher/Scenario/AppSorted.pm view on Meta::CPAN
The above result presented as chart:
=begin html
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAtAAAAH4CAMAAABUnipoAAAJJmlDQ1BpY2MAAEiJlZVnUJNZF8fv8zzphUASQodQQ5EqJYCUEFoo0quoQOidUEVsiLgCK4qINEWQRQEXXJUia0UUC4uCAhZ0gywCyrpxFVFBWXDfGZ33HT+8/5l7z2/+c+bec8/5cAEgiINlwct7YlK6wNvJjhkYFMwE3yiMn5...
=end html
To display as an interactive HTML table on a browser, you can add option C<--format html+datatables>.
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Bencher/Scenario/ArraySamplePartition.pm view on Meta::CPAN
The above result presented as chart:
=begin html
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAtAAAAH4CAMAAABUnipoAAAJJmlDQ1BpY2MAAEiJlZVnUJNZF8fv8zzphUASQodQQ5EqJYCUEFoo0quoQOidUEVsiLgCK4qINEWQRQEXXJUia0UUC4uCAhZ0gywCyrpxFVFBWXDfGZ33HT+8/5l7z2/+c+bec8/5cAEgiINlwct7YlK6wNvJjhkYFMwE3yiMn5...
=end html
=head2 Sample benchmark #2
lib/Bencher/Scenario/ArraySamplePartition.pm view on Meta::CPAN
The above result presented as chart:
=begin html
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAtAAAAH4CAMAAABUnipoAAAJJmlDQ1BpY2MAAEiJlZVnUJNZF8fv8zzphUASQodQQ5EqJYCUEFoo0quoQOidUEVsiLgCK4qINEWQRQEXXJUia0UUC4uCAhZ0gywCyrpxFVFBWXDfGZ33HT+8/5l7z2/+c+bec8/5cAEgiINlwct7YlK6wNvJjhkYFMwE3yiMn5...
=end html
To display as an interactive HTML table on a browser, you can add option C<--format html+datatables>.
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Bencher/Scenario/ArrayVsHashBuilding.pm view on Meta::CPAN
The above result presented as chart:
=begin html
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAtAAAAH4CAMAAABUnipoAAAJJmlDQ1BpY2MAAEiJlZVnUJNZF8fv8zzphUASQodQQ5EqJYCUEFoo0quoQOidUEVsiLgCK4qINEWQRQEXXJUia0UUC4uCAhZ0gywCyrpxFVFBWXDfGZ33HT+8/5l7z2/+c+bec8/5cAEgiINlwct7YlK6wNvJjhkYFMwE3yiMn5...
=end html
To display as an interactive HTML table on a browser, you can add option C<--format html+datatables>.
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Bencher/Scenario/BagComparison.pm view on Meta::CPAN
The above result presented as chart:
=begin html
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAtAAAAH4CAMAAABUnipoAAAJJmlDQ1BpY2MAAEiJlZVnUJNZF8fv8zzphUASQodQQ5EqJYCUEFoo0quoQOidUEVsiLgCK4qINEWQRQEXXJUia0UUC4uCAhZ0gywCyrpxFVFBWXDfGZ33HT+8/5l7z2/+c+bec8/5cAEgiINlwct7YlK6wNvJjhkYFMwE3yiMn5...
=end html
=head2 Sample benchmark #2
lib/Bencher/Scenario/BagComparison.pm view on Meta::CPAN
The above result presented as chart:
=begin html
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAtAAAAH4CAMAAABUnipoAAAJJmlDQ1BpY2MAAEiJlZVnUJNZF8fv8zzphUASQodQQ5EqJYCUEFoo0quoQOidUEVsiLgCK4qINEWQRQEXXJUia0UUC4uCAhZ0gywCyrpxFVFBWXDfGZ33HT+8/5l7z2/+c+bec8/5cAEgiINlwct7YlK6wNvJjhkYFMwE3yiMn5...
=end html
To display as an interactive HTML table on a browser, you can add option C<--format html+datatables>.
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Bencher/Scenario/CSVParsingModules.pm view on Meta::CPAN
The above result presented as chart:
=begin html
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAtAAAAH4CAMAAABUnipoAAAJJmlDQ1BpY2MAAEiJlZVnUJNZF8fv8zzphUASQodQQ5EqJYCUEFoo0quoQOidUEVsiLgCK4qINEWQRQEXXJUia0UUC4uCAhZ0gywCyrpxFVFBWXDfGZ33HT+8/5l7z2/+c+bec8/5cAEgiINlwct7YlK6wNvJjhkYFMwE3yiMn5...
=end html
Result formatted as table (split, part 2 of 4):
lib/Bencher/Scenario/CSVParsingModules.pm view on Meta::CPAN
The above result presented as chart:
=begin html
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAtAAAAH4CAMAAABUnipoAAAJJmlDQ1BpY2MAAEiJlZVnUJNZF8fv8zzphUASQodQQ5EqJYCUEFoo0quoQOidUEVsiLgCK4qINEWQRQEXXJUia0UUC4uCAhZ0gywCyrpxFVFBWXDfGZ33HT+8/5l7z2/+c+bec8/5cAEgiINlwct7YlK6wNvJjhkYFMwE3yiMn5...
=end html
Result formatted as table (split, part 3 of 4):
lib/Bencher/Scenario/CSVParsingModules.pm view on Meta::CPAN
The above result presented as chart:
=begin html
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAtAAAAH4CAMAAABUnipoAAAJJmlDQ1BpY2MAAEiJlZVnUJNZF8fv8zzphUASQodQQ5EqJYCUEFoo0quoQOidUEVsiLgCK4qINEWQRQEXXJUia0UUC4uCAhZ0gywCyrpxFVFBWXDfGZ33HT+8/5l7z2/+c+bec8/5cAEgiINlwct7YlK6wNvJjhkYFMwE3yiMn5...
=end html
Result formatted as table (split, part 4 of 4):
lib/Bencher/Scenario/CSVParsingModules.pm view on Meta::CPAN
The above result presented as chart:
=begin html
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAtAAAAH4CAMAAABUnipoAAAJJmlDQ1BpY2MAAEiJlZVnUJNZF8fv8zzphUASQodQQ5EqJYCUEFoo0quoQOidUEVsiLgCK4qINEWQRQEXXJUia0UUC4uCAhZ0gywCyrpxFVFBWXDfGZ33HT+8/5l7z2/+c+bec8/5cAEgiINlwct7YlK6wNvJjhkYFMwE3yiMn5...
=end html
=head2 Sample benchmark #2
lib/Bencher/Scenario/CSVParsingModules.pm view on Meta::CPAN
The above result presented as chart:
=begin html
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAtAAAAH4CAMAAABUnipoAAAJJmlDQ1BpY2MAAEiJlZVnUJNZF8fv8zzphUASQodQQ5EqJYCUEFoo0quoQOidUEVsiLgCK4qINEWQRQEXXJUia0UUC4uCAhZ0gywCyrpxFVFBWXDfGZ33HT+8/5l7z2/+c+bec8/5cAEgiINlwct7YlK6wNvJjhkYFMwE3yiMn5...
=end html
To display as an interactive HTML table on a browser, you can add option C<--format html+datatables>.
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Bencher/Scenario/ExceptionHandling.pm view on Meta::CPAN
e: participant=eval-localize-die-signal-and-eval-error
n: participant=naive-eval
The above result presented as chart:
#IMAGE: share/images/bencher-result-1.png|/tmp/VHOUgvh_oa/bencher-result-1.png
Result formatted as table (split, part 2 of 2):
#table2#
{dataset=>"empty try, empty catch"}
lib/Bencher/Scenario/ExceptionHandling.pm view on Meta::CPAN
e: participant=eval-localize-die-signal-and-eval-error
n: participant=naive-eval
The above result presented as chart:
#IMAGE: share/images/bencher-result-2.png|/tmp/VHOUgvh_oa/bencher-result-2.png
=head2 Sample benchmark #2
Benchmark command (benchmarking module startup overhead):
lib/Bencher/Scenario/ExceptionHandling.pm view on Meta::CPAN
T:T: mod_overhead_time=8.4 participant=Try::Tiny
perl -e1 (baseline): mod_overhead_time=0 participant=perl -e1 (baseline)
The above result presented as chart:
#IMAGE: share/images/bencher-result-3.png|/tmp/VHOUgvh_oa/bencher-result-3.png
To display as an interactive HTML table on a browser, you can add option C<--format html+datatables>.
=head1 HOMEPAGE
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Bencher/Scenario/Nums2WordsModules.pm view on Meta::CPAN
+------------------------------------+-----------+-----------+-----------+------------+---------+---------+
=begin html
<img src="https://st.aticpan.org/source/PERLANCAR/Bencher-Scenario-Nums2WordsModules-0.004/share/images/bencher-result-1.png" />
=end html
Benchmark module startup overhead (C<< bencher -m Nums2WordsModules --module-startup >>):
lib/Bencher/Scenario/Nums2WordsModules.pm view on Meta::CPAN
+------------------------+------------------------------+--------------------+----------------+-----------+------------------------+------------+---------+---------+
=begin html
<img src="https://st.aticpan.org/source/PERLANCAR/Bencher-Scenario-Nums2WordsModules-0.004/share/images/bencher-result-2.png" />
=end html
To display as an interactive HTML table on a browser, you can add option C<--format html+datatables>.
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Bencher/Scenario/Perl/Startup.pm view on Meta::CPAN
perl-5.38.0 -E1: participant=perl-5.38.0 -E1
perl-5.38.0 -e1: participant=perl-5.38.0 -e1
perl-5.6.2 -e1: participant=perl-5.6.2 -e1
perl-5.8.9 -e1: participant=perl-5.8.9 -e1
=for html <img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAtAAAAH4CAMAAABUnipoAAAJJmlDQ1BpY2MAAEiJlZVnUJNZF8fv8zzphUASQodQQ5EqJYCUEFoo0quoQOidUEVsiLgCK4qINEWQRQEXXJUia0UUC4uCAhZ0gywCyrpxFVFBWXDfGZ33HT+8/5l7z2/+c+bec8/5cAEgiINlwct7YlK6wNvJjhkY...
To display as an interactive HTML table on a browser, you can add option C<--format html+datatables>.
=head1 HOMEPAGE
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Bencher/Scenario/PerlPhase.pm view on Meta::CPAN
+------------------------------+-----------+-----------+-----------------------+-----------------------+---------+---------+
=begin html
<img src="https://st.aticpan.org/source/PERLANCAR/Bencher-Scenario-PerlPhase-0.001/share/images/bencher-result-1.png" />
=end html
To display as an interactive HTML table on a browser, you can add option C<--format html+datatables>.
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Bencher/Scenario/crypt.pm view on Meta::CPAN
ssha512-50k: dataset=ssha512-50k
ssha512-5k: dataset=ssha512-5k
=begin html
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAtAAAAH4CAMAAABUnipoAAAJJmlDQ1BpY2MAAEiJlZVnUJNZF8fv8zzphUASQodQQ5EqJYCUEFoo0quoQOidUEVsiLgCK4qINEWQRQEXXJUia0UUC4uCAhZ0gywCyrpxFVFBWXDfGZ33HT+8/5l7z2/+c+bec8/5cAEgiINlwct7YlK6wNvJjhkYFMwE3yiMn5...
=end html
To display as an interactive HTML table on a browser, you can add option C<--format html+datatables>.
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Bencher/Scenario/Accessors/ClassStartup.pm view on Meta::CPAN
The above result presented as chart:
=begin html
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAtAAAAH4CAMAAABUnipoAAAJJmlDQ1BpY2MAAEiJlZVnUJNZF8fv8zzphUASQodQQ5EqJYCUEFoo0quoQOidUEVsiLgCK4qINEWQRQEXXJUia0UUC4uCAhZ0gywCyrpxFVFBWXDfGZ33HT+8/5l7z2/+c+bec8/5cAEgiINlwct7YlK6wNvJjhkYFMwE3yiMn5...
=end html
To display as an interactive HTML table on a browser, you can add option C<--format html+datatables>.
view all matches for this distribution