uwdc 0.0.6 → 0.0.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- ZjUwZjVmYjgxZTg5NzNiNTZhYThlNDA3YzgzOTQ3ZGZkMTVmYTMzMg==
4
+ MzU1ZmQ5YzA4OWVjZTYxMGFmNzMzYWJmNDU4NDdlZjgzOGFlOWU2ZQ==
5
5
  data.tar.gz: !binary |-
6
- MThkNGRkOTVmMTVlMjEzOGRkOTUxMTdiOWJlZWVhYjNjMzMzZDVjOA==
6
+ ODEzZTdlMWNjMGIxOWIyMGE3Yjc3OTJlMDdjOWI4NjllZmFlZjViNw==
7
7
  !binary "U0hBNTEy":
8
8
  metadata.gz: !binary |-
9
- NDRhNzVmMDM4NTE3N2E3ZDIxZjA4NzRiNmVkY2VlMTg2OTYyNjU3NGMwZDEz
10
- YWE5ZDcyY2ZhNjNlYTFhYjVjZDQ1OWFjZTMyNDQ1ODUzODg5OThhMWY5ZjRh
11
- YjRkOWIzM2Q1YjhhM2U2NDgyZjY5NzVjYTM5YzNmMDdmMTA2Nzc=
9
+ NzFjYjM2YmE5YmI4ZTc4MzU3ZTkwZDY4MTU0MzAwMGFmYjQwOWUzMzA5ZjBl
10
+ MTMzZTI0ZjdmYjNhODUxNzQ3OWYxN2Y1ZDAzZDNlNjY5MzY3YThhZDhkZjQ2
11
+ NmU2ZmM1M2FhMDZhOTEzNTA5M2NmZjU1NDlhODkzZTc5MTRkZDY=
12
12
  data.tar.gz: !binary |-
13
- OTNjM2ViOTg5YjdjZTVhMDMxOGYyMzhmYzQxMDg1MmY4ZWQwMGI3MGFlYmEy
14
- OWQ0NzQ0NTI3YTNiNTU5Mzg1MzQyNDRjNjg0NjFlZTlhZTI5YWQzMWJlOGRm
15
- Y2VjZmRiOTU5M2Q4MmFiYzczM2JlMzVjYWE5YzEwZjg2Mzc0YWU=
13
+ NmZhZDE0ZWNiYzAwYmEwOTFhNTQ0ZGFmNzM0OWU0ODcwZDZlYWFhYjI1MjI4
14
+ NmI4YmNjYTNkNGM4NjM3MTY2ZjNhNjIwODI4MWZjZmFkZGVmNDE4YzI1NjRj
15
+ ZGI3YTYwYmNlMTEyZDZlNTk1ZTE0M2M3NTBmNjU0Mjg1OTdmZmI=
@@ -80,7 +80,7 @@ module UWDC
80
80
  #
81
81
  # Returns a UWDC::Mods object
82
82
  def mods
83
- @mods = Mods.new(@id)
83
+ @mods = Mods.new(@id, @xml.xml)
84
84
  end
85
85
 
86
86
  # Public: Access the Origin metadata XML nodes
@@ -92,7 +92,7 @@ module UWDC
92
92
  #
93
93
  # Returns a UWDC::Origin object
94
94
  def origin
95
- @origin = Origin.new(@id)
95
+ @origin = Origin.new(@id, @xml.xml)
96
96
  end
97
97
 
98
98
  # Public: Access the StructMap structural map section XML nodes
@@ -103,8 +103,8 @@ module UWDC
103
103
  # # => UWDC::StructMap
104
104
  #
105
105
  # Returns a UWDC::StructMap object
106
- def struct_map(id=@id)
107
- @struct_map = StructMap.new(id)
106
+ def struct_map
107
+ @struct_map = StructMap.new(@id, @xml.xml)
108
108
  end
109
109
 
110
110
  # Public: Access the RelsExt RDF relation XML nodes
@@ -115,8 +115,8 @@ module UWDC
115
115
  # # => UWDC::RelsExt
116
116
  #
117
117
  # Returns a UWDC::RelsExt object
118
- def rels_ext(id=@id)
119
- @rels_ext = RelsExt.new(id)
118
+ def rels_ext
119
+ @rels_ext = RelsExt.new(@id, @xml.xml)
120
120
  end
121
121
 
122
122
  # Public: Access the FileSec file section XML nodes
@@ -127,8 +127,8 @@ module UWDC
127
127
  # # => UWDC::FileSec
128
128
  #
129
129
  # Returns a UWDC::FileSec object
130
- def file_sec(id=@id)
131
- @file_sec = FileSec.new(id)
130
+ def file_sec
131
+ @file_sec = FileSec.new(@id, @xml.xml)
132
132
  end
133
133
 
134
134
  # Public: Access the DublinCore descriptive metadata XML nodes
@@ -139,8 +139,8 @@ module UWDC
139
139
  # # => UWDC::DublinCore
140
140
  #
141
141
  # Returns a UWDC::DublinCore object
142
- def dublin_core(id=@id)
143
- @dublin_core = DublinCore.new(id)
142
+ def dublin_core
143
+ @dublin_core = DublinCore.new(@id, @xml.xml)
144
144
  end
145
145
 
146
146
  # Public: Access the Display class/methods for the METS file
@@ -151,8 +151,8 @@ module UWDC
151
151
  # # => UWDC::Display
152
152
  #
153
153
  # Returns a UWDC::Display object
154
- def display(id=@id)
155
- @display = Display.new(id)
154
+ def display
155
+ @display = Display.new(@id, @xml.xml)
156
156
  end
157
157
 
158
158
  private
@@ -1,3 +1,3 @@
1
1
  module UWDC
2
- VERSION = "0.0.6"
2
+ VERSION = "0.0.7"
3
3
  end
