當前位置: 首頁>>代碼示例>>PHP>>正文


PHP phodevi::sensor_object_identifier方法代碼示例

本文整理匯總了PHP中phodevi::sensor_object_identifier方法的典型用法代碼示例。如果您正苦於以下問題:PHP phodevi::sensor_object_identifier方法的具體用法?PHP phodevi::sensor_object_identifier怎麽用?PHP phodevi::sensor_object_identifier使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在phodevi的用法示例。


在下文中一共展示了phodevi::sensor_object_identifier方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: process_summary_results

 private static function process_summary_results(&$sensor, &$test_run_manager)
 {
     $sensor_results = self::parse_monitor_log('logs/' . phodevi::sensor_object_identifier($sensor));
     pts_module::remove_file('logs/' . phodevi::sensor_object_identifier($sensor));
     if (count($sensor_results) > 2 && self::$monitor_test_count > 1) {
         $test_profile = new pts_test_profile();
         $test_result = new pts_test_result($test_profile);
         $test_result->test_profile->set_test_title(phodevi::sensor_object_name($sensor) . ' Monitor');
         $test_result->test_profile->set_identifier(null);
         $test_result->test_profile->set_version(null);
         $test_result->test_profile->set_result_proportion(null);
         $test_result->test_profile->set_display_format('LINE_GRAPH');
         $test_result->test_profile->set_result_scale(phodevi::read_sensor_object_unit($sensor));
         $test_result->set_used_arguments_description('Phoronix Test Suite System Monitoring');
         $test_result->set_used_arguments(phodevi::sensor_object_identifier($sensor));
         $test_result->test_result_buffer = new pts_test_result_buffer();
         $test_result->test_result_buffer->add_test_result(self::$result_identifier, implode(',', $sensor_results), implode(',', $sensor_results), implode(',', $sensor_results), implode(',', $sensor_results));
         $test_run_manager->result_file->add_result($test_result);
     }
 }
開發者ID:pacificIT,項目名稱:phoronix-test-suite,代碼行數:20,代碼來源:system_monitor.php


注:本文中的phodevi::sensor_object_identifier方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。