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


BGPmon-core-1

 view release on metacpan or  search on metacpan

bin/bgpmon_filter  view on Meta::CPAN

log_info("Starting TCP listening thread.");
$tcpListThread = threads->create('tcpListener');

if($dbToRefresh){
	log_info("Starting the timing thread for refreshing the database.");
	$timeThread = threads->create('timer');

	$timeThread->join();
	log_info("Timing thread stopped sucessfully.");
}

bin/bgpmon_filter  view on Meta::CPAN


	print "Parser thread finished.\n" unless !$debug
}


sub timer{
	while(!$exit){
		log_info("Critical Prefixes will be refreshed in $dbrefresh minutes.");
		Time::HiRes::sleep($dbrefresh*60); # will sleep for $dbrefresh minutes.
		log_info("Refreshing Critical Prefixes.");
		my $res = BGPmon::Filter::parse_database_config($dbListName); #calling the update

 view all matches for this distribution


BGPmon-core-2

 view release on metacpan or  search on metacpan

t/08-bgpmon-fetchdata-archive.t  view on Meta::CPAN

#Test for invalid start/end times
$ret = BGPmon::Fetch::Archive::connect_archive("data.ripe.ris.net/rrs13",
                                                1338552838,1338550000);
is($ret,1,'connect_archive - invalid interval');
is(BGPmon::Fetch::Archive::get_error_code("connect_archive"),406,
"connect_archive - invalid timerange");

$ret = BGPmon::Fetch::Archive::connect_archive("data.ripe.ris.net/rrs13",
                                                -1338552838,1338550000);
is($ret,1,'connect_archive: negative start time');
is(BGPmon::Fetch::Archive::get_error_code("connect_archive"),406,
"connect_archive - invalid timerange");

#Test for incorrectly-formatted start/end times
$ret = BGPmon::Fetch::Archive::connect_archive("data.ripe.ris.net/rrs13",
                                                "Mar 13 2011 12:34:56",
                                                "Apr 1 2011 11:11:11");
is($ret,1,'connect_archive: string time format');
is(BGPmon::Fetch::Archive::get_error_code("connect_archive"),406,
"connect_archive - invalid timerange");

#Test for illegal characters in argument
my $illegal = chr(0x90).chr(0x90).chr(0x90).chr(0x90).chr(0x90);
$ret = BGPmon::Fetch::Archive::connect_archive("data.ris.ripe.net/$illegal",
                                              1338508800,1340150400);

 view all matches for this distribution


BPM-Engine

 view release on metacpan or  search on metacpan

share/schemas/XPDL_2_1.xsd  view on Meta::CPAN

			<xsd:element ref="xpdl:ListType"/>
		</xsd:choice>
	</xsd:group>
	<xsd:element name="Deadline">
		<xsd:annotation>
			<xsd:documentation>BPMN provides a timer event to support this type of functionality and it is the preferred method for doing this.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexType>
			<xsd:sequence>
				<xsd:element name="DeadlineDuration" type="xpdl:ExpressionType" minOccurs="0"/>
				<xsd:element name="ExceptionName" minOccurs="0">

share/schemas/XPDL_2_1.xsd  view on Meta::CPAN

				</xsd:element>
				<xsd:element ref="xpdl:TriggerResultCancel" minOccurs="0"/>
				<xsd:element ref="xpdl:TriggerResultSignal" minOccurs="0"/>
				<xsd:element ref="xpdl:TriggerIntermediateMultiple" minOccurs="0">
					<xsd:annotation>
						<xsd:documentation>BPMN: if the TriggerType is Multiple then this must be present. Only valid for attached event. [EventDetail elements are incorrect.  They should be message, timer, error, conditional, signal, cancel.]</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
			</xsd:choice>
			<xsd:attribute name="Trigger" use="required">
				<xsd:simpleType>

 view all matches for this distribution


BPM-XPDL

 view release on metacpan or  search on metacpan

lib/BPM/XPDL/xsd/xpdl-2.1/bpmnxpdl_31.xsd  view on Meta::CPAN

			<xsd:element ref="xpdl:ListType"/>
		</xsd:choice>
	</xsd:group>
	<xsd:element name="Deadline">
		<xsd:annotation>
			<xsd:documentation>BPMN provides a timer event to support this type of functionality and it is the preferred method for doing this.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexType>
			<xsd:sequence>
				<xsd:element name="DeadlineDuration" type="xpdl:ExpressionType" minOccurs="0"/>
				<xsd:element name="ExceptionName" minOccurs="0">

lib/BPM/XPDL/xsd/xpdl-2.1/bpmnxpdl_31.xsd  view on Meta::CPAN

				</xsd:element>
				<xsd:element ref="xpdl:TriggerResultCancel" minOccurs="0"/>
				<xsd:element ref="xpdl:TriggerResultSignal" minOccurs="0"/>
				<xsd:element ref="xpdl:TriggerIntermediateMultiple" minOccurs="0">
					<xsd:annotation>
						<xsd:documentation>BPMN: if the TriggerType is Multiple then this must be present. Only valid for attached event. [EventDetail elements are incorrect.  They should be message, timer, error, conditional, signal, cancel.]</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
			</xsd:choice>
			<xsd:attribute name="Trigger" use="required">
				<xsd:simpleType>

 view all matches for this distribution


BSD-Itimer

 view release on metacpan or  search on metacpan

Itimer.pm  view on Meta::CPAN

# File:		Itimer.pm
# Author:	Daniel Hagerty, hag@linnaean.org
# Date:		Sun Jul  4 17:05:49 1999
# Description:	Perl interface to BSD derived {g,s}etitimer functions
#
# Copyright (c) 1999 Daniel Hagerty. All rights reserved. This program
# is free software; you can redistribute it and/or modify it under the
# same terms as Perl itself.
#
# $Id: Itimer.pm,v 1.1 1999/07/06 02:56:10 hag Exp $

package BSD::Itimer;

use strict;
use Carp;

use Exporter;

Itimer.pm  view on Meta::CPAN

@EXPORT = qw(
	     ITIMER_PROF
	     ITIMER_REAL
	     ITIMER_REALPROF
	     ITIMER_VIRTUAL
	     getitimer
	     setitimer
	     );

sub AUTOLOAD {
    # This AUTOLOAD is used to 'autoload' constants from the constant()
    # XS function.  If a constant is not found then control is passed

Itimer.pm  view on Meta::CPAN

	if ($! =~ /Invalid/) {
	    $AutoLoader::AUTOLOAD = $AUTOLOAD;
	    goto &AutoLoader::AUTOLOAD;
	}
	else {
		croak "Your vendor has not defined BSD::Itimer macro $constname";
	}
    }
    {
	no strict "refs";
	*$AUTOLOAD = sub { $val };
    }
    goto &$AUTOLOAD;
}

bootstrap BSD::Itimer $VERSION;

# Preloaded methods go here.

# Autoload methods go after =cut, and are processed by the autosplit program.

Itimer.pm  view on Meta::CPAN

__END__
# Below is the stub of documentation for your module. You better edit it!

=head1 NAME

BSD::Itimer - Perl extension for accessing interval timers

=head1 SYNOPSIS

  use BSD::Itimer;
  my($interval_sec, $interval_usec, $current_sec, $current_usec) =
    getitimer(ITIMER_REAL);
  my($interval_sec, $interval_usec, $current_sec, $current_usec) =
    setitimer(ITIMER_REAL, $interval_sec, $interval_usec,
	      $current_sec, $current_usec));

=head1 DESCRIPTION

This module provides access to the interval timers many operating
systems provide from perl.  Interval timers conceptually have
microsecond resolution (hardware typically limits actual granularity),
with the ability to reschedule the timer on a fixed repeating
interval.  There are usually several timers available with a different
concept of "time".

=head1 OVERVIEW

The interval timer is accessed by two exported functions, getitimer
and setitimer.  Most Unix systems have three interval timers available
for program use.  The current BSD::Itimer implementation knows about
the following timers, where implemented:

B<ITIMER_REAL> - This timer decrements in real time.  A SIGALRM is
delivered when this timer expires.

B<ITIMER_VIRTUAL> - This timer decrements in real time when the
calling process is running.  Delivers SIGVTALRM when it expires.

B<ITIMER_PROF> - This timer runs when the calling process is running,
and when the operating system is operating on behalf of the calling
process.  A SIGPROF is delivered when the timer expires.

B<ITIMER_REALPROF> - This timer is available under Solaris only.
Consult the setitimer(2) manual page for more information.

Interval timers are represented as four item integer lists.  The
first two integers comprise the second and microsecond parts of the
timer's repeat interval.  The second pair represent the second and
microsecond parts of the current timer value.

The getitimer function expects a single argument naming the timer to
fetch.  It returns a four element list, or an empty list on failure.

