← 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:37 2012

Filename/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/lib/site_perl/5.12.3/Tapper/Schema/TestrunDB/Result/User.pm
StatementsExecuted 17 statements in 214µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11111µs11µsTapper::Schema::TestrunDB::Result::User::::BEGIN@2Tapper::Schema::TestrunDB::Result::User::BEGIN@2
11110µs14µsTapper::Schema::TestrunDB::Result::User::::BEGIN@9Tapper::Schema::TestrunDB::Result::User::BEGIN@9
1119µs25µsTapper::Schema::TestrunDB::Result::User::::BEGIN@10Tapper::Schema::TestrunDB::Result::User::BEGIN@10
1118µs43µsTapper::Schema::TestrunDB::Result::User::::BEGIN@12Tapper::Schema::TestrunDB::Result::User::BEGIN@12
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package Tapper::Schema::TestrunDB::Result::User;
2
# spent 11µs within Tapper::Schema::TestrunDB::Result::User::BEGIN@2 which was called: # once (11µs+0s) by Class::C3::Componentised::ensure_class_loaded at line 4
BEGIN {
315µs $Tapper::Schema::TestrunDB::Result::User::AUTHORITY = 'cpan:AMD';
4126µs111µs}
5{
621µs $Tapper::Schema::TestrunDB::Result::User::VERSION = '0.001';
7}
8
9319µs219µs
# spent 14µs (10+5) within Tapper::Schema::TestrunDB::Result::User::BEGIN@9 which was called: # once (10µs+5µs) by Class::C3::Componentised::ensure_class_loaded at line 9
use strict;
# spent 14µs making 1 call to Tapper::Schema::TestrunDB::Result::User::BEGIN@9 # spent 5µs making 1 call to strict::import
10320µs242µs
# spent 25µs (9+16) within Tapper::Schema::TestrunDB::Result::User::BEGIN@10 which was called: # once (9µs+16µs) by Class::C3::Componentised::ensure_class_loaded at line 10
use warnings;
# spent 25µs making 1 call to Tapper::Schema::TestrunDB::Result::User::BEGIN@10 # spent 16µs making 1 call to warnings::import
11
12372µs278µs
# spent 43µs (8+35) within Tapper::Schema::TestrunDB::Result::User::BEGIN@12 which was called: # once (8µs+35µs) by Class::C3::Componentised::ensure_class_loaded at line 12
use parent 'DBIx::Class';
# spent 43µs making 1 call to Tapper::Schema::TestrunDB::Result::User::BEGIN@12 # spent 35µs making 1 call to parent::import
13
1419µs1225µs__PACKAGE__->load_components("Core");
# spent 225µs making 1 call to Class::C3::Componentised::load_components
15116µs1421µs__PACKAGE__->table("user");
# spent 421µs making 1 call to DBIx::Class::ResultSourceProxy::Table::table
16120µs1627µs__PACKAGE__->add_columns
# spent 627µs making 1 call to DBIx::Class::ResultSourceProxy::add_columns
17 (
18 "id", { data_type => "INT", default_value => undef, is_nullable => 0, size => 11, is_auto_increment => 1, },
19 "name", { data_type => "VARCHAR", default_value => undef, is_nullable => 1, size => 255, },
20 "login", { data_type => "VARCHAR", default_value => undef, is_nullable => 0, size => 255, },
21 "password", { data_type => "VARCHAR", default_value => undef, is_nullable => 1, size => 255, },
22 );
23
24115µs156µs__PACKAGE__->set_primary_key("id");
25
26110µs1;
27
28
29__END__