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


PHP Host::run_asynch方法代碼示例

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


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

示例1: Work

$project->add_app_version($app_version);
$project->install();
// must install projects before adding to hosts
$project->install_feeder();
$host->log_flags = "log_flags.xml";
$host->add_user($user, $project);
$host->install();
echo "adding work\n";
$work = new Work($app);
$work->wu_template = "uc_wu";
$work->result_template = "uc_result";
$work->redundancy = 2;
array_push($work->input_files, "input");
$work->install($project);
//delete the download_dir immediately
$project->delete_downloaddir();
$project->start_servers();
$pid = $host->run_asynch("-exit_when_idle");
echo "sleeping 100 secs\n";
sleep(100);
$project->reinstall_downloaddir(null);
$status = 0;
//wait until the host has stopped running
pcntl_waitpid($pid, $status, 0);
$project->stop();
$result->server_state = RESULT_SERVER_STATE_OVER;
$result->stderr_out = "APP: upper_case: starting, argc 1";
$result->exit_status = 0;
$project->check_results(2, $result);
$project->compare_file("uc_wu_0_0", "uc_correct_output");
$project->compare_file("uc_wu_1_0", "uc_correct_output");
開發者ID:CalvinZhu,項目名稱:boinc,代碼行數:31,代碼來源:test_download_backoff.php

示例2: Work

$host->install();
echo "adding work\n";
$work = new Work($app);
$work->wu_template = "uc_wu";
$work->result_template = "uc_result";
$work->redundancy = 2;
array_push($work->input_files, "input");
$work->install($project);
$project->start_feeder();
//get the path for checking download
$source_dir = SRC_DIR;
$enc_url = strtr($project->master_url, "/", "_");
$enc_url = substr($enc_url, 7, strlen($enc_url));
$path = "{$host->host_dir}/projects/{$enc_url}/upper_case";
print "\n the path for checking download is :" . $path;
$pid = $host->run_asynch("-exit_when_idle -limit_transfer_rate 2048");
$client_pid = $host->get_new_client_pid(null);
assert($pid != -1);
$first = 0;
$file_size = 0;
//Check download
while (1) {
    if (file_exists($path)) {
        $temp = filesize($path);
        if ($temp < $file_size) {
            echo "\nfilesize dropped, problem downloading\n";
            echo "temp is {$temp}, file_size is  {$file_size}\n";
            break;
        } else {
            if ($temp > $file_size) {
                print "\n filesize increased, it is : " . $temp;
開發者ID:CalvinZhu,項目名稱:boinc,代碼行數:31,代碼來源:test_pers.php


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