Created
February 22, 2009 03:55
-
-
Save b/68321 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 @_node_info = @connection.node_get_info | |
35 %w{ cores cpus memory mhz model nodes sockets threads }.each do |a| | |
36 instance_eval("@#{a}=#{@_node_info.send(a)}") | |
37 end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
./bin/../lib/chevre/hypervisor.rb:36:in `open': undefined local variable or method `x86_64' for Chevre::Hypervisor:Class (NameError) | |
from ./bin/../lib/chevre/hypervisor.rb:35:in `each' | |
from ./bin/../lib/chevre/hypervisor.rb:35:in `open' | |
from bin/chevre:26 | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 @_node_info = @connection.node_get_info | |
35 %w{ cores cpus memory mhz nodes sockets threads }.each do |a| | |
36 instance_eval("@#{a}=#{@_node_info.send(a)}") | |
37 end | |
38 @model = @_node_info.model |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment