← Index
NYTProf Performance Profile   « block view • line view • sub view »
For xt/tapper-mcp-scheduler-with-db-longrun.t
  Run on Tue May 22 17:18:39 2012
Reported on Tue May 22 17:22:50 2012

Filename/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/lib/site_perl/5.12.3/x86_64-linux/Moose/Meta/Instance.pm
StatementsExecuted 17 statements in 146µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
1119µs9µsMoose::Meta::Instance::::BEGIN@3Moose::Meta::Instance::BEGIN@3
1119µs13µsMoose::Meta::Instance::::BEGIN@10Moose::Meta::Instance::BEGIN@10
1118µs24µsMoose::Meta::Instance::::BEGIN@11Moose::Meta::Instance::BEGIN@11
1117µs86µsMoose::Meta::Instance::::BEGIN@15Moose::Meta::Instance::BEGIN@15
1115µs5µsMoose::Meta::Instance::::BEGIN@13Moose::Meta::Instance::BEGIN@13
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1
2package Moose::Meta::Instance;
3
# spent 9µs within Moose::Meta::Instance::BEGIN@3 which was called: # once (9µs+0s) by Moose::BEGIN@32 at line 5
BEGIN {
414µs $Moose::Meta::Instance::AUTHORITY = 'cpan:STEVAN';
5124µs19µs}
# spent 9µs making 1 call to Moose::Meta::Instance::BEGIN@3
6{
72900ns $Moose::Meta::Instance::VERSION = '2.0602';
8}
9
10318µs218µs
# spent 13µs (9+5) within Moose::Meta::Instance::BEGIN@10 which was called: # once (9µs+5µs) by Moose::BEGIN@32 at line 10
use strict;
# spent 13µs making 1 call to Moose::Meta::Instance::BEGIN@10 # spent 5µs making 1 call to strict::import
11318µs240µs
# spent 24µs (8+16) within Moose::Meta::Instance::BEGIN@11 which was called: # once (8µs+16µs) by Moose::BEGIN@32 at line 11
use warnings;
# spent 24µs making 1 call to Moose::Meta::Instance::BEGIN@11 # spent 16µs making 1 call to warnings::import
12
13319µs15µs
# spent 5µs within Moose::Meta::Instance::BEGIN@13 which was called: # once (5µs+0s) by Moose::BEGIN@32 at line 13
use Class::MOP::MiniTrait;
# spent 5µs making 1 call to Moose::Meta::Instance::BEGIN@13
14
15350µs2165µs
# spent 86µs (7+79) within Moose::Meta::Instance::BEGIN@15 which was called: # once (7µs+79µs) by Moose::BEGIN@32 at line 15
use base "Class::MOP::Instance";
# spent 86µs making 1 call to Moose::Meta::Instance::BEGIN@15 # spent 79µs making 1 call to base::import
16
1713µs11.32msClass::MOP::MiniTrait::apply(__PACKAGE__, 'Moose::Meta::Object::Trait');
# spent 1.32ms making 1 call to Class::MOP::MiniTrait::apply
18
1918µs1;
20
21# ABSTRACT: The Moose Instance metaclass
22
- -
25=pod
26
27=head1 NAME
28
29Moose::Meta::Instance - The Moose Instance metaclass
30
31=head1 VERSION
32
33version 2.0602
34
35=head1 SYNOPSIS
36
37 # nothing to see here
38
39=head1 DESCRIPTION
40
41This class provides the low level data storage abstractions for
42attributes.
43
44Using this API directly in your own code violates encapsulation, and
45we recommend that you use the appropriate APIs in
46L<Moose::Meta::Class> and L<Moose::Meta::Attribute> instead. Those
47APIs in turn call the methods in this class as appropriate.
48
49At present, this is an empty subclass of L<Class::MOP::Instance>, so
50you should see that class for all API details.
51
52=head1 INHERITANCE
53
54C<Moose::Meta::Instance> is a subclass of L<Class::MOP::Instance>.
55
56=head1 BUGS
57
58See L<Moose/BUGS> for details on reporting bugs.
59
60=head1 AUTHOR
61
62Moose is maintained by the Moose Cabal, along with the help of many contributors. See L<Moose/CABAL> and L<Moose/CONTRIBUTORS> for details.
63
64=head1 COPYRIGHT AND LICENSE
65
66This software is copyright (c) 2012 by Infinity Interactive, Inc..
67
68This is free software; you can redistribute it and/or modify it under
69the same terms as the Perl 5 programming language system itself.
70
71=cut
72
73
74__END__