The setitimer function expects a argument naming the timer to set, and
a four element list representing the interval.  It returns the
previous setting of the timer, or an empty list on failure.  Setting a
timer's repeat interval to 0 will cancel the timer after its next
delivery.  Setting it's current value to 0 will immediately cancel the
timer.

=head1 SEE ALSO

perl(1), setitimer(2)

=head1 AUTHOR

Daniel Hagerty <hag@linnaean.org>

 view all matches for this distribution


BSD-Resource

 view release on metacpan or  search on metacpan

Resource.xs  view on Meta::CPAN

/* Some old Solarises have no RUSAGE_* defined in <sys/resource.h>.
 * There is <sys/rusage.h> which has but this file is very non-standard.
 * More the fun, the file itself warns will not be there for long. */
#       define part_of_sec tv_nsec
#   endif
/* Solaris uses timerstruc_t in struct rusage. According to the <sys/time.h>
 * in old Solarises tv_nsec in the timerstruc_t is nanoseconds (and the name
 * also supports that theory) BUT getrusage() seems after all to tick
 * microseconds, not nano. */
#   define part_in_sec 0.000001
#
/* Newer Solarises (5.5 onwards) have much better support for rusage-kinda

 view all matches for this distribution


Beagle

 view release on metacpan or  search on metacpan

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

 *
 * Date: Thu Jun 30 14:16:56 2011 -0400
 */