Binary file
Binary file
Binary file
@@ -0,0 +1,12 @@
1
+ require 'ruby-prof'
2
+ require 'uwdc'
3
+
4
+ result = RubyProf.profile do
5
+ kolors = UWDC::Mets.new('WFFLUJZK453Z687')
6
+ kolors.mods
7
+ kolors.display.images
8
+ kolors.display.audio
9
+ end
10
+
11
+ printer = RubyProf::MultiPrinter.new(result)
12
+ printer.print(:path => "spec/profiles", :profile => "uwdc")
@@ -0,0 +1,1255 @@
1
+ Thread ID: 2151950420
2
+ Fiber ID: 2156659040
3
+ Total: 0.288930
4
+ Sort by: self_time
5
+
6
+ %self total self wait child calls name
7
+ 47.00 0.136 0.136 0.000 0.000 96 <Class::Thread>#start
8
+ 8.20 0.209 0.024 0.000 0.185 96 Timeout#timeout
9
+ 4.02 0.012 0.012 0.000 0.000 96 Fixnum#==
10
+ 2.46 0.007 0.007 0.000 0.000 10 <Class::Nokogiri::XML::Document>#read_memory
11
+ 1.40 0.007 0.004 0.000 0.003 448 Nokogiri::XML::Node#[]
12
+ 1.08 0.129 0.003 0.000 0.126 14 HTTPClient::Session#read_body_length
13
+ 0.95 0.003 0.003 0.000 0.001 140 HTTPClient::Session#parse_keepalive_header
14
+ 0.93 0.006 0.003 0.004 0.000 96 Thread#join
15
+ 0.75 0.004 0.002 0.002 0.000 67 IO#readpartial
16
+ 0.65 0.015 0.002 0.000 0.013 112 UWDC::FileAsset#initialize
17
+ 0.62 0.002 0.002 0.000 0.000 582 Nokogiri::XML::Document#decorate
18
+ 0.59 0.003 0.002 0.000 0.001 196 HTTP::Message::Headers#add
19
+ 0.49 0.007 0.001 0.000 0.005 59 *Mutex#synchronize
20
+ 0.49 0.001 0.001 0.000 0.000 146 String#split
21
+ 0.49 0.181 0.001 0.000 0.180 244 *Array#each
22
+ 0.47 0.001 0.001 0.000 0.000 633 String#upcase
23
+ 0.45 0.001 0.001 0.000 0.000 924 String#to_s
24
+ 0.45 0.002 0.001 0.000 0.001 374 Nokogiri::XML::NodeSet#[]
25
+ 0.45 0.003 0.001 0.001 0.000 168 IO#gets
26
+ 0.44 0.004 0.001 0.000 0.003 84 HTTP::Message::Headers#get
27
+ 0.42 0.001 0.001 0.000 0.000 448 Nokogiri::XML::Node#get
28
+ 0.38 0.001 0.001 0.000 0.000 280 String#[]
29
+ 0.36 0.022 0.001 0.000 0.021 140 *Integer#upto
30
+ 0.34 0.001 0.001 0.000 0.000 28 Nokogiri::XML::XPathContext#evaluate
31
+ 0.32 0.002 0.001 0.000 0.001 14 URI::Generic#initialize
32
+ 0.28 0.001 0.001 0.000 0.000 28 Regexp#=~
33
+ 0.28 0.002 0.001 0.000 0.002 28 Nokogiri::XML::Node#extract_params
34
+ 0.28 0.239 0.001 0.000 0.238 14 HTTPClient#do_get_block
35
+ 0.27 0.268 0.001 0.000 0.268 341 *Class#new
36
+ 0.27 0.001 0.001 0.000 0.000 214 String#downcase
37
+ 0.27 0.006 0.001 0.000 0.005 14 HTTPClient::Session#set_header
38
+ 0.26 0.001 0.001 0.000 0.000 96 Thread#kill
39
+ 0.25 0.001 0.001 0.000 0.000 344 Kernel#is_a?
40
+ 0.25 0.001 0.001 0.000 0.000 28 HTTP::Message::Headers#initialize
41
+ 0.25 0.001 0.001 0.000 0.000 140 String#strip
42
+ 0.24 0.001 0.001 0.000 0.001 14 OpenURI::Meta#content_type_parse
43
+ 0.24 0.209 0.001 0.000 0.209 96 Object#timeout
44
+ 0.24 0.024 0.001 0.000 0.023 14 HTTPClient::Session#read_header
45
+ 0.24 0.005 0.001 0.000 0.005 120 Enumerable#detect
46
+ 0.23 0.001 0.001 0.000 0.000 448 Nokogiri::XML::Node#key?
47
+ 0.22 0.001 0.001 0.000 0.000 112 Nokogiri::XML::Node#children
48
+ 0.22 0.001 0.001 0.000 0.000 212 String#empty?
49
+ 0.21 0.001 0.001 0.000 0.000 154 String#chomp!
50
+ 0.20 0.001 0.001 0.000 0.000 192 Kernel#nil?
51
+ 0.19 0.002 0.001 0.001 0.000 14 IO#write
52
+ 0.19 0.001 0.001 0.000 0.000 311 <Class::BasicObject>#allocate
53
+ 0.18 0.001 0.001 0.000 0.000 224 Array#push
54
+ 0.18 0.003 0.001 0.000 0.002 56 Array#map
55
+ 0.18 0.001 0.001 0.000 0.000 34 <Class::UWDC::Display>#use
56
+ 0.18 0.245 0.001 0.000 0.244 14 HTTPClient#do_request
57
+ 0.17 0.001 0.001 0.000 0.000 56 Array#collect
58
+ 0.17 0.001 0.000 0.000 0.001 8 Array#select
59
+ 0.17 0.003 0.000 0.000 0.002 84 Enumerable#find_all
60
+ 0.17 0.000 0.000 0.000 0.000 18 <Class::UWDC::Display>#cmodels
61
+ 0.17 0.000 0.000 0.000 0.000 162 String#bytesize
62
+ 0.16 0.063 0.000 0.000 0.063 14 HTTPClient::Session#query
63
+ 0.16 0.002 0.000 0.000 0.002 56 HTTP::Message::Headers#set
64
+ 0.16 0.002 0.000 0.000 0.002 14 HTTP::Message::Headers#set_request_header
65
+ 0.16 0.001 0.000 0.000 0.000 27 Time#getlocal
66
+ 0.15 0.000 0.000 0.000 0.000 28 <Class::Nokogiri::XML::XPathContext>#new
67
+ 0.15 0.001 0.000 0.000 0.001 56 HTTP::Message::Headers#delete
68
+ 0.15 0.001 0.000 0.000 0.000 67 HTTPClient#set_encoding
69
+ 0.15 0.003 0.000 0.000 0.003 14 HTTPClient#create_request
70
+ 0.14 0.001 0.000 0.000 0.001 14 Time#httpdate
71
+ 0.14 0.006 0.000 0.000 0.005 28 Nokogiri::XML::Node#xpath
72
+ 0.14 0.130 0.000 0.000 0.129 14 HTTPClient::Session#get_body
73
+ 0.14 0.000 0.000 0.000 0.000 224 Nokogiri::XML::Node#name
74
+ 0.14 0.001 0.000 0.000 0.000 56 Array#delete_if
75
+ 0.14 0.034 0.000 0.000 0.034 14 HTTPClient#do_get_header
76
+ 0.14 0.001 0.000 0.000 0.000 95 Kernel#respond_to?
77
+ 0.13 0.001 0.000 0.000 0.000 27 Array#hash
78
+ 0.12 0.005 0.000 0.000 0.005 14 HTTP::Message::Headers#set_body_encoding
79
+ 0.12 0.002 0.000 0.000 0.002 14 OpenURI::Meta#meta_setup_encoding
80
+ 0.12 0.008 0.000 0.000 0.008 10 <Class::Nokogiri::XML::Document>#parse
81
+ 0.12 0.003 0.000 0.000 0.002 14 <Class::HTTP::Message>#new_request
82
+ 0.12 0.000 0.000 0.000 0.000 14 Regexp#===
83
+ 0.12 0.252 0.000 0.000 0.251 28 *UWDC::XML#http_xml
84
+ 0.12 0.250 0.000 0.000 0.249 14 HTTPClient#request
85
+ 0.11 0.001 0.000 0.000 0.001 14 URI::Parser#split
86
+ 0.11 0.000 0.000 0.000 0.000 14 HTTPClient::Session#no_message_body?
87
+ 0.11 0.001 0.000 0.000 0.000 28 <Class::HTTP::Message>#keep_alive_enabled?
88
+ 0.11 0.000 0.000 0.000 0.000 67 HTTP::Message#body_encoding
89
+ 0.10 0.001 0.000 0.000 0.001 14 Kernel#!~
90
+ 0.10 0.002 0.000 0.000 0.001 14 <Class::HTTP::Message>#new_response
91
+ 0.10 0.000 0.000 0.000 0.000 28 URI::Generic#hostname
92
+ 0.10 0.004 0.000 0.000 0.003 14 URI::Parser#parse
93
+ 0.10 0.001 0.000 0.000 0.000 43 <Class::Time>#now
94
+ 0.10 0.003 0.000 0.000 0.003 10 Nokogiri::XML::NodeSet#xpath
95
+ 0.10 0.000 0.000 0.000 0.000 10 Nokogiri::XML::Document#remove_namespaces!
96
+ 0.10 0.000 0.000 0.000 0.000 66 Array#include?
97
+ 0.10 0.000 0.000 0.000 0.000 42 Comparable#>=
98
+ 0.10 0.000 0.000 0.000 0.000 14 String#scan
99
+ 0.09 0.003 0.000 0.000 0.003 14 HTTP::Message::Headers#dump
100
+ 0.09 0.000 0.000 0.000 0.000 14 Kernel#sprintf
101
+ 0.09 0.000 0.000 0.000 0.000 42 String#to_i
102
+ 0.09 0.000 0.000 0.000 0.000 14 Queue#initialize
103
+ 0.09 0.000 0.000 0.000 0.000 126 Symbol#==
104
+ 0.09 0.001 0.000 0.000 0.001 56 Enumerable#find
105
+ 0.09 0.004 0.000 0.000 0.004 14 HTTPClient::Util#urify
106
+ 0.09 0.003 0.000 0.000 0.002 14 HTTP::Message::Headers#set_date_header
107
+ 0.09 0.003 0.000 0.000 0.002 14 OpenURI::Meta#meta_add_field
108
+ 0.09 0.000 0.000 0.000 0.000 112 String#include?
109
+ 0.08 0.001 0.000 0.000 0.000 27 Time#plus_with_duration
110
+ 0.08 0.000 0.000 0.000 0.000 28 Nokogiri::XML::Node#namespaces
111
+ 0.08 0.000 0.000 0.000 0.000 81 String#force_encoding
112
+ 0.08 0.000 0.000 0.000 0.000 104 Array#empty?
113
+ 0.08 0.000 0.000 0.000 0.000 14 HTTPClient::Session#eof?
114
+ 0.08 0.001 0.000 0.000 0.000 14 <Module::OpenURI::Meta>#init
115
+ 0.08 0.003 0.000 0.000 0.003 28 HTTP::Message::Headers#[]
116
+ 0.08 0.002 0.000 0.000 0.002 14 OpenURI::Meta#charset
117
+ 0.08 0.000 0.000 0.000 0.000 110 BasicObject#==
118
+ 0.08 0.006 0.000 0.000 0.006 14 HTTP::Message#dump
119
+ 0.08 0.000 0.000 0.000 0.000 42 <Class::HTTP::Message>#file?
120
+ 0.08 0.001 0.000 0.000 0.001 27 Time#compare_with_coercion
121
+ 0.08 0.024 0.000 0.000 0.024 14 HTTPClient::Session#get_header
122
+ 0.08 0.000 0.000 0.000 0.000 140 Nokogiri::XML::NodeSet#length
123
+ 0.07 0.000 0.000 0.000 0.000 28 HTTP::Message::Body#initialize
124
+ 0.07 0.000 0.000 0.000 0.000 57 Array#shift
125
+ 0.07 0.004 0.000 0.000 0.004 14 HTTPClient::SessionManager#open
126
+ 0.07 0.000 0.000 0.000 0.000 28 HTTP::Message#http_body=
127
+ 0.07 0.252 0.000 0.000 0.252 14 UWDC::Mets#initialize
128
+ 0.07 0.002 0.000 0.000 0.002 14 HTTP::Message::Body#dump
129
+ 0.07 0.001 0.000 0.000 0.001 14 HTTP::Message::Body#set_content
130
+ 0.07 0.001 0.000 0.000 0.001 14 HTTPClient::Connection#pop
131
+ 0.07 0.000 0.000 0.000 0.000 14 HTTP::Message::Headers#init_response
132
+ 0.07 0.000 0.000 0.000 0.000 96 <Class::Thread>#current
133
+ 0.07 0.000 0.000 0.000 0.000 14 HTTP::Message::Headers#create_query_uri
134
+ 0.07 0.000 0.000 0.000 0.000 43 Time#initialize
135
+ 0.07 0.000 0.000 0.000 0.000 59 Mutex#lock
136
+ 0.07 0.000 0.000 0.000 0.000 15 HTTPClient::Site#initialize
137
+ 0.07 0.000 0.000 0.000 0.000 14 URI::Generic#set_port
138
+ 0.07 0.000 0.000 0.000 0.000 96 Fixnum#zero?
139
+ 0.07 0.000 0.000 0.000 0.000 14 HTTPClient::ProxyAuth#filter_response
140
+ 0.07 0.000 0.000 0.000 0.000 56 HTTP::Message::Headers#body_size=
141
+ 0.07 0.000 0.000 0.000 0.000 28 HTTP::Message::Headers#status_code=
142
+ 0.07 0.000 0.000 0.000 0.000 56 HTTPClient::NegotiateAuth#set?
143
+ 0.06 0.000 0.000 0.000 0.000 98 Array#last
144
+ 0.06 0.000 0.000 0.000 0.000 28 <Module::Nokogiri>#uses_libxml?
145
+ 0.06 0.068 0.000 0.000 0.068 14 HTTPClient::SessionManager#query
146
+ 0.06 0.000 0.000 0.000 0.000 14 Time#utc
147
+ 0.06 0.001 0.000 0.000 0.001 27 HTTPClient::Site#hash
148
+ 0.06 0.000 0.000 0.000 0.000 80 Kernel#class
149
+ 0.06 0.001 0.000 0.000 0.001 28 HTTP::Message#initialize
150
+ 0.06 0.000 0.000 0.000 0.000 42 HTTP::Message#status
151
+ 0.06 0.000 0.000 0.000 0.000 28 URI::Generic#default_port
152
+ 0.06 0.000 0.000 0.000 0.000 82 Fixnum#<=>
153
+ 0.06 0.001 0.000 0.000 0.000 14 HTTP::Message::Headers#request_line
154
+ 0.06 0.000 0.000 0.000 0.000 42 String#<=>
155
+ 0.06 0.000 0.000 0.000 0.000 57 <Class::Time>#allocate
156
+ 0.06 0.001 0.000 0.000 0.001 46 Hash#each
157
+ 0.06 0.000 0.000 0.000 0.000 56 Nokogiri::XML::Document#root
158
+ 0.06 0.000 0.000 0.000 0.000 14 URI::Generic#set_userinfo
159
+ 0.05 0.008 0.000 0.000 0.008 14 HTTP::Message::Headers#set_headers
160
+ 0.05 0.000 0.000 0.000 0.000 14 BasicObject#instance_eval
161
+ 0.05 0.000 0.000 0.000 0.000 27 <Class::ActiveSupport::Duration>#===
162
+ 0.05 0.000 0.000 0.000 0.000 59 Mutex#unlock
163
+ 0.05 0.001 0.000 0.001 0.000 1 TCPSocket#initialize
164
+ 0.05 0.001 0.000 0.000 0.001 14 HTTPClient::Connection#initialize
165
+ 0.05 0.008 0.000 0.000 0.008 10 UWDC::XML#nokogiri_parse
166
+ 0.05 0.000 0.000 0.000 0.000 70 Fixnum#+
167
+ 0.05 0.000 0.000 0.000 0.000 10 Nokogiri::XML::NodeSet#initialize
168
+ 0.05 0.001 0.000 0.000 0.001 13 HTTPClient::SessionManager#valid_session?
169
+ 0.05 0.001 0.000 0.000 0.001 14 HTTP::Message::Body#init_request
170
+ 0.05 0.000 0.000 0.000 0.000 15 Kernel#extend
171
+ 0.05 0.000 0.000 0.000 0.000 14 HTTPClient::OAuth#get
172
+ 0.05 0.000 0.000 0.000 0.000 54 Fixnum#*
173
+ 0.05 0.000 0.000 0.000 0.000 14 HTTPClient::WWWAuth#filter_response
174
+ 0.05 0.002 0.000 0.000 0.002 1 HTTPClient::Session#connect
175
+ 0.05 0.000 0.000 0.000 0.000 14 <Class::HTTP::Message>#create_query_part_str
176
+ 0.05 0.000 0.000 0.000 0.000 67 Kernel#respond_to_missing?
177
+ 0.05 0.000 0.000 0.000 0.000 28 Nokogiri::XML::XPathContext#register_namespaces
178
+ 0.05 0.000 0.000 0.000 0.000 14 HTTPClient::Site#==
179
+ 0.05 0.000 0.000 0.000 0.000 28 Nokogiri::XML::Node#attribute
180
+ 0.05 0.250 0.000 0.000 0.250 14 HTTPClient#get
181
+ 0.05 0.000 0.000 0.000 0.000 28 Nokogiri::VersionInfo#libxml2?
182
+ 0.05 0.000 0.000 0.000 0.000 14 HTTP::Message::Headers#init_request
183
+ 0.04 0.023 0.000 0.000 0.023 14 HTTPClient::Session#parse_header
184
+ 0.04 0.000 0.000 0.000 0.000 15 Module#extend_object
185
+ 0.04 0.000 0.000 0.000 0.000 14 MatchData#[]
186
+ 0.04 0.000 0.000 0.000 0.000 54 String#hash
187
+ 0.04 0.239 0.000 0.000 0.239 14 HTTPClient#protect_keep_alive_disconnected
188
+ 0.04 0.000 0.000 0.000 0.000 15 HTTPClient::Util#keyword_argument
189
+ 0.04 0.022 0.000 0.000 0.022 140 *Nokogiri::XML::NodeSet#each
190
+ 0.04 0.000 0.000 0.000 0.000 52 Module#===
191
+ 0.04 0.000 0.000 0.000 0.000 27 Time#plus_without_duration
192
+ 0.04 0.000 0.000 0.000 0.000 14 HTTP::Message::Headers#create_query_part
193
+ 0.04 0.252 0.000 0.000 0.252 14 UWDC::XML#initialize
194
+ 0.04 0.000 0.000 0.000 0.000 28 <Class::Hash>#[]
195
+ 0.04 0.000 0.000 0.000 0.000 14 HTTP::Message::Body#init_response
196
+ 0.04 0.000 0.000 0.000 0.000 28 BasicObject#!=
197
+ 0.04 0.000 0.000 0.000 0.000 25 Hash#[]=
198
+ 0.04 0.002 0.000 0.000 0.002 14 HTTP::Message::Headers#content_type
199
+ 0.04 0.000 0.000 0.000 0.000 28 HTTPClient::SSPINegotiateAuth#set?
200
+ 0.04 0.000 0.000 0.000 0.000 28 <Module::URI>#scheme_list
201
+ 0.04 0.002 0.000 0.000 0.002 14 URI::HTTP#initialize
202
+ 0.04 0.000 0.000 0.000 0.000 14 HTTPClient::Session#closed?
203
+ 0.04 0.002 0.000 0.000 0.002 14 IO#<<
204
+ 0.04 0.000 0.000 0.000 0.000 14 Kernel#dup
205
+ 0.04 0.000 0.000 0.000 0.000 28 <Class::URI::Generic>#default_port
206
+ 0.04 0.001 0.000 0.000 0.001 14 HTTPClient::Connection#push
207
+ 0.04 0.001 0.000 0.000 0.001 14 HTTPClient::SessionManager#add_cached_session
208
+ 0.04 0.001 0.000 0.000 0.001 27 Time#to_time
209
+ 0.04 0.000 0.000 0.000 0.000 14 <Class::HTTP::Message>#multiparam_query?
210
+ 0.03 0.000 0.000 0.000 0.000 41 Fixnum#divmod
211
+ 0.03 0.000 0.000 0.000 0.000 27 Time#compare_without_coercion
212
+ 0.03 0.000 0.000 0.000 0.000 14 HTTP::Message#status=
213
+ 0.03 0.004 0.000 0.000 0.004 14 <Module::URI>#parse
214
+ 0.03 0.000 0.000 0.000 0.000 28 <Class::Nokogiri::VersionInfo>#instance
215
+ 0.03 0.000 0.000 0.000 0.000 28 HTTPClient::DigestAuth#set?
216
+ 0.03 0.000 0.000 0.000 0.000 54 Nokogiri::XML::Node#document
217
+ 0.03 0.002 0.000 0.000 0.002 14 HTTP::Message::Headers#set_header
218
+ 0.03 0.001 0.000 0.000 0.000 14 Queue#push
219
+ 0.03 0.001 0.000 0.000 0.001 14 HTTPClient::SessionManager#keep
220
+ 0.03 0.000 0.000 0.000 0.000 28 HTTPClient::BasicAuth#set?
221
+ 0.03 0.000 0.000 0.000 0.000 14 <Class::Encoding>#find
222
+ 0.03 0.000 0.000 0.000 0.000 30 Nokogiri::XML::Document#document
223
+ 0.03 0.000 0.000 0.000 0.000 14 HTTP::Message#content
224
+ 0.03 0.000 0.000 0.000 0.000 14 HTTP::Message#http_version=
225
+ 0.03 0.001 0.000 0.000 0.000 14 Queue#pop
226
+ 0.03 0.000 0.000 0.000 0.000 14 Array#assoc
227
+ 0.03 0.028 0.000 0.000 0.028 8 UWDC::FileSec#files
228
+ 0.03 0.000 0.000 0.000 0.000 14 HTTPClient::Util#argument_to_hash
229
+ 0.03 0.000 0.000 0.000 0.000 14 WebAgent::CookieManager#find
230
+ 0.03 0.000 0.000 0.000 0.000 10 Nokogiri::XML::NodeSet#+
231
+ 0.03 0.000 0.000 0.000 0.000 34 Array#first
232
+ 0.03 0.001 0.000 0.000 0.001 14 Comparable#>
233
+ 0.03 0.001 0.000 0.000 0.001 14 HTTPClient::ProxyAuth#filter_request
234
+ 0.03 0.000 0.000 0.000 0.000 14 HTTPClient#no_proxy?
235
+ 0.03 0.175 0.000 0.000 0.175 8 UWDC::Display#files
236
+ 0.03 0.001 0.000 0.000 0.001 14 UWDC::XML#http_client
237
+ 0.03 0.000 0.000 0.000 0.000 14 HTTP::Message#reason=
238
+ 0.03 0.000 0.000 0.000 0.000 42 Kernel#taint
239
+ 0.03 0.000 0.000 0.000 0.000 13 HTTPClient::Site#eql?
240
+ 0.03 0.009 0.000 0.000 0.009 8 UWDC::FileSec#nodes
241
+ 0.03 0.000 0.000 0.000 0.000 10 Nokogiri::XML::Document#initialize
242
+ 0.02 0.000 0.000 0.000 0.000 14 Kernel#initialize_dup
243
+ 0.02 0.001 0.000 0.000 0.001 14 HTTPClient::WWWAuth#filter_request
244
+ 0.02 0.004 0.000 0.000 0.004 14 HTTPClient::SessionManager#get_cached_session
245
+ 0.02 0.000 0.000 0.000 0.000 14 Array#join
246
+ 0.02 0.000 0.000 0.000 0.000 38 Module#==
247
+ 0.02 0.289 0.000 0.000 0.289 1 Global#[No method]
248
+ 0.02 0.001 0.000 0.000 0.001 8 UWDC::Mets#pick_attribute
249
+ 0.02 0.000 0.000 0.000 0.000 13 Regexp#to_s
250
+ 0.02 0.000 0.000 0.000 0.000 10 Nokogiri::XML::ParseOptions#xinclude?
251
+ 0.02 0.000 0.000 0.000 0.000 28 Nokogiri::XML::Node#namespace_scopes
252
+ 0.02 0.000 0.000 0.000 0.000 27 Kernel#hash
253
+ 0.02 0.177 0.000 0.000 0.177 8 UWDC::Display#select_files
254
+ 0.02 0.000 0.000 0.000 0.000 28 Array#reverse
255
+ 0.02 0.001 0.000 0.000 0.001 1 HTTPClient::Session#create_socket
256
+ 0.02 0.000 0.000 0.000 0.000 14 HTTP::Message::Body#content
257
+ 0.02 0.009 0.000 0.000 0.008 10 UWDC::XML#nodes
258
+ 0.02 0.008 0.000 0.000 0.008 10 <Module::Nokogiri::XML>#parse
259
+ 0.02 0.000 0.000 0.000 0.000 13 HTTPClient::Session#invalidated?
260
+ 0.02 0.000 0.000 0.000 0.000 14 URI::Generic#set_scheme
261
+ 0.02 0.000 0.000 0.000 0.000 14 Hash#include?
262
+ 0.02 0.000 0.000 0.000 0.000 14 URI::Generic#set_query
263
+ 0.02 0.147 0.000 0.000 0.147 8 UWDC::Mets#file_sec
264
+ 0.02 0.000 0.000 0.000 0.000 20 Nokogiri::XML::Attr#value
265
+ 0.02 0.000 0.000 0.000 0.000 14 URI::Generic#set_path
266
+ 0.02 0.000 0.000 0.000 0.000 28 Time#year
267
+ 0.02 0.000 0.000 0.000 0.000 16 <Class::Mutex>#allocate
268
+ 0.02 0.001 0.000 0.000 0.001 13 Enumerable#each_with_index
269
+ 0.02 0.000 0.000 0.000 0.000 27 Bignum#<=>
270
+ 0.02 0.001 0.000 0.000 0.001 1 HTTPClient#initialize
271
+ 0.02 0.000 0.000 0.000 0.000 14 URI::Generic#set_fragment
272
+ 0.02 0.001 0.000 0.000 0.001 13 Comparable#<=
273
+ 0.02 0.000 0.000 0.000 0.000 14 Fixnum#to_s
274
+ 0.02 0.000 0.000 0.000 0.000 14 URI::Generic#split_userinfo
275
+ 0.02 0.000 0.000 0.000 0.000 1 HTTPClient::SessionManager#initialize
276
+ 0.02 0.000 0.000 0.000 0.000 14 URI::Generic#set_host
277
+ 0.02 0.000 0.000 0.000 0.000 14 Array#unshift
278
+ 0.02 0.000 0.000 0.000 0.000 16 NilClass#nil?
279
+ 0.02 0.001 0.000 0.000 0.001 8 UWDC::Display#viewable_model?
280
+ 0.02 0.000 0.000 0.000 0.000 14 URI::Generic#set_registry
281
+ 0.02 0.000 0.000 0.000 0.000 1 HTTPClient::Session#initialize
282
+ 0.02 0.000 0.000 0.000 0.000 6 UWDC::Display#clean_id
283
+ 0.02 0.000 0.000 0.000 0.000 14 URI::Generic#set_opaque
284
+ 0.02 0.001 0.000 0.000 0.001 8 Enumerable#map
285
+ 0.02 0.000 0.000 0.000 0.000 14 HTTPClient::OAuth#set?
286
+ 0.02 0.000 0.000 0.000 0.000 14 Time#wday
287
+ 0.02 0.000 0.000 0.000 0.000 14 Symbol#to_s
288
+ 0.02 0.000 0.000 0.000 0.000 4 HTTPClient::NegotiateAuth#initialize
289
+ 0.02 0.000 0.000 0.000 0.000 13 Array#slice!
290
+ 0.01 0.000 0.000 0.000 0.000 15 Module#extended
291
+ 0.01 0.000 0.000 0.000 0.000 8 Array#reject
292
+ 0.01 0.180 0.000 0.000 0.180 14 *Enumerable#inject
293
+ 0.01 0.000 0.000 0.000 0.000 10 <Class::Nokogiri::XML::NodeSet>#allocate
294
+ 0.01 0.000 0.000 0.000 0.000 10 Nokogiri::XML::ParseOptions#initialize
295
+ 0.01 0.000 0.000 0.000 0.000 14 String#encoding
296
+ 0.01 0.000 0.000 0.000 0.000 14 String#==
297
+ 0.01 0.000 0.000 0.000 0.000 1 HTTPClient::Util#https?
298
+ 0.01 0.000 0.000 0.000 0.000 1 HTTPClient::SSLConfig#initialize
299
+ 0.01 0.001 0.000 0.000 0.001 1 <Class::IO>#new
300
+ 0.01 0.000 0.000 0.000 0.000 14 Time#sec
301
+ 0.01 0.000 0.000 0.000 0.000 16 Mutex#initialize
302
+ 0.01 0.000 0.000 0.000 0.000 14 String#===
303
+ 0.01 0.000 0.000 0.000 0.000 14 Time#day
304
+ 0.01 0.000 0.000 0.000 0.000 8 Nokogiri::XML::Attr#to_s
305
+ 0.01 0.000 0.000 0.000 0.000 14 Kernel#freeze
306
+ 0.01 0.000 0.000 0.000 0.000 20 Kernel#block_given?
307
+ 0.01 0.000 0.000 0.000 0.000 14 Time#mon
308
+ 0.01 0.000 0.000 0.000 0.000 14 Time#hour
309
+ 0.01 0.000 0.000 0.000 0.000 14 Integer#to_i
310
+ 0.01 0.000 0.000 0.000 0.000 14 Time#initialize_copy
311
+ 0.01 0.000 0.000 0.000 0.000 14 Hash#to_a
312
+ 0.01 0.000 0.000 0.000 0.000 14 Kernel#kind_of?
313
+ 0.01 0.000 0.000 0.000 0.000 10 Array#compact
314
+ 0.01 0.000 0.000 0.000 0.000 14 Time#min
315
+ 0.01 0.000 0.000 0.000 0.000 3 HTTPClient#getenv
316
+ 0.01 0.006 0.000 0.000 0.006 2 UWDC::RelsExt#models
317
+ 0.01 0.002 0.000 0.000 0.002 2 UWDC::RelsExt#nodes
318
+ 0.01 0.000 0.000 0.000 0.000 1 Kernel#proc
319
+ 0.01 0.000 0.000 0.000 0.000 1 HTTPClient::WWWAuth#initialize
320
+ 0.01 0.000 0.000 0.000 0.000 10 Fixnum#&
321
+ 0.01 0.000 0.000 0.000 0.000 1 WebAgent::CookieManager#initialize
322
+ 0.01 0.030 0.000 0.000 0.030 2 UWDC::Display#content_models
323
+ 0.01 0.000 0.000 0.000 0.000 1 HTTPClient::ProxyAuth#initialize
324
+ 0.01 0.050 0.000 0.000 0.050 2 UWDC::Mets#display
325
+ 0.01 0.000 0.000 0.000 0.000 8 Symbol#to_proc
326
+ 0.01 0.000 0.000 0.000 0.000 2 HTTPClient::BasicAuth#initialize
327
+ 0.01 0.024 0.000 0.000 0.024 2 UWDC::Mets#rels_ext
328
+ 0.01 0.000 0.000 0.000 0.000 2 HTTPClient::DigestAuth#initialize
329
+ 0.01 0.000 0.000 0.000 0.000 1 HTTPClient::OAuth#initialize
330
+ 0.01 0.031 0.000 0.000 0.031 2 UWDC::Display#viewable_models
331
+ 0.01 0.000 0.000 0.000 0.000 1 HTTPClient#proxy=
332
+ 0.01 0.000 0.000 0.000 0.000 1 HTTPClient#load_environment
333
+ 0.01 0.050 0.000 0.000 0.050 2 UWDC::Display#initialize
334
+ 0.00 0.000 0.000 0.000 0.000 6 Hash#clear
335
+ 0.00 0.000 0.000 0.000 0.000 1 IO#sync=
336
+ 0.00 0.078 0.000 0.000 0.078 1 UWDC::Display#audio
337
+ 0.00 0.000 0.000 0.000 0.000 2 HTTPClient#reset_all
338
+ 0.00 0.000 0.000 0.000 0.000 2 HTTPClient::SessionManager#close_all
339
+ 0.00 0.130 0.000 0.000 0.130 1 UWDC::Display#images
340
+ 0.00 0.000 0.000 0.000 0.000 6 <Object::Object>#[]
341
+ 0.00 0.000 0.000 0.000 0.000 2 HTTPClient::SSPINegotiateAuth#initialize
342
+ 0.00 0.000 0.000 0.000 0.000 1 HTTPClient#no_proxy=
343
+ 0.00 0.000 0.000 0.000 0.000 2 HTTPClient::SessionManager#reset_all
344
+ 0.00 0.007 0.000 0.000 0.007 1 UWDC::Mets#mods
345
+ 0.00 0.000 0.000 0.000 0.000 1 MonitorMixin#mon_initialize
346
+ 0.00 0.000 0.000 0.000 0.000 1 OpenSSL::X509::Store#initialize
347
+ 0.00 0.000 0.000 0.000 0.000 2 HTTPClient::NegotiateAuth#reset_challenge
348
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::OpenSSL::X509::Store>#allocate
349
+ 0.00 0.000 0.000 0.000 0.000 1 <Module::MonitorMixin>#extend_object
350
+ 0.00 0.000 0.000 0.000 0.000 1 HTTPClient::BasicAuth#reset_challenge
351
+ 0.00 0.000 0.000 0.000 0.000 3 <Class::Array>#allocate
352
+ 0.00 0.000 0.000 0.000 0.000 2 Kernel#method
353
+ 0.00 0.000 0.000 0.000 0.000 1 HTTPClient#keep_webmock_compat
354
+ 0.00 0.000 0.000 0.000 0.000 3 Array#initialize
355
+ 0.00 0.000 0.000 0.000 0.000 1 HTTPClient::SessionManager#proxy=
356
+ 0.00 0.000 0.000 0.000 0.000 1 HTTPClient::SSPINegotiateAuth#reset_challenge
357
+ 0.00 0.000 0.000 0.000 0.000 1 HTTPClient::ProxyAuth#reset_challenge
358
+ 0.00 0.000 0.000 0.000 0.000 2 Fixnum#|
359
+ 0.00 0.000 0.000 0.000 0.000 1 HTTPClient#proxy
360
+ 0.00 0.000 0.000 0.000 0.000 1 HTTPClient#debug_dev
361
+ 0.00 0.000 0.000 0.000 0.000 1 HTTPClient::ProxyDigestAuth#reset_challenge
362
+ 0.00 0.000 0.000 0.000 0.000 1 Array#clear
363
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::IO>#allocate
364
+
365
+ * indicates recursively called methods
366
+ Thread ID: 2156653080
367
+ Fiber ID: 2156652980
368
+ Total: 0.286282
369
+ Sort by: self_time
370
+
371
+ %self total self wait child calls name
372
+ 0.33 0.001 0.001 0.000 0.000 1 Kernel#sleep
373
+ 0.03 0.286 0.000 0.285 0.001 1 Timeout#timeout
374
+
375
+ * indicates recursively called methods
376
+ Thread ID: 2156652780
377
+ Fiber ID: 2156666840
378
+ Total: 0.282724
379
+ Sort by: self_time
380
+
381
+ %self total self wait child calls name
382
+ 0.04 0.283 0.000 0.283 0.000 1 Timeout#timeout
383
+ 0.01 0.000 0.000 0.000 0.000 1 Kernel#sleep
384
+
385
+ * indicates recursively called methods
386
+ Thread ID: 2156666720
387
+ Fiber ID: 2156666600
388
+ Total: 0.282189
389
+ Sort by: self_time
390
+
391
+ %self total self wait child calls name
392
+ 0.05 0.002 0.000 0.002 0.000 1 Kernel#sleep
393
+ 0.02 0.282 0.000 0.280 0.002 1 Timeout#timeout
394
+
395
+ * indicates recursively called methods
396
+ Thread ID: 2156672840
397
+ Fiber ID: 2156672760
398
+ Total: 0.278746
399
+ Sort by: self_time
400
+
401
+ %self total self wait child calls name
402
+ 0.01 0.279 0.000 0.279 0.000 1 Timeout#timeout
403
+ 0.00 0.000 0.000 0.000 0.000 1 Kernel#sleep
404
+
405
+ * indicates recursively called methods
406
+ Thread ID: 2156672660
407
+ Fiber ID: 2156672540
408
+ Total: 0.278436
409
+ Sort by: self_time
410
+
411
+ %self total self wait child calls name
412
+ 0.01 0.278 0.000 0.278 0.000 1 Timeout#timeout
413
+ 0.00 0.000 0.000 0.000 0.000 1 Kernel#sleep
414
+
415
+ * indicates recursively called methods
416
+ Thread ID: 2156672460
417
+ Fiber ID: 2156672160
418
+ Total: 0.278216
419
+ Sort by: self_time
420
+
421
+ %self total self wait child calls name
422
+ 0.02 0.278 0.000 0.278 0.000 1 Timeout#timeout
423
+ 0.02 0.000 0.000 0.000 0.000 1 Kernel#sleep
424
+
425
+ * indicates recursively called methods
426
+ Thread ID: 2156672080
427
+ Fiber ID: 2157893280
428
+ Total: 0.265793
429
+ Sort by: self_time
430
+
431
+ %self total self wait child calls name
432
+ 0.03 0.000 0.000 0.000 0.000 1 Kernel#sleep
433
+ 0.03 0.266 0.000 0.266 0.000 1 Timeout#timeout
434
+
435
+ * indicates recursively called methods
436
+ Thread ID: 2152357240
437
+ Fiber ID: 2151812140
438
+ Total: 0.263038
439
+ Sort by: self_time
440
+
441
+ %self total self wait child calls name
442
+ 0.04 0.263 0.000 0.263 0.000 1 Timeout#timeout
443
+ 0.01 0.000 0.000 0.000 0.000 1 Kernel#sleep
444
+
445
+ * indicates recursively called methods
446
+ Thread ID: 2151811800
447
+ Fiber ID: 2151810380
448
+ Total: 0.262686
449
+ Sort by: self_time
450
+
451
+ %self total self wait child calls name
452
+ 0.03 0.001 0.000 0.001 0.000 1 Kernel#sleep
453
+ 0.01 0.263 0.000 0.261 0.001 1 Timeout#timeout
454
+
455
+ * indicates recursively called methods
456
+ Thread ID: 2151879940
457
+ Fiber ID: 2151879680
458
+ Total: 0.260058
459
+ Sort by: self_time
460
+
461
+ %self total self wait child calls name
462
+ 0.02 0.260 0.000 0.260 0.000 1 Timeout#timeout
463
+ 0.00 0.000 0.000 0.000 0.000 1 Kernel#sleep
464
+
465
+ * indicates recursively called methods
466
+ Thread ID: 2151879100
467
+ Fiber ID: 2151878960
468
+ Total: 0.259798
469
+ Sort by: self_time
470
+
471
+ %self total self wait child calls name
472
+ 0.02 0.260 0.000 0.260 0.000 1 Timeout#timeout
473
+ 0.00 0.000 0.000 0.000 0.000 1 Kernel#sleep
474
+
475
+ * indicates recursively called methods
476
+ Thread ID: 2151878740
477
+ Fiber ID: 2151878640
478
+ Total: 0.259566
479
+ Sort by: self_time
480
+
481
+ %self total self wait child calls name
482
+ 0.01 0.000 0.000 0.000 0.000 1 Kernel#sleep
483
+ 0.01 0.260 0.000 0.259 0.000 1 Timeout#timeout
484
+
485
+ * indicates recursively called methods
486
+ Thread ID: 2151878420
487
+ Fiber ID: 2151878120
488
+ Total: 0.259243
489
+ Sort by: self_time
490
+
491
+ %self total self wait child calls name
492
+ 0.06 0.259 0.000 0.259 0.000 1 Timeout#timeout
493
+ 0.04 0.000 0.000 0.000 0.000 1 Kernel#sleep
494
+
495
+ * indicates recursively called methods
496
+ Thread ID: 2151884780
497
+ Fiber ID: 2151805760
498
+ Total: 0.243434
499
+ Sort by: self_time
500
+
501
+ %self total self wait child calls name
502
+ 0.03 0.000 0.000 0.000 0.000 1 Kernel#sleep
503
+ 0.02 0.243 0.000 0.243 0.000 1 Timeout#timeout
504
+
505
+ * indicates recursively called methods
506
+ Thread ID: 2151803200
507
+ Fiber ID: 2151801620
508
+ Total: 0.243034
509
+ Sort by: self_time
510
+
511
+ %self total self wait child calls name
512
+ 0.04 0.002 0.000 0.002 0.000 1 Kernel#sleep
513
+ 0.01 0.243 0.000 0.241 0.002 1 Timeout#timeout
514
+
515
+ * indicates recursively called methods
516
+ Thread ID: 2151876400
517
+ Fiber ID: 2151876080
518
+ Total: 0.239986
519
+ Sort by: self_time
520
+
521
+ %self total self wait child calls name
522
+ 0.01 0.240 0.000 0.240 0.000 1 Timeout#timeout
523
+ 0.00 0.000 0.000 0.000 0.000 1 Kernel#sleep
524
+
525
+ * indicates recursively called methods
526
+ Thread ID: 2151875380
527
+ Fiber ID: 2151874960
528
+ Total: 0.239727
529
+ Sort by: self_time
530
+
531
+ %self total self wait child calls name
532
+ 0.04 0.240 0.000 0.240 0.000 1 Timeout#timeout
533
+ 0.01 0.000 0.000 0.000 0.000 1 Kernel#sleep
534
+
535
+ * indicates recursively called methods
536
+ Thread ID: 2151888620
537
+ Fiber ID: 2151887280
538
+ Total: 0.239388
539
+ Sort by: self_time
540
+
541
+ %self total self wait child calls name
542
+ 0.04 0.239 0.000 0.239 0.000 1 Timeout#timeout
543
+ 0.02 0.000 0.000 0.000 0.000 2 Kernel#sleep
544
+
545
+ * indicates recursively called methods
546
+ Thread ID: 2151887040
547
+ Fiber ID: 2151886920
548
+ Total: 0.239139
549
+ Sort by: self_time
550
+
551
+ %self total self wait child calls name
552
+ 0.02 0.239 0.000 0.239 0.000 1 Timeout#timeout
553
+ 0.01 0.000 0.000 0.000 0.000 1 Kernel#sleep
554
+
555
+ * indicates recursively called methods
556
+ Thread ID: 2151886680
557
+ Fiber ID: 2151885880
558
+ Total: 0.238781
559
+ Sort by: self_time
560
+
561
+ %self total self wait child calls name
562
+ 0.02 0.239 0.000 0.239 0.000 1 Timeout#timeout
563
+ 0.00 0.000 0.000 0.000 0.000 1 Kernel#sleep
564
+
565
+ * indicates recursively called methods
566
+ Thread ID: 2151885320
567
+ Fiber ID: 2151884780
568
+ Total: 0.227087
569
+ Sort by: self_time
570
+
571
+ %self total self wait child calls name
572
+ 0.03 0.227 0.000 0.227 0.000 1 Timeout#timeout
573
+ 0.01 0.000 0.000 0.000 0.000 1 Kernel#sleep
574
+
575
+ * indicates recursively called methods
576
+ Thread ID: 2151824380
577
+ Fiber ID: 2151844280
578
+ Total: 0.224335
579
+ Sort by: self_time
580
+
581
+ %self total self wait child calls name
582
+ 0.03 0.000 0.000 0.000 0.000 1 Kernel#sleep
583
+ 0.02 0.224 0.000 0.224 0.000 1 Timeout#timeout
584
+
585
+ * indicates recursively called methods
586
+ Thread ID: 2151866060
587
+ Fiber ID: 2151865640
588
+ Total: 0.224016
589
+ Sort by: self_time
590
+
591
+ %self total self wait child calls name
592
+ 0.04 0.001 0.000 0.001 0.000 1 Kernel#sleep
593
+ 0.01 0.224 0.000 0.223 0.001 1 Timeout#timeout
594
+
595
+ * indicates recursively called methods
596
+ Thread ID: 2151903220
597
+ Fiber ID: 2151902780
598
+ Total: 0.221844
599
+ Sort by: self_time
600
+
601
+ %self total self wait child calls name
602
+ 0.01 0.222 0.000 0.222 0.000 1 Timeout#timeout
603
+ 0.00 0.000 0.000 0.000 0.000 1 Kernel#sleep
604
+
605
+ * indicates recursively called methods
606
+ Thread ID: 2151902500
607
+ Fiber ID: 2151902160
608
+ Total: 0.221597
609
+ Sort by: self_time
610
+
611
+ %self total self wait child calls name
612
+ 0.02 0.222 0.000 0.221 0.000 1 Timeout#timeout
613
+ 0.02 0.000 0.000 0.000 0.000 1 Kernel#sleep
614
+
615
+ * indicates recursively called methods
616
+ Thread ID: 2151901260
617
+ Fiber ID: 2151901020
618
+ Total: 0.221284
619
+ Sort by: self_time
620
+
621
+ %self total self wait child calls name
622
+ 0.02 0.221 0.000 0.221 0.000 1 Timeout#timeout
623
+ 0.01 0.000 0.000 0.000 0.000 1 Kernel#sleep
624
+
625
+ * indicates recursively called methods
626
+ Thread ID: 2151900300
627
+ Fiber ID: 2151899800
628
+ Total: 0.220981
629
+ Sort by: self_time
630
+
631
+ %self total self wait child calls name
632
+ 0.05 0.221 0.000 0.221 0.000 1 Timeout#timeout
633
+ 0.04 0.000 0.000 0.000 0.000 2 Kernel#sleep
634
+
635
+ * indicates recursively called methods
636
+ Thread ID: 2155980000
637
+ Fiber ID: 2156000880
638
+ Total: 0.203224
639
+ Sort by: self_time
640
+
641
+ %self total self wait child calls name
642
+ 0.03 0.000 0.000 0.000 0.000 1 Kernel#sleep
643
+ 0.02 0.203 0.000 0.203 0.000 1 Timeout#timeout
644
+
645
+ * indicates recursively called methods
646
+ Thread ID: 2156000740
647
+ Fiber ID: 2156000520
648
+ Total: 0.202894
649
+ Sort by: self_time
650
+
651
+ %self total self wait child calls name
652
+ 0.04 0.002 0.000 0.002 0.000 1 Kernel#sleep
653
+ 0.02 0.203 0.000 0.201 0.002 1 Timeout#timeout
654
+
655
+ * indicates recursively called methods
656
+ Thread ID: 2156071280
657
+ Fiber ID: 2156071100
658
+ Total: 0.200064
659
+ Sort by: self_time
660
+
661
+ %self total self wait child calls name
662
+ 0.02 0.200 0.000 0.200 0.000 1 Timeout#timeout
663
+ 0.00 0.000 0.000 0.000 0.000 1 Kernel#sleep
664
+
665
+ * indicates recursively called methods
666
+ Thread ID: 2156091180
667
+ Fiber ID: 2156090820
668
+ Total: 0.199791
669
+ Sort by: self_time
670
+
671
+ %self total self wait child calls name
672
+ 0.03 0.200 0.000 0.200 0.000 1 Timeout#timeout
673
+ 0.01 0.000 0.000 0.000 0.000 1 Kernel#sleep
674
+
675
+ * indicates recursively called methods
676
+ Thread ID: 2156090620
677
+ Fiber ID: 2156090080
678
+ Total: 0.199532
679
+ Sort by: self_time
680
+
681
+ %self total self wait child calls name
682
+ 0.03 0.200 0.000 0.199 0.000 1 Timeout#timeout
683
+ 0.00 0.000 0.000 0.000 0.000 1 Kernel#sleep
684
+
685
+ * indicates recursively called methods
686
+ Thread ID: 2156089840
687
+ Fiber ID: 2156089320
688
+ Total: 0.199268
689
+ Sort by: self_time
690
+
691
+ %self total self wait child calls name
692
+ 0.05 0.199 0.000 0.199 0.000 1 Timeout#timeout
693
+ 0.04 0.000 0.000 0.000 0.000 2 Kernel#sleep
694
+
695
+ * indicates recursively called methods
696
+ Thread ID: 2151893400
697
+ Fiber ID: 2151910680
698
+ Total: 0.181193
699
+ Sort by: self_time
700
+
701
+ %self total self wait child calls name
702
+ 0.02 0.181 0.000 0.181 0.000 1 Timeout#timeout
703
+ 0.02 0.000 0.000 0.000 0.000 1 Kernel#sleep
704
+
705
+ * indicates recursively called methods
706
+ Thread ID: 2151910000
707
+ Fiber ID: 2151909560
708
+ Total: 0.180898
709
+ Sort by: self_time
710
+
711
+ %self total self wait child calls name
712
+ 0.03 0.001 0.000 0.001 0.000 1 Kernel#sleep
713
+ 0.02 0.181 0.000 0.180 0.001 1 Timeout#timeout
714
+
715
+ * indicates recursively called methods
716
+ Thread ID: 2156007820
717
+ Fiber ID: 2156007700
718
+ Total: 0.178841
719
+ Sort by: self_time
720
+
721
+ %self total self wait child calls name
722
+ 0.02 0.179 0.000 0.179 0.000 1 Timeout#timeout
723
+ 0.01 0.000 0.000 0.000 0.000 1 Kernel#sleep
724
+
725
+ * indicates recursively called methods
726
+ Thread ID: 2156007200
727
+ Fiber ID: 2156006800
728
+ Total: 0.178599
729
+ Sort by: self_time
730
+
731
+ %self total self wait child calls name
732
+ 0.03 0.179 0.000 0.179 0.000 1 Timeout#timeout
733
+ 0.00 0.000 0.000 0.000 0.000 1 Kernel#sleep
734
+
735
+ * indicates recursively called methods
736
+ Thread ID: 2156006480
737
+ Fiber ID: 2156006180
738
+ Total: 0.178357
739
+ Sort by: self_time
740
+
741
+ %self total self wait child calls name
742
+ 0.03 0.178 0.000 0.178 0.000 1 Timeout#timeout
743
+ 0.00 0.000 0.000 0.000 0.000 1 Kernel#sleep
744
+
745
+ * indicates recursively called methods
746
+ Thread ID: 2156006000
747
+ Fiber ID: 2156005200
748
+ Total: 0.178115
749
+ Sort by: self_time
750
+
751
+ %self total self wait child calls name
752
+ 0.03 0.178 0.000 0.178 0.000 1 Timeout#timeout
753
+ 0.01 0.000 0.000 0.000 0.000 1 Kernel#sleep
754
+
755
+ * indicates recursively called methods
756
+ Thread ID: 2156005060
757
+ Fiber ID: 2156088240
758
+ Total: 0.165678
759
+ Sort by: self_time
760
+
761
+ %self total self wait child calls name
762
+ 0.08 0.166 0.000 0.165 0.000 1 Timeout#timeout
763
+ 0.07 0.000 0.000 0.000 0.000 2 Kernel#sleep
764
+
765
+ * indicates recursively called methods
766
+ Thread ID: 2151939400
767
+ Fiber ID: 2155982080
768
+ Total: 0.159944
769
+ Sort by: self_time
770
+
771
+ %self total self wait child calls name
772
+ 0.04 0.000 0.000 0.000 0.000 1 Kernel#sleep
773
+ 0.03 0.160 0.000 0.160 0.000 1 Timeout#timeout
774
+
775
+ * indicates recursively called methods
776
+ Thread ID: 2155981560
777
+ Fiber ID: 2155980580
778
+ Total: 0.159636
779
+ Sort by: self_time
780
+
781
+ %self total self wait child calls name
782
+ 0.06 0.001 0.000 0.001 0.000 1 Kernel#sleep
783
+ 0.03 0.160 0.000 0.158 0.001 1 Timeout#timeout
784
+
785
+ * indicates recursively called methods
786
+ Thread ID: 2156075240
787
+ Fiber ID: 2156074880
788
+ Total: 0.157260
789
+ Sort by: self_time
790
+
791
+ %self total self wait child calls name
792
+ 0.02 0.157 0.000 0.157 0.000 1 Timeout#timeout
793
+ 0.00 0.000 0.000 0.000 0.000 1 Kernel#sleep
794
+
795
+ * indicates recursively called methods
796
+ Thread ID: 2156074040
797
+ Fiber ID: 2156073520
798
+ Total: 0.157046
799
+ Sort by: self_time
800
+
801
+ %self total self wait child calls name
802
+ 0.03 0.000 0.000 0.000 0.000 1 Kernel#sleep
803
+ 0.03 0.157 0.000 0.157 0.000 1 Timeout#timeout
804
+
805
+ * indicates recursively called methods
806
+ Thread ID: 2156073000
807
+ Fiber ID: 2156072320
808
+ Total: 0.156687
809
+ Sort by: self_time
810
+
811
+ %self total self wait child calls name
812
+ 0.03 0.157 0.000 0.157 0.000 1 Timeout#timeout
813
+ 0.02 0.000 0.000 0.000 0.000 1 Kernel#sleep
814
+
815
+ * indicates recursively called methods
816
+ Thread ID: 2156072080
817
+ Fiber ID: 2156071480
818
+ Total: 0.156404
819
+ Sort by: self_time
820
+
821
+ %self total self wait child calls name
822
+ 0.03 0.156 0.000 0.156 0.000 1 Timeout#timeout
823
+ 0.02 0.000 0.000 0.000 0.000 1 Kernel#sleep
824
+
825
+ * indicates recursively called methods
826
+ Thread ID: 2155978700
827
+ Fiber ID: 2155999760
828
+ Total: 0.138716
829
+ Sort by: self_time
830
+
831
+ %self total self wait child calls name
832
+ 0.04 0.139 0.000 0.139 0.000 1 Timeout#timeout
833
+ 0.03 0.000 0.000 0.000 0.000 1 Kernel#sleep
834
+
835
+ * indicates recursively called methods
836
+ Thread ID: 2155999360
837
+ Fiber ID: 2155998200
838
+ Total: 0.138408
839
+ Sort by: self_time
840
+
841
+ %self total self wait child calls name
842
+ 0.05 0.002 0.000 0.001 0.000 1 Kernel#sleep
843
+ 0.03 0.138 0.000 0.137 0.002 1 Timeout#timeout
844
+
845
+ * indicates recursively called methods
846
+ Thread ID: 2156107920
847
+ Fiber ID: 2156107560
848
+ Total: 0.135812
849
+ Sort by: self_time
850
+
851
+ %self total self wait child calls name
852
+ 0.03 0.136 0.000 0.136 0.000 1 Timeout#timeout
853
+ 0.01 0.000 0.000 0.000 0.000 1 Kernel#sleep
854
+
855
+ * indicates recursively called methods
856
+ Thread ID: 2156107260
857
+ Fiber ID: 2156107160
858
+ Total: 0.135555
859
+ Sort by: self_time
860
+
861
+ %self total self wait child calls name
862
+ 0.05 0.136 0.000 0.135 0.000 1 Timeout#timeout
863
+ 0.02 0.000 0.000 0.000 0.000 1 Kernel#sleep
864
+
865
+ * indicates recursively called methods
866
+ Thread ID: 2156106960
867
+ Fiber ID: 2156106540
868
+ Total: 0.135231
869
+ Sort by: self_time
870
+
871
+ %self total self wait child calls name
872
+ 0.04 0.135 0.000 0.135 0.000 1 Timeout#timeout
873
+ 0.03 0.000 0.000 0.000 0.000 1 Kernel#sleep
874
+
875
+ * indicates recursively called methods
876
+ Thread ID: 2156106040
877
+ Fiber ID: 2156105860
878
+ Total: 0.134892
879
+ Sort by: self_time
880
+
881
+ %self total self wait child calls name
882
+ 0.07 0.135 0.000 0.135 0.000 1 Timeout#timeout
883
+ 0.05 0.000 0.000 0.000 0.000 2 Kernel#sleep
884
+
885
+ * indicates recursively called methods
886
+ Thread ID: 2151920820
887
+ Fiber ID: 2151933980
888
+ Total: 0.116612
889
+ Sort by: self_time
890
+
891
+ %self total self wait child calls name
892
+ 0.07 0.000 0.000 0.000 0.000 1 Kernel#sleep
893
+ 0.05 0.117 0.000 0.116 0.000 1 Timeout#timeout
894
+
895
+ * indicates recursively called methods
896
+ Thread ID: 2151933420
897
+ Fiber ID: 2151940320
898
+ Total: 0.116283
899
+ Sort by: self_time
900
+
901
+ %self total self wait child calls name
902
+ 0.06 0.116 0.000 0.114 0.002 1 Timeout#timeout
903
+ 0.06 0.002 0.000 0.002 0.000 1 Kernel#sleep
904
+
905
+ * indicates recursively called methods
906
+ Thread ID: 2156011860
907
+ Fiber ID: 2156011340
908
+ Total: 0.113354
909
+ Sort by: self_time
910
+
911
+ %self total self wait child calls name
912
+ 0.03 0.113 0.000 0.113 0.000 1 Timeout#timeout
913
+ 0.01 0.000 0.000 0.000 0.000 1 Kernel#sleep
914
+
915
+ * indicates recursively called methods
916
+ Thread ID: 2156078700
917
+ Fiber ID: 2156077860
918
+ Total: 0.113133
919
+ Sort by: self_time
920
+
921
+ %self total self wait child calls name
922
+ 0.05 0.113 0.000 0.113 0.000 1 Timeout#timeout
923
+ 0.05 0.000 0.000 0.000 0.000 1 Kernel#sleep
924
+
925
+ * indicates recursively called methods
926
+ Thread ID: 2156077480
927
+ Fiber ID: 2156076960
928
+ Total: 0.112793
929
+ Sort by: self_time
930
+
931
+ %self total self wait child calls name
932
+ 0.04 0.113 0.000 0.113 0.000 1 Timeout#timeout
933
+ 0.03 0.000 0.000 0.000 0.000 1 Kernel#sleep
934
+
935
+ * indicates recursively called methods
936
+ Thread ID: 2156075640
937
+ Fiber ID: 2156075180
938
+ Total: 0.112445
939
+ Sort by: self_time
940
+
941
+ %self total self wait child calls name
942
+ 0.03 0.112 0.000 0.112 0.000 1 Timeout#timeout
943
+ 0.01 0.000 0.000 0.000 0.000 1 Kernel#sleep
944
+
945
+ * indicates recursively called methods
946
+ Thread ID: 2156074600
947
+ Fiber ID: 2156105360
948
+ Total: 0.100363
949
+ Sort by: self_time
950
+
951
+ %self total self wait child calls name
952
+ 0.07 0.100 0.000 0.100 0.000 1 Timeout#timeout
953
+ 0.05 0.000 0.000 0.000 0.000 1 Kernel#sleep
954
+
955
+ * indicates recursively called methods
956
+ Thread ID: 2155989560
957
+ Fiber ID: 2156011120
958
+ Total: 0.094605
959
+ Sort by: self_time
960
+
961
+ %self total self wait child calls name
962
+ 0.09 0.000 0.000 0.000 0.000 1 Kernel#sleep
963
+ 0.07 0.095 0.000 0.094 0.000 1 Timeout#timeout
964
+
965
+ * indicates recursively called methods
966
+ Thread ID: 2156010720
967
+ Fiber ID: 2156010240
968
+ Total: 0.094268
969
+ Sort by: self_time
970
+
971
+ %self total self wait child calls name
972
+ 0.05 0.001 0.000 0.001 0.000 1 Kernel#sleep
973
+ 0.03 0.094 0.000 0.093 0.001 1 Timeout#timeout
974
+
975
+ * indicates recursively called methods
976
+ Thread ID: 2156106380
977
+ Fiber ID: 2156106020
978
+ Total: 0.092252
979
+ Sort by: self_time
980
+
981
+ %self total self wait child calls name
982
+ 0.03 0.092 0.000 0.092 0.000 1 Timeout#timeout
983
+ 0.01 0.000 0.000 0.000 0.000 1 Kernel#sleep
984
+
985
+ * indicates recursively called methods
986
+ Thread ID: 2156105320
987
+ Fiber ID: 2156105060
988
+ Total: 0.092010
989
+ Sort by: self_time
990
+
991
+ %self total self wait child calls name
992
+ 0.08 0.092 0.000 0.092 0.000 1 Timeout#timeout
993
+ 0.05 0.000 0.000 0.000 0.000 1 Kernel#sleep
994
+
995
+ * indicates recursively called methods
996
+ Thread ID: 2156104000
997
+ Fiber ID: 2156103580
998
+ Total: 0.091618
999
+ Sort by: self_time
1000
+
1001
+ %self total self wait child calls name
1002
+ 0.05 0.092 0.000 0.092 0.000 1 Timeout#timeout
1003
+ 0.01 0.000 0.000 0.000 0.000 1 Kernel#sleep
1004
+
1005
+ * indicates recursively called methods
1006
+ Thread ID: 2156119660
1007
+ Fiber ID: 2156119440
1008
+ Total: 0.091405
1009
+ Sort by: self_time
1010
+
1011
+ %self total self wait child calls name
1012
+ 0.09 0.091 0.000 0.091 0.000 1 Timeout#timeout
1013
+ 0.04 0.000 0.000 0.000 0.000 2 Kernel#sleep
1014
+
1015
+ * indicates recursively called methods
1016
+ Thread ID: 2151878960
1017
+ Fiber ID: 2151814240
1018
+ Total: 0.075685
1019
+ Sort by: self_time
1020
+
1021
+ %self total self wait child calls name
1022
+ 0.08 0.000 0.000 0.000 0.000 1 Kernel#sleep
1023
+ 0.06 0.076 0.000 0.076 0.000 1 Timeout#timeout
1024
+
1025
+ * indicates recursively called methods
1026
+ Thread ID: 2151812500
1027
+ Fiber ID: 2151812080
1028
+ Total: 0.075370
1029
+ Sort by: self_time
1030
+
1031
+ %self total self wait child calls name
1032
+ 0.24 0.002 0.000 0.002 0.000 2 Kernel#sleep
1033
+ 0.23 0.075 0.000 0.073 0.002 1 Timeout#timeout
1034
+
1035
+ * indicates recursively called methods
1036
+ Thread ID: 2151888840
1037
+ Fiber ID: 2151888620
1038
+ Total: 0.072946
1039
+ Sort by: self_time
1040
+
1041
+ %self total self wait child calls name
1042
+ 0.08 0.073 0.000 0.073 0.000 1 Timeout#timeout
1043
+ 0.01 0.000 0.000 0.000 0.000 1 Kernel#sleep
1044
+
1045
+ * indicates recursively called methods
1046
+ Thread ID: 2151886700
1047
+ Fiber ID: 2151886600
1048
+ Total: 0.072370
1049
+ Sort by: self_time
1050
+
1051
+ %self total self wait child calls name
1052
+ 0.07 0.072 0.000 0.072 0.000 1 Timeout#timeout
1053
+ 0.01 0.000 0.000 0.000 0.000 1 Kernel#sleep
1054
+
1055
+ * indicates recursively called methods
1056
+ Thread ID: 2151885320
1057
+ Fiber ID: 2151884940
1058
+ Total: 0.072159
1059
+ Sort by: self_time
1060
+
1061
+ %self total self wait child calls name
1062
+ 0.07 0.072 0.000 0.072 0.000 1 Timeout#timeout
1063
+ 0.03 0.000 0.000 0.000 0.000 1 Kernel#sleep
1064
+
1065
+ * indicates recursively called methods
1066
+ Thread ID: 2156118240
1067
+ Fiber ID: 2151890900
1068
+ Total: 0.054174
1069
+ Sort by: self_time
1070
+
1071
+ %self total self wait child calls name
1072
+ 0.16 0.000 0.000 0.000 0.000 1 Kernel#sleep
1073
+ 0.11 0.054 0.000 0.054 0.000 1 Timeout#timeout
1074
+
1075
+ * indicates recursively called methods
1076
+ Thread ID: 2151880420
1077
+ Fiber ID: 2151880320
1078
+ Total: 0.051617
1079
+ Sort by: self_time
1080
+
1081
+ %self total self wait child calls name
1082
+ 0.07 0.052 0.000 0.052 0.000 1 Timeout#timeout
1083
+ 0.02 0.000 0.000 0.000 0.000 1 Kernel#sleep
1084
+
1085
+ * indicates recursively called methods
1086
+ Thread ID: 2151880120
1087
+ Fiber ID: 2151880000
1088
+ Total: 0.051364
1089
+ Sort by: self_time
1090
+
1091
+ %self total self wait child calls name
1092
+ 0.12 0.051 0.000 0.051 0.000 1 Timeout#timeout
1093
+ 0.11 0.000 0.000 0.000 0.000 1 Kernel#sleep
1094
+
1095
+ * indicates recursively called methods
1096
+ Thread ID: 2151879860
1097
+ Fiber ID: 2151879640
1098
+ Total: 0.050977
1099
+ Sort by: self_time
1100
+
1101
+ %self total self wait child calls name
1102
+ 0.13 0.051 0.000 0.051 0.000 1 Timeout#timeout
1103
+ 0.06 0.000 0.000 0.000 0.000 1 Kernel#sleep
1104
+
1105
+ * indicates recursively called methods
1106
+ Thread ID: 2151879060
1107
+ Fiber ID: 2151878860
1108
+ Total: 0.050625
1109
+ Sort by: self_time
1110
+
1111
+ %self total self wait child calls name
1112
+ 0.11 0.051 0.000 0.051 0.000 1 Timeout#timeout
1113
+ 0.01 0.000 0.000 0.000 0.000 1 Kernel#sleep
1114
+
1115
+ * indicates recursively called methods
1116
+ Thread ID: 2151878600
1117
+ Fiber ID: 2151878420
1118
+ Total: 0.050414
1119
+ Sort by: self_time
1120
+
1121
+ %self total self wait child calls name
1122
+ 0.10 0.050 0.000 0.050 0.000 1 Timeout#timeout
1123
+ 0.06 0.000 0.000 0.000 0.000 1 Kernel#sleep
1124
+
1125
+ * indicates recursively called methods
1126
+ Thread ID: 2156007320
1127
+ Fiber ID: 2151895300
1128
+ Total: 0.031664
1129
+ Sort by: self_time
1130
+
1131
+ %self total self wait child calls name
1132
+ 0.26 0.000 0.000 0.000 0.000 1 Kernel#sleep
1133
+ 0.18 0.032 0.000 0.031 0.000 1 Timeout#timeout
1134
+
1135
+ * indicates recursively called methods
1136
+ Thread ID: 2151883560
1137
+ Fiber ID: 2151885400
1138
+ Total: 0.031285
1139
+ Sort by: self_time
1140
+
1141
+ %self total self wait child calls name
1142
+ 0.27 0.002 0.000 0.002 0.000 1 Kernel#sleep
1143
+ 0.24 0.031 0.000 0.029 0.002 1 Timeout#timeout
1144
+
1145
+ * indicates recursively called methods
1146
+ Thread ID: 2151867520
1147
+ Fiber ID: 2151867400
1148
+ Total: 0.028323
1149
+ Sort by: self_time
1150
+
1151
+ %self total self wait child calls name
1152
+ 0.13 0.028 0.000 0.028 0.000 1 Timeout#timeout
1153
+ 0.02 0.000 0.000 0.000 0.000 1 Kernel#sleep
1154
+
1155
+ * indicates recursively called methods
1156
+ Thread ID: 2151866520
1157
+ Fiber ID: 2151882480
1158
+ Total: 0.028107
1159
+ Sort by: self_time
1160
+
1161
+ %self total self wait child calls name
1162
+ 0.22 0.000 0.000 0.000 0.000 1 Kernel#sleep
1163
+ 0.17 0.028 0.000 0.028 0.000 1 Timeout#timeout
1164
+
1165
+ * indicates recursively called methods
1166
+ Thread ID: 2151882040
1167
+ Fiber ID: 2151881940
1168
+ Total: 0.027726
1169
+ Sort by: self_time
1170
+
1171
+ %self total self wait child calls name
1172
+ 0.18 0.028 0.000 0.028 0.000 1 Timeout#timeout
1173
+ 0.14 0.000 0.000 0.000 0.000 1 Kernel#sleep
1174
+
1175
+ * indicates recursively called methods
1176
+ Thread ID: 2151881660
1177
+ Fiber ID: 2151881520
1178
+ Total: 0.027394
1179
+ Sort by: self_time
1180
+
1181
+ %self total self wait child calls name
1182
+ 0.13 0.027 0.000 0.027 0.000 1 Timeout#timeout
1183
+ 0.03 0.000 0.000 0.000 0.000 1 Kernel#sleep
1184
+
1185
+ * indicates recursively called methods
1186
+ Thread ID: 2151881280
1187
+ Fiber ID: 2151881140
1188
+ Total: 0.027168
1189
+ Sort by: self_time
1190
+
1191
+ %self total self wait child calls name
1192
+ 0.17 0.027 0.000 0.027 0.000 1 Timeout#timeout
1193
+ 0.08 0.000 0.000 0.000 0.000 1 Kernel#sleep
1194
+
1195
+ * indicates recursively called methods
1196
+ Thread ID: 2156076520
1197
+ Fiber ID: 2151883600
1198
+ Total: 0.008969
1199
+ Sort by: self_time
1200
+
1201
+ %self total self wait child calls name
1202
+ 0.97 0.000 0.000 0.000 0.000 1 Kernel#sleep
1203
+ 0.84 0.009 0.000 0.009 0.000 1 Timeout#timeout
1204
+
1205
+ * indicates recursively called methods
1206
+ Thread ID: 2151885160
1207
+ Fiber ID: 2151886680
1208
+ Total: 0.008569
1209
+ Sort by: self_time
1210
+
1211
+ %self total self wait child calls name
1212
+ 1.06 0.002 0.000 0.002 0.000 1 Kernel#sleep
1213
+ 0.83 0.009 0.000 0.007 0.002 1 Timeout#timeout
1214
+
1215
+ * indicates recursively called methods
1216
+ Thread ID: 2151868160
1217
+ Fiber ID: 2151867220
1218
+ Total: 0.005812
1219
+ Sort by: self_time
1220
+
1221
+ %self total self wait child calls name
1222
+ 0.58 0.006 0.000 0.006 0.000 1 Timeout#timeout
1223
+ 0.15 0.000 0.000 0.000 0.000 1 Kernel#sleep
1224
+
1225
+ * indicates recursively called methods
1226
+ Thread ID: 2151881820
1227
+ Fiber ID: 2151881340
1228
+ Total: 0.005563
1229
+ Sort by: self_time
1230
+
1231
+ %self total self wait child calls name
1232
+ 1.08 0.006 0.000 0.005 0.000 1 Timeout#timeout
1233
+ 0.61 0.000 0.000 0.000 0.000 1 Kernel#sleep
1234
+
1235
+ * indicates recursively called methods
1236
+ Thread ID: 2151881000
1237
+ Fiber ID: 2151880860
1238
+ Total: 0.005243
1239
+ Sort by: self_time
1240
+
1241
+ %self total self wait child calls name
1242
+ 0.95 0.005 0.000 0.005 0.000 1 Timeout#timeout
1243
+ 0.72 0.000 0.000 0.000 0.000 1 Kernel#sleep
1244
+
1245
+ * indicates recursively called methods
1246
+ Thread ID: 2151880560
1247
+ Fiber ID: 2151880460
1248
+ Total: 0.004955
1249
+ Sort by: self_time
1250
+
1251
+ %self total self wait child calls name
1252
+ 0.61 0.005 0.000 0.005 0.000 1 Timeout#timeout
1253
+ 0.16 0.000 0.000 0.000 0.000 1 Kernel#sleep
1254
+
1255
+ * indicates recursively called methods