← 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:23:09 2012

Filename/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/lib/site_perl/5.12.3/Tapper/Schema/TestrunDB/Result/Topic.pm
StatementsExecuted 18 statements in 235µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11113µs29µsTapper::Schema::TestrunDB::Result::Topic::::BEGIN@10Tapper::Schema::TestrunDB::Result::Topic::BEGIN@10
11111µs46µsTapper::Schema::TestrunDB::Result::Topic::::BEGIN@25Tapper::Schema::TestrunDB::Result::Topic::BEGIN@25
11111µs11µsTapper::Schema::TestrunDB::Result::Topic::::BEGIN@2Tapper::Schema::TestrunDB::Result::Topic::BEGIN@2
1119µs14µsTapper::Schema::TestrunDB::Result::Topic::::BEGIN@9Tapper::Schema::TestrunDB::Result::Topic::BEGIN@9
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::Topic;
2
# spent 11µs within Tapper::Schema::TestrunDB::Result::Topic::BEGIN@2 which was called: # once (11µs+0s) by Class::C3::Componentised::ensure_class_loaded at line 4
BEGIN {
316µs $Tapper::Schema::TestrunDB::Result::Topic::AUTHORITY = 'cpan:AMD';
4126µs111µs}
5{
62900ns $Tapper::Schema::TestrunDB::Result::Topic::VERSION = '0.001';
7}
8
9320µs219µs
# spent 14µs (9+5) within Tapper::Schema::TestrunDB::Result::Topic::BEGIN@9 which was called: # once (9µ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::Topic::BEGIN@9 # spent 5µs making 1 call to strict::import
10353µs244µs
# spent 29µs (13+16) within Tapper::Schema::TestrunDB::Result::Topic::BEGIN@10 which was called: # once (13µs+16µs) by Class::C3::Componentised::ensure_class_loaded at line 10
use warnings;
# spent 29µs making 1 call to Tapper::Schema::TestrunDB::Result::Topic::BEGIN@10 # spent 16µs making 1 call to warnings::import
11
1216µsour %topic_description =
13 (
14 Kernel => 'particlar kernel version or kernel modules',
15 Xen => 'Xen features',
16 KVM => 'KVM features',
17 Hardware => 'test focuses on the hardware',
18 Distribution => 'OS distribution (like RHEL, SLES, Debian)',
19 Benchmark => 'collection of values',
20 Software => 'any non-kernel software, like libraries, programs',
21 Research => 'collection of results, similar to benchmark',
22 Misc => 'what does not fit into other topics',
23 );
24
25356µs281µs
# spent 46µs (11+35) within Tapper::Schema::TestrunDB::Result::Topic::BEGIN@25 which was called: # once (11µs+35µs) by Class::C3::Componentised::ensure_class_loaded at line 25
use parent 'DBIx::Class';
# spent 46µs making 1 call to Tapper::Schema::TestrunDB::Result::Topic::BEGIN@25 # spent 35µs making 1 call to parent::import
26
2719µs1214µs__PACKAGE__->load_components("Core");
# spent 214µs making 1 call to Class::C3::Componentised::load_components
28115µs1410µs__PACKAGE__->table("topic");
# spent 410µs making 1 call to DBIx::Class::ResultSourceProxy::Table::table
29117µs1332µs__PACKAGE__->add_columns
# spent 332µs making 1 call to DBIx::Class::ResultSourceProxy::add_columns
30 (
31 "name", { data_type => "VARCHAR", default_value => undef, is_nullable => 0, size => 255 },
32 "description", { data_type => "TEXT", default_value => "", is_nullable => 0, },
33 );
34114µs154µs__PACKAGE__->set_primary_key("name");
35
36
37112µs1;
38
39
40__END__