view release on metacpan or search on metacpan
nextchar|||
ninstr|||
no_bareword_allowed|||
no_fh_allowed|||
no_op|||
not_a_number|||
nothreadhook||5.008000|
nuke_stacks|||
num_overflow|||n
oopsAV|||
oopsCV|||
# if !defined(__PATCHLEVEL_H_INCLUDED__) && !(defined(PATCHLEVEL) && defined(SUBVERSION))
# define PERL_PATCHLEVEL_H_IMPLICIT
# include <patchlevel.h>
# endif
# if !(defined(PERL_VERSION) || (defined(SUBVERSION) && defined(PATCHLEVEL)))
# include <could_not_find_Perl_patchlevel.h>
# endif
# ifndef PERL_REVISION
# define PERL_REVISION (5)
/* Replace: 1 */
# define PERL_VERSION PATCHLEVEL
view all matches for this distribution
view release on metacpan or search on metacpan
#ifndef PERL_API_VERSION
#define newSVuv newSViv
#endif
static int
not_here(char *s)
{
croak("%s not implemented on this architecture", s);
return -1;
}
view all matches for this distribution
view release on metacpan or search on metacpan
ninstr|||n
no_bareword_allowed|||
no_fh_allowed|||
no_op|||
noperl_die|||vn
not_a_number|||
not_incrementable|||
nothreadhook||5.008000|
nuke_stacks|||
num_overflow|||n
oopsAV|||
oopsHV|||
watch|||
whichsig_pvn||5.015004|
whichsig_pv||5.015004|
whichsig_sv||5.015004|
whichsig|||
win32_croak_not_implemented|||n
with_queued_errors|||
wrap_op_checker||5.015008|
write_to_stderr|||
xs_boot_epilog|||
xs_handshake|||vn
# if !defined(__PATCHLEVEL_H_INCLUDED__) && !(defined(PATCHLEVEL) && defined(SUBVERSION))
# define PERL_PATCHLEVEL_H_IMPLICIT
# include <patchlevel.h>
# endif
# if !(defined(PERL_VERSION) || (defined(SUBVERSION) && defined(PATCHLEVEL)))
# include <could_not_find_Perl_patchlevel.h>
# endif
# ifndef PERL_REVISION
# define PERL_REVISION (5)
/* Replace: 1 */
# define PERL_VERSION PATCHLEVEL
view all matches for this distribution
view release on metacpan or search on metacpan
sample/mailserver/server_config.xml view on Meta::CPAN
</parameter>
<parameter>
<uid>uid</uid>
</parameter>
<parameter>
<not_encrypted_passwd>test</not_encrypted_passwd>
</parameter>
</sendmail>
<cyrus>
</cyrus>
view all matches for this distribution
view release on metacpan or search on metacpan
lib/BackPAN/Version/Discover.pm view on Meta::CPAN
# info from the results, plus info needed to re-run the same scan
# any anything else people may ask for :)
return BackPAN::Version::Discover::Results->new(
releases_matched => $bp_releases,
skipped_modules => $skipped_modules,
dists_not_matched => $no_release_matched,
searched_dirs => \@search_dirs,
dist_info => $dist_info,
scan_args => \%args,
);
}
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Backblaze/B2V4.pm view on Meta::CPAN
use Types::Common -all;
use Marlin::Util -all;
use Marlin
'application_key_id' => { is => 'ro', isa => 'NonEmptyStr' },
'application_key' => { is => 'ro', isa => 'NonEmptyStr' },
'current_status_is_not_ok' => { is => 'rw', isa => 'Bool', default => 0 },
'login_error' => { is => 'rw', isa => 'Bool', default => 0 },
'errors' => { is => 'rw', isa => 'ArrayRef', default => [] },
'api_info' => { is => 'rw', isa => 'HashRef', builder => 'build_api_info' },
'bucket_info' => { is => 'rw', isa => 'HashRef', default => {} },
'file_info' => { is => 'rw', isa => 'HashRef', default => {} },
lib/Backblaze/B2V4.pm view on Meta::CPAN
'error_message' => $error_message . ' (' . $response->{status} . ')',
'url' => $args->url,
);
}
$self->current_status_is_not_ok(0);
return $b2_response;
}
# indicate if everything is fine
sub current_status_is_ok ($self) {
return !$self->current_status_is_not_ok;
}
# for tracking errors into $self->{errrors}[];
signature_for error_tracker => (
method => true,
lib/Backblaze/B2V4.pm view on Meta::CPAN
push(@{ $self->errors }, {
'error_message' => $args->error_message,
'url' => $args->url,
});
$self->current_status_is_not_ok(1);
return 0;
}
# please tell me the lastest error message
lib/Backblaze/B2V4.pm view on Meta::CPAN
sub b2_download_file_by_id ($self, $args) {
my $response = $self->send_request(
'url' => $self->api_info->{download_url} . '/b2api/v4/b2_download_file_by_id' . '?fileId=' . $args->file_id,
);
if ($self->current_status_is_not_ok) {
return 0;
}
# if they provided a save-to location (a directory) and the file was found, let's save it out
if ($args->save_to_location) {
lib/Backblaze/B2V4.pm view on Meta::CPAN
'url' => $self->api_info->{download_url} . '/file/' . uri_escape($args->bucket_name) . '/' . uri_escape($args->file_name),
);
# if the file was found, you will have the relevant headers in $response
# as well as the file's contents in $response->{file_contents}
if ($self->current_status_is_not_ok) {
return 0;
}
# if they provided a save-to location (a directory) and the file was found, let's save it out
if ($args->save_to_location) {
lib/Backblaze/B2V4.pm view on Meta::CPAN
'X-Bz-Content-Sha1' => sha1_hex( $file_contents ),
'Content-Type' => $content_type,
},
);
return $self->current_status_is_not_ok ? 0 : $response->{fileId};
}
# method to get the information needed to upload into a specific B2 bucket
signature_for b2_get_upload_info => (
method => true,
lib/Backblaze/B2V4.pm view on Meta::CPAN
my $response = $self->send_request(
'url' => 'b2_list_buckets',
'post_params' => $post_params,
);
if ($self->current_status_is_not_ok) {
return 0;
}
# if we succeeded, load in all the found buckets to $self->{buckets}
# that will be a hash of info, keyed by name
lib/Backblaze/B2V4.pm view on Meta::CPAN
$bucket_name = $args->bucket_name;
if ($bucket_name && !$self->bucket_info->{$bucket_name}->{bucket_id} && $args->auto_create_bucket) {
$self->b2_bucket_maker(
bucket_name => $bucket_name
);
if ($self->current_status_is_not_ok) {
return 0;
}
# this will call back to me and get the info
}
lib/Backblaze/B2V4.pm view on Meta::CPAN
'url' => 'b2_list_file_names',
'post_params' => $post_params,
);
# if we succeeded, read in the files
if ($self->current_status_is_not_ok) {
return 0;
}
$self->bucket_info->{$bucket_name}->{next_file_name} = $response->{nextFileName};
lib/Backblaze/B2V4.pm view on Meta::CPAN
# retrieve the file information
my $response = $self->send_request(
'url' => 'b2_get_file_info?fileId=' . $file_id,
);
if ($self->current_status_is_not_ok) {
return 0;
}
# i am not going to waste the CPU cycles de-camelizing these sub-keys
$self->file_info->{$file_id} = $response;
lib/Backblaze/B2V4.pm view on Meta::CPAN
my $response = $self->send_request(
'url' => 'b2_create_bucket',
'post_params' => $post_params,
);
if ($self->current_status_is_not_ok) {
return 0;
}
# otherwise successful, stash our new bucket into $self->{buckets}
$self->bucket_info->{$args->bucket_name} = {
lib/Backblaze/B2V4.pm view on Meta::CPAN
'accountId' => $self->api_info->account_id,
'bucketId' => $bucket_id,
},
);
return $self->current_status_is_not_ok ? 0 : 1;
}
# method to delete a stored file object. B2 thinks of these as 'versions,'
# but if you use unique names, one version = one file
signature_for b2_delete_file_version => (
lib/Backblaze/B2V4.pm view on Meta::CPAN
'fileName' => $args->file_name,
'fileId' => $args->file_id,
},
);
return $self->current_status_is_not_ok ? 0 : 1;
}
# method to upload a large file (>100MB)
signature_for b2_upload_large_file => (
method => true,
lib/Backblaze/B2V4.pm view on Meta::CPAN
'partSha1Array' => \@sha1_array,
},
);
# phew, i'm tired...
return $self->current_status_is_not_ok ? 0 : $response->{fileId};
}
1;
__END__
lib/Backblaze/B2V4.pm view on Meta::CPAN
);
# For all of these $response is the output from the B2 V4 API
# to confirm all is well
my $all_is_well = $b2->current_status_is_not_ok != 1;
# or
my $all_is_well = $b2->current_status_is_ok());
# to get the latest error
print $b2->latest_error();
lib/Backblaze/B2V4.pm view on Meta::CPAN
send_request() handles all the communications with B2.
You should be able to use this to make calls not explicitly
provided by this library.
If send_request() gets a 200 HTTP status from B2, then the call went
great, $b2->current_status_is_not_ok will be 0, and
the JSON response will be returned.
If a 200 is not received from B2, $b2->current_status_is_not_ok
will be 1, and you can find an error in $b2->latest_error()
Note that the base URL for this API session will be stored
under $b2->api_info->{api_url} so that you build a URL like so:
view all matches for this distribution
view release on metacpan or search on metacpan
t/01_basic.t view on Meta::CPAN
my $handler = test_handler();
my $triggered = 0;
$handler->on('wanted', sub { $triggered++ });
$handler->trigger('not_wanted');
is $triggered, 0, 'callback not triggered on unwanted event';
$handler->trigger('wanted');
is $triggered, 1, 'callback triggered on wanted event';
view all matches for this distribution
view release on metacpan or search on metacpan
t/boilerplate.t view on Meta::CPAN
use warnings FATAL => 'all';
use Test::More;
plan tests => 3;
sub not_in_file_ok {
my ($filename, %regex) = @_;
open( my $fh, '<', $filename )
or die "couldn't open $filename for reading: $!";
my %violated;
t/boilerplate.t view on Meta::CPAN
}
}
sub module_boilerplate_ok {
my ($module) = @_;
not_in_file_ok($module =>
'the great new $MODULENAME' => qr/ - The great new /,
'boilerplate description' => qr/Quick summary of what the module/,
'stub function definition' => qr/function[12]/,
);
}
TODO: {
local $TODO = "Need to replace the boilerplate text";
not_in_file_ok(README =>
"The README is used..." => qr/The README is used/,
"'version information here'" => qr/to provide version information/,
);
not_in_file_ok(Changes =>
"placeholder date/time" => qr(Date/time)
);
module_boilerplate_ok('lib/Backup/Duplicity/YADW.pm');
view all matches for this distribution
view release on metacpan or search on metacpan
t/boilerplate.t view on Meta::CPAN
use warnings FATAL => 'all';
use Test::More;
plan tests => 3;
sub not_in_file_ok {
my ($filename, %regex) = @_;
open( my $fh, '<', $filename )
or die "couldn't open $filename for reading: $!";
my %violated;
t/boilerplate.t view on Meta::CPAN
}
}
sub module_boilerplate_ok {
my ($module) = @_;
not_in_file_ok($module =>
'the great new $MODULENAME' => qr/ - The great new /,
'boilerplate description' => qr/Quick summary of what the module/,
'stub function definition' => qr/function[12]/,
);
}
TODO: {
# local $TODO = "Need to replace the boilerplate text";
not_in_file_ok(README =>
"The README is used..." => qr/The README is used/,
"'version information here'" => qr/to provide version information/,
);
not_in_file_ok(Changes =>
"placeholder date/time" => qr(Date/time)
);
module_boilerplate_ok('lib/Backup/EZ.pm');
view all matches for this distribution
view release on metacpan or search on metacpan
t/boilerplate.t view on Meta::CPAN
use 5.006;
use strict;
use warnings;
use Test::More tests => 3;
sub not_in_file_ok {
my ($filename, %regex) = @_;
open( my $fh, '<', $filename )
or die "couldn't open $filename for reading: $!";
my %violated;
t/boilerplate.t view on Meta::CPAN
}
}
sub module_boilerplate_ok {
my ($module) = @_;
not_in_file_ok($module =>
'the great new $MODULENAME' => qr/ - The great new /,
'boilerplate description' => qr/Quick summary of what the module/,
'stub function definition' => qr/function[12]/,
);
}
TODO: {
local $TODO = "Need to replace the boilerplate text";
not_in_file_ok(README =>
"The README is used..." => qr/The README is used/,
"'version information here'" => qr/to provide version information/,
);
not_in_file_ok(Changes =>
"placeholder date/time" => qr(Date/time)
);
module_boilerplate_ok('lib/Backup/Omni.pm');
view all matches for this distribution
view release on metacpan or search on metacpan
nextchar|||
ninstr|||n
no_bareword_allowed|||
no_fh_allowed|||
no_op|||
not_a_number|||
nothreadhook||5.008000|
nuke_stacks|||
num_overflow|||n
oopsAV|||
oopsHV|||
# if !defined(__PATCHLEVEL_H_INCLUDED__) && !(defined(PATCHLEVEL) && defined(SUBVERSION))
# define PERL_PATCHLEVEL_H_IMPLICIT
# include <patchlevel.h>
# endif
# if !(defined(PERL_VERSION) || (defined(SUBVERSION) && defined(PATCHLEVEL)))
# include <could_not_find_Perl_patchlevel.h>
# endif
# ifndef PERL_REVISION
# define PERL_REVISION (5)
/* Replace: 1 */
# define PERL_VERSION PATCHLEVEL
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Badger/App.pm view on Meta::CPAN
$option->args($args, $self->{ app }, $self);
}
return $self;
# $self->debug("options schema for this app is: ", $schema);
# $self->not_implemented('in base class');
}
sub validate {
my $self = shift->prototype;
lib/Badger/App.pm view on Meta::CPAN
sub run {
my $self = shift;
$self->validate;
$self->not_implemented('in base class');
}
#-----------------------------------------------------------------------
# output generation
view all matches for this distribution
view release on metacpan or search on metacpan
lib/BalanceOfPower/Player/Role/Hitman.pm view on Meta::CPAN
}
sub check_targets
{
my $self = shift;
my $world = shift;
my @not_achieved = ();
for( @{$self->targets})
{
my $t = $_;
if($t->achieved($self))
{
$self->point;
$self->register_event("ACHIEVED TARGET: " . $t->name);
}
else
{
push @not_achieved, $t;
}
}
$self->targets(\@not_achieved);
}
sub click_targets
{
my $self = shift;
my $world = shift;
my @not_passed = ();
for( @{$self->targets})
{
my $t = $_;
if($t->click)
{
$self->register_event("TIME EXPIRED FOR TARGET: " . $t->name);
}
else
{
push @not_passed, $t;
}
}
$self->targets(\@not_passed);
}
sub point
{
my $self = shift;
$self->mission_points($self->mission_points + 1);
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Banal/Config.pm view on Meta::CPAN
has 'cfg_context' => (is => 'rw', lazy_build=>1); # If you do not set this, you can also provide it with the 'cfg_context' switch or the '-Banal_ConfigContext' option. Otherwise, it will take upon the value given by 'cfg_context_default'
has 'cfg_context_default' => (is => 'rw', lazy_build=>1); # You may wish to override this, if needed.
has 'default_options_for_banal_get_data' => (is => 'rw', default=>sub {
{
search_upwards_while_not_defined => 1,
use_path_semantics => 1,
path_separator => '/',
remove_extra_separators => 1,
remove_leading_separator => 0,
remove_trailing_separator => 1,
view all matches for this distribution
view release on metacpan or search on metacpan
t/boilerplate.t view on Meta::CPAN
use warnings FATAL => 'all';
use Test::More;
plan tests => 3;
sub not_in_file_ok {
my ($filename, %regex) = @_;
open( my $fh, '<', $filename )
or die "couldn't open $filename for reading: $!";
my %violated;
t/boilerplate.t view on Meta::CPAN
}
}
sub module_boilerplate_ok {
my ($module) = @_;
not_in_file_ok($module =>
'the great new $MODULENAME' => qr/ - The great new /,
'boilerplate description' => qr/Quick summary of what the module/,
'stub function definition' => qr/function[12]/,
);
}
TODO: {
local $TODO = "Need to replace the boilerplate text";
not_in_file_ok(README =>
"The README is used..." => qr/The README is used/,
"'version information here'" => qr/to provide version information/,
);
not_in_file_ok(Changes =>
"placeholder date/time" => qr(Date/time)
);
module_boilerplate_ok('lib/Banal/DateTime.pm');
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Banal/Utils/Data.pm view on Meta::CPAN
# Function, not a method!
#----------------------------------
sub banal_get_data {
my $args = {@_};
my $opts = $args->{options} || {};
my $search_upwards_while_not_defined = $opts->{search_upwards_while_not_defined};
# This is where the MAGIC happens. For a full list of options, see the function "normalize_data_root_and_keys()".
my ($root, @keys) = _normalize_data_root_and_keys (@_);
lib/Banal/Utils/Data.pm view on Meta::CPAN
while (scalar(@keys) >= 0) {
my $value= _banal_basic_get_data_via_key_list(data=>$root, keys=>[@keys, $key]);
return $value if defined($value);
# Continue searching upwards if we are allowed to do so. Return otherwise.
return unless $search_upwards_while_not_defined;
pop @keys;
}
return;
}
view all matches for this distribution
view release on metacpan or search on metacpan
t/boilerplate.t view on Meta::CPAN
use 5.006;
use strict;
use warnings;
use Test::More tests => 3;
sub not_in_file_ok {
my ($filename, %regex) = @_;
open( my $fh, '<', $filename )
or die "couldn't open $filename for reading: $!";
my %violated;
t/boilerplate.t view on Meta::CPAN
}
}
sub module_boilerplate_ok {
my ($module) = @_;
not_in_file_ok($module =>
'the great new $MODULENAME' => qr/ - The great new /,
'boilerplate description' => qr/Quick summary of what the module/,
'stub function definition' => qr/function[12]/,
);
}
TODO: {
local $TODO = "Need to replace the boilerplate text";
not_in_file_ok("README.md" =>
"The README is used..." => qr/The README is used/,
"'version information here'" => qr/to provide version information/,
);
not_in_file_ok(Changes =>
"placeholder date/time" => qr(Date/time)
);
module_boilerplate_ok('lib/Barcode/DataMatrix.pm');
view all matches for this distribution
view release on metacpan or search on metacpan
nextchar|||
ninstr|||
no_bareword_allowed|||
no_fh_allowed|||
no_op|||
not_a_number|||
nothreadhook||5.008000|
nuke_stacks|||
num_overflow|||n
oopsAV|||
oopsCV|||
!(defined(PATCHLEVEL) && defined(SUBVERSION))
#define PERL_PATCHLEVEL_H_IMPLICIT
#include <patchlevel.h>
#endif
#if !(defined(PERL_VERSION) || (defined(SUBVERSION) && defined(PATCHLEVEL)))
#include <could_not_find_Perl_patchlevel.h>
#endif
#ifndef PERL_REVISION
#define PERL_REVISION (5)
/* Replace: 1 */
#define PERL_VERSION PATCHLEVEL
view all matches for this distribution
view release on metacpan or search on metacpan
xt/boilerplate.t view on Meta::CPAN
use warnings;
use Test::More;
plan tests => 3;
sub not_in_file_ok {
my ($filename, %regex) = @_;
open( my $fh, '<', $filename )
or die "couldn't open $filename for reading: $!";
my %violated;
xt/boilerplate.t view on Meta::CPAN
}
}
sub module_boilerplate_ok {
my ($module) = @_;
not_in_file_ok($module =>
'the great new $MODULENAME' => qr/ - The great new /,
'boilerplate description' => qr/Quick summary of what the module/,
'stub function definition' => qr/function[12]/,
);
}
TODO: {
local $TODO = "Need to replace the boilerplate text";
not_in_file_ok(README =>
"The README is used..." => qr/The README is used/,
"'version information here'" => qr/to provide version information/,
);
not_in_file_ok(Changes =>
"placeholder date/time" => qr(Date/time)
);
module_boilerplate_ok('lib/Basic/Coercion/XS.pm');
view all matches for this distribution
view release on metacpan or search on metacpan
xt/boilerplate.t view on Meta::CPAN
use warnings;
use Test::More;
plan tests => 3;
sub not_in_file_ok {
my ($filename, %regex) = @_;
open( my $fh, '<', $filename )
or die "couldn't open $filename for reading: $!";
my %violated;
xt/boilerplate.t view on Meta::CPAN
}
}
sub module_boilerplate_ok {
my ($module) = @_;
not_in_file_ok($module =>
'the great new $MODULENAME' => qr/ - The great new /,
'boilerplate description' => qr/Quick summary of what the module/,
'stub function definition' => qr/function[12]/,
);
}
TODO: {
local $TODO = "Need to replace the boilerplate text";
not_in_file_ok(README =>
"The README is used..." => qr/The README is used/,
"'version information here'" => qr/to provide version information/,
);
not_in_file_ok(Changes =>
"placeholder date/time" => qr(Date/time)
);
module_boilerplate_ok('lib/Basic/Types/XS.pm');
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Basset/DB/Table.pm view on Meta::CPAN
'db_read_translation' => {},
'column_aliases' => {},
'references' => {},
'_cached_queries' => {},
'_cached_bindables' => {},
'attributes_not_to_create' => [],
'create_attributes' => 0,
'last_insert_query' => 'SELECT LAST_INSERT_ID()',
@_
);
lib/Basset/DB/Table.pm view on Meta::CPAN
%init
);
};
__PACKAGE__->add_attr('_attributes_to_create');
__PACKAGE__->add_attr('attributes_not_to_create');
__PACKAGE__->add_attr('create_attributes');
sub attributes_to_create {
my $self = shift;
if (@_) {
$self->_attributes_to_create($_[0]);
};
my %not = map {$_, 1} @{$self->attributes_not_to_create};
return grep {! $not{$_} } $self->alias_column($self->_attributes_to_create ? @{$self->_attributes_to_create} : $self->cols);
}
=pod
view all matches for this distribution
view release on metacpan or search on metacpan
etc/webservice.wsdl view on Meta::CPAN
<xs:simpleType name="Recstatus">
<xs:union memberTypes="tns:RecordingStatus" />
</xs:simpleType>
<xs:simpleType name="RecordingStatus">
<xs:restriction base="xs:string">
<xs:enumeration value="not_applicable" />
<xs:enumeration value="not_available" />
<xs:enumeration value="in_progress" />
<xs:enumeration value="available" />
</xs:restriction>
</xs:simpleType>
</xs:schema>
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Beagle/Cmd/Command/att.pm view on Meta::CPAN
$pid = $bh->info->id;
}
elsif ( $self->parent ) {
my @ret = resolve_entry( $self->parent, handle => current_handle() || undef );
unless (@ret) {
@ret = resolve_entry($pid) or die_entry_not_found($pid);
}
die_entry_ambiguous( $pid, @ret ) unless @ret == 1;
$pid = $ret[0]->{id};
$bh = $ret[0]->{handle};
}
view all matches for this distribution
view release on metacpan or search on metacpan
t/exception.t view on Meta::CPAN
like $@, qr{\QService 'foo' not found}, 'stringifies';
subtest 'not found with file shows file name' => sub {
my $path = $SHARE_DIR->child( 'file.yml' )->stringify;
my $wire = Beam::Wire->new( file => $path );
throws_ok { $wire->get( 'does_not_exist' ) } 'Beam::Wire::Exception::NotFound';
is $@->name, 'does_not_exist';
like $@, qr{\QService 'does_not_exist' not found in file '$path'}, 'stringifies';
};
};
subtest "extend a service that doesn't exist" => sub {
my $wire = Beam::Wire->new(
view all matches for this distribution
view release on metacpan or search on metacpan
beamer-reveal-example_files/libs/revealjs/plugin/highlight/highlight.esm.js view on Meta::CPAN
function e(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}function t(e){return e instanceof Map?e.clear=e.delete=e.set=function(){throw new Error("map is read-only")}:e instanceof Set&&(e.add=e.clear=e.delete...
/*!
* reveal.js plugin that adds syntax highlight support.
*/
const Rs={id:"highlight",HIGHLIGHT_STEP_DELIMITER:"|",HIGHLIGHT_LINE_DELIMITER:",",HIGHLIGHT_LINE_RANGE_DELIMITER:"-",hljs:fs,init:function(e){let t=e.getConfig().highlight||{};t.highlightOnLoad="boolean"!=typeof t.highlightOnLoad||t.highlightOnLoad,...
view all matches for this distribution
view release on metacpan or search on metacpan
examples/dashboard/lib/Beekeeper/Service/Dashboard/Worker.pm view on Meta::CPAN
$self->bind_remote_session( address => "frontend.dashboard-$username" );
return 1;
}
Beekeeper::JSONRPC::Error->request_not_authenticated;
}
sub service_stats {
my ($self, $params, $req) = @_;
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Bencher/Scenario/ManipulatingSymbolTable/CheckingSymbolExists.pm view on Meta::CPAN
our $VERSION = '0.001'; # VERSION
our $scenario = {
summary => 'Benchmark checking symbol exists',
participants => [
{name => 'PS:XS not exists', module => 'Package::Stash::XS', code_template => 'Package::Stash::XS->new("main")->has_symbol(q[$should_not_exist])'},
{name => 'PS:PP not exists', module => 'Package::Stash::PP', code_template => 'Package::Stash::PP->new("main")->has_symbol(q[$should_not_exist])'},
{name => 'PS:XS exists' , module => 'Package::Stash::XS', code_template => 'Package::Stash::XS->new("main")->has_symbol(q[$should_exist])'},
{name => 'PS:PP exists' , module => 'Package::Stash::PP', code_template => 'Package::Stash::PP->new("main")->has_symbol(q[$should_exist])'},
],
};
lib/Bencher/Scenario/ManipulatingSymbolTable/CheckingSymbolExists.pm view on Meta::CPAN
=item * PS:XS not exists (perl_code)
Code template:
Package::Stash::XS->new("main")->has_symbol(q[$should_not_exist])
=item * PS:PP not exists (perl_code)
Code template:
Package::Stash::PP->new("main")->has_symbol(q[$should_not_exist])
=item * PS:XS exists (perl_code)
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Benchmark/Command.pm view on Meta::CPAN
$count //= $ENV{BENCHMARK_COMMAND_COUNT} // 0;
$opts //= {};
$opts->{quiet} //= $ENV{BENCHMARK_COMMAND_QUIET} // $ENV{QUIET} // 0;
$opts->{ignore_exit_code} //= $ENV{BENCHMARK_COMMAND_IGNORE_EXIT_CODE} // 0;
$opts->{skip_not_found} //= $ENV{BENCHMARK_COMMAND_SKIP_NOT_FOUND} // 0;
ref($cmds) eq 'HASH' or die "cmds must be a hashref";
my $subs = {};
my $longest = 0;
lib/Benchmark/Command.pm view on Meta::CPAN
}
$per_cmd_opts->{env} //= {};
@cmd or die "cmds->{$cmd_name} must not be empty";
unless (which $cmd[0]) {
if ($per_cmd_opts->{skip_not_found} // $opts->{skip_not_found}) {
warn "cmds->{$cmd_name}: program '$cmd[0]' not found, ".
"skipped\n";
next COMMAND;
} else {
die "cmds->{$cmd_name}: program '$cmd[0]' not found";
lib/Benchmark/Command.pm view on Meta::CPAN
=item * ignore_exit_code => bool (default: from env BENCHMARK_COMMAND_IGNORE_EXIT_CODE or 0)
If set to true, will not die if exit code is non-zero.
=item * skip_not_found => bool (default: 0)
If set to true, will skip benchmarking commands where the program is not found.
The default bahavior is to die.
=back
lib/Benchmark/Command.pm view on Meta::CPAN
=item * ignore_exit_code => bool
This overrides global C<ignore_exit_code> option.
=item * skip_not_found => bool
This overrides global C<skip_not_found> option.
=back
=head1 ENVIRONMENT
lib/Benchmark/Command.pm view on Meta::CPAN
Set default for C<run()>'s C<quiet> option (takes precedence of C<QUIET>).
=head2 BENCHMARK_COMMAND_SKIP_NOT_FOUND => bool
Set default for C<run()>'s C<skip_not_found> option.
=head2 QUIET => bool
Set default for C<run()>'s C<quiet> option (if C<BENCHMARK_COMMAND_QUIET> is not
defined).
view all matches for this distribution
view release on metacpan or search on metacpan
data/t/attributes/clone_weak.t
data/t/attributes/default_class_role_types.t
data/t/attributes/default_undef.t
data/t/attributes/delegation_and_modifiers.t
data/t/attributes/delegation_arg_aliasing.t
data/t/attributes/delegation_target_not_loaded.t
data/t/attributes/illegal_options_for_inheritance.t
data/t/attributes/inherit_lazy_build.t
data/t/attributes/lazy_no_default.t
data/t/attributes/method_generation_rules.t
data/t/attributes/misc_attribute_coerce_lazy.t
view all matches for this distribution
view release on metacpan or search on metacpan
html/setops.report.html view on Meta::CPAN
<td>Yes</td>
<td></td>
<td></td>
</tr>
<tr>
<td>91: not_equal</td>
<td>Yes</td>
<td></td>
<td>Yes. !=</td>
<td></td>
<td></td>
html/setops.report.html view on Meta::CPAN
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>92: not_subset</td>
<td>Yes</td>
<td></td>
<td></td>
<td></td>
<td></td>
view all matches for this distribution