(function(a,b){function cv(a){return f.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function cs(a){if(!cg[a]){var b=c.body,d=f("<"+a+">").appendTo(b),e=d.css("display");d.remove();if(e==="none"||e===""){ch||(ch=c.createElement("ifram...
shift(),i.sort());if(!!e&&!f.event.customEvent[h]||!!f.event.global[h]){c=typeof c=="object"?c[f.expando]?c:new f.Event(h,c):new f.Event(h),c.type=h,c.exclusive=j,c.namespace=i.join("."),c.namespace_re=new RegExp("(^|\\.)"+i.join("\\.(?:.*\\.)?")+"(\...
)}return this.pushStack(d,a,e.selector)}}),f.extend({clone:function(a,b,c){var d=a.cloneNode(!0),e,g,h;if((!f.support.noCloneEvent||!f.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!f.isXMLDoc(a)){bi(a,d),e=bj(a),g=bj(d);for(h=0;e[h];++...

 view all matches for this distribution


Beekeeper

 view release on metacpan or  search on metacpan

examples/chat/flood.pl  view on Meta::CPAN

    }

    my $wait = 1 - $took;
    $cv = AnyEvent->condvar;
    AnyEvent->now_update;
    my $tmr = AnyEvent->timer( after => $wait, cb => $cv);
    $cv->recv;
}

1;

 view all matches for this distribution


Bencher-Scenario-AcmePERLANCARTestPerformance

 view release on metacpan or  search on metacpan

lib/Bencher/ScenarioR/AcmePERLANCARTestPerformance.pm  view on Meta::CPAN

## no critic
package Bencher::ScenarioR::AcmePERLANCARTestPerformance;

our $VERSION = "0.060"; # VERSION

our $results = do{my$var=[[200,"OK",[{_name=>"",_succinct_name=>"",dataset=>100,ds_tags=>"",errors=>3.3e-09,modver=>0.06,p_tags=>"",participant=>"Acme::PERLANCAR::Test::Performance::primes",pct_faster_vs_slowest=>0,pct_slower_vs_fastest=>0,perl=>"per...

1;
# ABSTRACT: Benchmark Acme::PERLANCAR::Test::Performance

=head1 DESCRIPTION

 view all matches for this distribution


Bencher-Scenario-Allocations

 view release on metacpan or  search on metacpan

lib/Bencher/ScenarioR/Allocations.pm  view on Meta::CPAN

## no critic
package Bencher::ScenarioR::Allocations;

our $VERSION = "0.040"; # VERSION

our $results = [[200,"OK",[{_name=>"participant=1k-hash100",_succinct_name=>"1k-hash100",errors=>6.8e-06,participant=>"1k-hash100",pct_faster_vs_slowest=>0,pct_slower_vs_fastest=>89.0440384612721,rate=>150,samples=>20,time=>6.5},{_name=>"participant=...

1;
# ABSTRACT: Benchmark allocations

=head1 DESCRIPTION

 view all matches for this distribution


Bencher-Scenario-App-Sorted

 view release on metacpan or  search on metacpan

lib/Bencher/ScenarioR/App/Sorted.pm  view on Meta::CPAN

## no critic
package Bencher::ScenarioR::App::Sorted;

our $VERSION = 0.002; # VERSION

our $results = [[200,"OK",[{_name=>"dataset=100k-sorted participant=sorted",_succinct_name=>"sorted 100k-sorted",dataset=>"100k-sorted",errors=>0.00023,participant=>"sorted",pct_faster_vs_slowest=>0,pct_slower_vs_fastest=>1.1,rate=>4.8,samples=>8,tim...

1;
# ABSTRACT: Benchmark sorted vs is-sorted

=head1 DESCRIPTION

 view all matches for this distribution


Bencher-Scenario-AppSorted

 view release on metacpan or  search on metacpan

lib/Bencher/ScenarioR/AppSorted.pm  view on Meta::CPAN

## no critic
package Bencher::ScenarioR::AppSorted;

our $VERSION = 0.002; # VERSION

our $results = [[200,"OK",[{_name=>"dataset=100k-sorted participant=sorted",_succinct_name=>"sorted 100k-sorted",dataset=>"100k-sorted",errors=>0.0011,participant=>"sorted",pct_faster_vs_slowest=>0,pct_slower_vs_fastest=>0.904761904761905,rate=>8.1,s...

1;
# ABSTRACT: Benchmark sorted vs is-sorted

=head1 DESCRIPTION

 view all matches for this distribution


Bencher-Scenario-Array-Sample-Partition

 view release on metacpan or  search on metacpan

lib/Bencher/ScenarioR/Array/Sample/Partition.pm  view on Meta::CPAN

## no critic
package Bencher::ScenarioR::Array::Sample::Partition;

our $VERSION = 0.002; # VERSION

our $results = [[200,"OK",[{_name=>"dataset=500/1000",_succinct_name=>"500/1000",dataset=>"500/1000",errors=>2.7e-07,pct_faster_vs_slowest=>0,pct_slower_vs_fastest=>152.225806451613,rate=>5200,samples=>20,time=>190},{_name=>"dataset=100/1000",_succin...

1;
# ABSTRACT: Benchmark Array::Sample::Partition hash

=head1 DESCRIPTION

 view all matches for this distribution


Bencher-Scenario-ArraySamplePartition

 view release on metacpan or  search on metacpan

lib/Bencher/ScenarioR/ArraySamplePartition.pm  view on Meta::CPAN

## no critic
package Bencher::ScenarioR::ArraySamplePartition;

our $VERSION = 0.002; # VERSION

our $results = [[200,"OK",[{_name=>"dataset=500/1000",_succinct_name=>"500/1000",dataset=>"500/1000",errors=>5.3e-08,pct_faster_vs_slowest=>0,pct_slower_vs_fastest=>149.649350649351,rate=>8650,samples=>20,time=>116},{_name=>"dataset=100/1000",_succin...

1;
# ABSTRACT: Benchmark Array::Sample::Partition hash

=head1 DESCRIPTION

 view all matches for this distribution


Bencher-Scenario-ArrayVsHashBuilding

 view release on metacpan or  search on metacpan

lib/Bencher/ScenarioR/ArrayVsHashBuilding.pm  view on Meta::CPAN

## no critic
package Bencher::ScenarioR::ArrayVsHashBuilding;

our $VERSION = 0.002; # VERSION

our $results = [[200,"OK",[{_name=>"dataset=elems=10000 participant=hash",_succinct_name=>"hash elems=10000",dataset=>"elems=10000",errors=>1.4e-06,participant=>"hash",pct_faster_vs_slowest=>0,pct_slower_vs_fastest=>6195.37750238322,rate=>740,samples...

1;
# ABSTRACT: Benchmark building array vs hash

=head1 DESCRIPTION

 view all matches for this distribution


Bencher-Scenario-BagComparison

 view release on metacpan or  search on metacpan

lib/Bencher/ScenarioR/BagComparison.pm  view on Meta::CPAN

## no critic
package Bencher::ScenarioR::BagComparison;

our $VERSION = 0.005; # VERSION

our $results = [[200,"OK",[{_name=>"dataset=elems=200num",_succinct_name=>"elems=200num",dataset=>"elems=200num",errors=>4.7e-05,pct_faster_vs_slowest=>0,pct_slower_vs_fastest=>221.58064516129,rate=>14.5,samples=>20,time=>69},{_name=>"dataset=elems=1...

1;
# ABSTRACT: Benchmark bag comparison

=head1 DESCRIPTION

 view all matches for this distribution


Bencher-Scenario-BigFloat

 view release on metacpan or  search on metacpan

lib/Bencher/ScenarioR/BigFloat.pm  view on Meta::CPAN

                                                                                "sse4_1",
                                                                                "sse4_2",
                                                                                "x2apic",
                                                                                "movbe",
                                                                                "popcnt",
                                                                                "tsc_deadline_timer",
                                                                                "aes",
                                                                                "xsave",
                                                                                "avx",
                                                                                "f16c",
                                                                                "rdrand",

lib/Bencher/ScenarioR/BigFloat.pm  view on Meta::CPAN

                                                                                "sse4_1",
                                                                                "sse4_2",
                                                                                "x2apic",
                                                                                "movbe",
                                                                                "popcnt",
                                                                                "tsc_deadline_timer",
                                                                                "aes",
                                                                                "xsave",
                                                                                "avx",
                                                                                "f16c",
                                                                                "rdrand",

lib/Bencher/ScenarioR/BigFloat.pm  view on Meta::CPAN

                                                                                "sse4_1",
                                                                                "sse4_2",
                                                                                "x2apic",
                                                                                "movbe",
                                                                                "popcnt",
                                                                                "tsc_deadline_timer",
                                                                                "aes",
                                                                                "xsave",
                                                                                "avx",
                                                                                "f16c",
                                                                                "rdrand",

lib/Bencher/ScenarioR/BigFloat.pm  view on Meta::CPAN

                                                                                "sse4_1",
                                                                                "sse4_2",
                                                                                "x2apic",
                                                                                "movbe",
                                                                                "popcnt",
                                                                                "tsc_deadline_timer",
                                                                                "aes",
                                                                                "xsave",
                                                                                "avx",
                                                                                "f16c",
                                                                                "rdrand",

 view all matches for this distribution


Bencher-Scenario-BigInt

 view release on metacpan or  search on metacpan

lib/Bencher/ScenarioR/BigInt.pm  view on Meta::CPAN

                                                                                "sse4_1",
                                                                                "sse4_2",
                                                                                "x2apic",
                                                                                "movbe",
                                                                                "popcnt",
                                                                                "tsc_deadline_timer",
                                                                                "aes",
                                                                                "xsave",
                                                                                "avx",
                                                                                "f16c",
                                                                                "rdrand",

lib/Bencher/ScenarioR/BigInt.pm  view on Meta::CPAN

                                                                                "sse4_1",
                                                                                "sse4_2",
                                                                                "x2apic",
                                                                                "movbe",
                                                                                "popcnt",
                                                                                "tsc_deadline_timer",
                                                                                "aes",
                                                                                "xsave",
                                                                                "avx",
                                                                                "f16c",
                                                                                "rdrand",

lib/Bencher/ScenarioR/BigInt.pm  view on Meta::CPAN

                                                                                "sse4_1",
                                                                                "sse4_2",
                                                                                "x2apic",
                                                                                "movbe",
                                                                                "popcnt",
                                                                                "tsc_deadline_timer",
                                                                                "aes",
                                                                                "xsave",
                                                                                "avx",
                                                                                "f16c",
                                                                                "rdrand",

lib/Bencher/ScenarioR/BigInt.pm  view on Meta::CPAN

                                                                                "sse4_1",
                                                                                "sse4_2",
                                                                                "x2apic",
                                                                                "movbe",
                                                                                "popcnt",
                                                                                "tsc_deadline_timer",
                                                                                "aes",
                                                                                "xsave",
                                                                                "avx",
                                                                                "f16c",
                                                                                "rdrand",

 view all matches for this distribution


Bencher-Scenario-BinarySearch-File

 view release on metacpan or  search on metacpan

lib/Bencher/ScenarioR/BinarySearch/File.pm  view on Meta::CPAN

## no critic
package Bencher::ScenarioR::BinarySearch::File;

our $VERSION = 0.001; # VERSION

our $results = [[200,"OK",[{errors=>1.8e-05,participant=>"File::SortedSeek-1k-num",pct_faster_vs_slowest=>0,pct_slower_vs_fastest=>0.68789077510756,rate=>3000,samples=>20,time=>400},{errors=>1.4e-05,participant=>"File::SortedSeek-10k-num",pct_faster_...

1;
# ABSTRACT: Benchmark binary searching sorted lines from a file

=head1 DESCRIPTION

 view all matches for this distribution


Bencher-Scenario-BinarySearch

 view release on metacpan or  search on metacpan

lib/Bencher/ScenarioR/BinarySearch.pm  view on Meta::CPAN

## no critic
package Bencher::ScenarioR::BinarySearch;

our $VERSION = 0.003; # VERSION

our $results = [[200,"OK",[{_name=>"participant=List::BinarySearch::PP-10k-str-tie",_succinct_name=>"List::BinarySearch::PP-10k-str-tie",errors=>1.1e-07,participant=>"List::BinarySearch::PP-10k-str-tie",pct_faster_vs_slowest=>0,pct_slower_vs_fastest=...

1;
# ABSTRACT: Benchmark binary searching Perl arrays

=head1 DESCRIPTION

 view all matches for this distribution


Bencher-Scenario-Bless

 view release on metacpan or  search on metacpan

lib/Bencher/ScenarioR/Bless.pm  view on Meta::CPAN

                                                                                "sse4_1",
                                                                                "sse4_2",
                                                                                "x2apic",
                                                                                "movbe",
                                                                                "popcnt",
                                                                                "tsc_deadline_timer",
                                                                                "aes",
                                                                                "xsave",
                                                                                "avx",
                                                                                "f16c",
                                                                                "rdrand",

lib/Bencher/ScenarioR/Bless.pm  view on Meta::CPAN

                                                                                "sse4_1",
                                                                                "sse4_2",
                                                                                "x2apic",
                                                                                "movbe",
                                                                                "popcnt",
                                                                                "tsc_deadline_timer",
                                                                                "aes",
                                                                                "xsave",
                                                                                "avx",
                                                                                "f16c",
                                                                                "rdrand",

lib/Bencher/ScenarioR/Bless.pm  view on Meta::CPAN

                                                                                "sse4_1",
                                                                                "sse4_2",
                                                                                "x2apic",
                                                                                "movbe",
                                                                                "popcnt",
                                                                                "tsc_deadline_timer",
                                                                                "aes",
                                                                                "xsave",
                                                                                "avx",
                                                                                "f16c",
                                                                                "rdrand",

lib/Bencher/ScenarioR/Bless.pm  view on Meta::CPAN

                                                                                "sse4_1",
                                                                                "sse4_2",
                                                                                "x2apic",
                                                                                "movbe",
                                                                                "popcnt",
                                                                                "tsc_deadline_timer",
                                                                                "aes",
                                                                                "xsave",
                                                                                "avx",
                                                                                "f16c",
                                                                                "rdrand",

 view all matches for this distribution


Bencher-Scenario-CPANMetaValidation

 view release on metacpan or  search on metacpan

lib/Bencher/ScenarioR/CPANMetaValidation.pm  view on Meta::CPAN

                                                                                "sse4_1",
                                                                                "sse4_2",
                                                                                "x2apic",
                                                                                "movbe",
                                                                                "popcnt",
                                                                                "tsc_deadline_timer",
                                                                                "aes",
                                                                                "xsave",
                                                                                "avx",
                                                                                "f16c",
                                                                                "rdrand",

lib/Bencher/ScenarioR/CPANMetaValidation.pm  view on Meta::CPAN

                                                                                "sse4_1",
                                                                                "sse4_2",
                                                                                "x2apic",
                                                                                "movbe",
                                                                                "popcnt",
                                                                                "tsc_deadline_timer",
                                                                                "aes",
                                                                                "xsave",
                                                                                "avx",
                                                                                "f16c",
                                                                                "rdrand",

lib/Bencher/ScenarioR/CPANMetaValidation.pm  view on Meta::CPAN

                                                                                "sse4_1",
                                                                                "sse4_2",
                                                                                "x2apic",
                                                                                "movbe",
                                                                                "popcnt",
                                                                                "tsc_deadline_timer",
                                                                                "aes",
                                                                                "xsave",
                                                                                "avx",
                                                                                "f16c",
                                                                                "rdrand",

lib/Bencher/ScenarioR/CPANMetaValidation.pm  view on Meta::CPAN

                                                                                "sse4_1",
                                                                                "sse4_2",
                                                                                "x2apic",
                                                                                "movbe",
                                                                                "popcnt",
                                                                                "tsc_deadline_timer",
                                                                                "aes",
                                                                                "xsave",
                                                                                "avx",
                                                                                "f16c",
                                                                                "rdrand",

 view all matches for this distribution


Bencher-Scenario-CSVParsingModules

 view release on metacpan or  search on metacpan

lib/Bencher/ScenarioR/CSVParsingModules.pm  view on Meta::CPAN

## no critic
package Bencher::ScenarioR::CSVParsingModules;

our $VERSION = 0.002; # VERSION

our $results = [[200,"OK",[{_name=>"participant=Text::CSV_PP",_succinct_name=>"Text::CSV_PP",errors=>2e-05,participant=>"Text::CSV_PP",pct_faster_vs_slowest=>0,pct_slower_vs_fastest=>20.8571428571429,rate=>32.7,samples=>20,time=>30.6},{_name=>"partic...

1;
# ABSTRACT: Benchmark CSV parsing modules

=head1 DESCRIPTION

 view all matches for this distribution


Bencher-Scenario-CallStack

 view release on metacpan or  search on metacpan

lib/Bencher/ScenarioR/CallStack.pm  view on Meta::CPAN

## no critic
package Bencher::ScenarioR::CallStack;

our $VERSION = 0.001; # VERSION

our $results = [[200,"OK",[{errors=>4.6e-07,participant=>"Carp::ret_backtrace",rate=>2150,samples=>22,time=>465,vs_slowest=>1},{errors=>1e-07,participant=>"Devel::Caller::Util::callers with-args",rate=>18000,samples=>22,time=>55,vs_slowest=>8.5},{err...

1;
# ABSTRACT: Benchmark different methods to produce call stack

=head1 DESCRIPTION

 view all matches for this distribution


Bencher-Scenario-Caller

 view release on metacpan or  search on metacpan

lib/Bencher/ScenarioR/Caller.pm  view on Meta::CPAN

## no critic
package Bencher::ScenarioR::Caller;

our $VERSION = 0.001; # VERSION

our $results = [[200,"OK",[{errors=>9.8e-09,participant=>"Devel::Caller::Util::caller(2)",rate=>100000,samples=>21,time=>9.7,vs_slowest=>1},{errors=>1e-08,participant=>"Devel::Caller::Util::caller(1)",rate=>150000,samples=>20,time=>6.8,vs_slowest=>1....

1;
# ABSTRACT: Benchmark some variations of caller()

=head1 DESCRIPTION

 view all matches for this distribution


Bencher-Scenario-CmdLineParsingModules

 view release on metacpan or  search on metacpan

lib/Bencher/ScenarioR/CmdLineParsingModules.pm  view on Meta::CPAN

## no critic
package Bencher::ScenarioR::CmdLineParsingModules;

our $VERSION = 0.081; # VERSION

our $results = [[200,"OK",[{_name=>"dataset=4args participant=Parse::CommandLine::parse_command_line",_succinct_name=>"PC:p_c_l 4args",dataset=>"4args",errors=>1.1e-08,participant=>"Parse::CommandLine::parse_command_line",pct_faster_vs_slowest=>0,pct...

1;
# ABSTRACT: Benchmark command-line parsing modules

=head1 DESCRIPTION

 view all matches for this distribution


Bencher-Scenario-Color-RGB-Util

 view release on metacpan or  search on metacpan

lib/Bencher/ScenarioR/Color/RGB/Util.pm  view on Meta::CPAN

## no critic
package Bencher::ScenarioR::Color::RGB::Util;

our $VERSION = 0.002; # VERSION

our $results = do{my$var=[[200,"OK",[{_name=>"participant=Color::RGB::Util::rand_rgb_color",_succinct_name=>"Color::RGB::Util::rand_rgb_color",env=>"PERL5OPT=-Iarchive/Color-RGB-Util-0.590/lib",errors=>6.7e-09,participant=>"Color::RGB::Util::rand_rgb...

1;
# ABSTRACT: Benchmark Color::RGB::Util

=head1 DESCRIPTION

 view all matches for this distribution


Bencher-Scenario-ColorRGBUtil

 view release on metacpan or  search on metacpan

lib/Bencher/ScenarioR/ColorRGBUtil.pm  view on Meta::CPAN

                                                                                "pcid",
                                                                                "sse4_1",
                                                                                "sse4_2",
                                                                                "x2apic",
                                                                                "popcnt",
                                                                                "tsc_deadline_timer",
                                                                                "aes",
                                                                                "xsave",
                                                                                "avx",
                                                                                "lahf_lm",
                                                                                "epb",

lib/Bencher/ScenarioR/ColorRGBUtil.pm  view on Meta::CPAN

                                                                                "pcid",
                                                                                "sse4_1",
                                                                                "sse4_2",
                                                                                "x2apic",
                                                                                "popcnt",
                                                                                "tsc_deadline_timer",
                                                                                "aes",
                                                                                "xsave",
                                                                                "avx",
                                                                                "lahf_lm",
                                                                                "epb",

lib/Bencher/ScenarioR/ColorRGBUtil.pm  view on Meta::CPAN

                                                                                "pcid",
                                                                                "sse4_1",
                                                                                "sse4_2",
                                                                                "x2apic",
                                                                                "popcnt",
                                                                                "tsc_deadline_timer",
                                                                                "aes",
                                                                                "xsave",
                                                                                "avx",
                                                                                "lahf_lm",
                                                                                "epb",

lib/Bencher/ScenarioR/ColorRGBUtil.pm  view on Meta::CPAN

                                                                                "pcid",
                                                                                "sse4_1",
                                                                                "sse4_2",
                                                                                "x2apic",
                                                                                "popcnt",
                                                                                "tsc_deadline_timer",
                                                                                "aes",
                                                                                "xsave",
                                                                                "avx",
                                                                                "lahf_lm",
                                                                                "epb",

 view all matches for this distribution


Bencher-Scenario-ComparingArrays

 view release on metacpan or  search on metacpan

lib/Bencher/ScenarioR/ComparingArrays.pm  view on Meta::CPAN

## no critic
package Bencher::ScenarioR::ComparingArrays;

our $VERSION = 0.002; # VERSION

our $results = [[200,"OK",[{errors=>6.7e-09,p_tags=>"int, str",participant=>"Array::Compare",rate=>44800,samples=>20,time=>22.3,vs_slowest=>1},{errors=>1e-08,p_tags=>"int, str",participant=>"Data::Cmp::cmp_data",rate=>88400,samples=>34,time=>11.3,vs_...

1;
# ABSTRACT: Modules that compare arrays

=head1 DESCRIPTION

 view all matches for this distribution


Bencher-Scenario-CryptDicewareWordlistModules

 view release on metacpan or  search on metacpan

lib/Bencher/ScenarioR/CryptDicewareWordlistModules.pm  view on Meta::CPAN

                                                                                "sse4_1",
                                                                                "sse4_2",
                                                                                "x2apic",
                                                                                "movbe",
                                                                                "popcnt",
                                                                                "tsc_deadline_timer",
                                                                                "aes",
                                                                                "xsave",
                                                                                "avx",
                                                                                "f16c",
                                                                                "rdrand",

lib/Bencher/ScenarioR/CryptDicewareWordlistModules.pm  view on Meta::CPAN

                                                                                "sse4_1",
                                                                                "sse4_2",
                                                                                "x2apic",
                                                                                "movbe",
                                                                                "popcnt",
                                                                                "tsc_deadline_timer",
                                                                                "aes",
                                                                                "xsave",
                                                                                "avx",
                                                                                "f16c",
                                                                                "rdrand",

lib/Bencher/ScenarioR/CryptDicewareWordlistModules.pm  view on Meta::CPAN

                                                                                "sse4_1",
                                                                                "sse4_2",
                                                                                "x2apic",
                                                                                "movbe",
                                                                                "popcnt",
                                                                                "tsc_deadline_timer",
                                                                                "aes",
                                                                                "xsave",
                                                                                "avx",
                                                                                "f16c",
                                                                                "rdrand",

lib/Bencher/ScenarioR/CryptDicewareWordlistModules.pm  view on Meta::CPAN

                                                                                "sse4_1",
                                                                                "sse4_2",
                                                                                "x2apic",
                                                                                "movbe",
                                                                                "popcnt",
                                                                                "tsc_deadline_timer",
                                                                                "aes",
                                                                                "xsave",
                                                                                "avx",
                                                                                "f16c",
                                                                                "rdrand",

 view all matches for this distribution


( run in 0.936 second using v1.01-cache-2.11-cpan-49f99fa48dc )