- scheduler: add <workload_sim> config option.
If set, the scheduler will use EDF simulation,
together with the in-progress workload reported by the client,
to avoid sending results that
1) will miss their deadline, or
2) will cause an in-progress result to miss its deadline, or
3) will make an in-progress result miss its deadline
by more than is already predicted.
If this option is not set, or if the client request doesn't
include a workload description (i.e. the client is old)
use the existing approach, which assumes there's no workload.
NOTE: this is experimental. Production projects should not use it.
- EDF sim: write debug stuff to stderr instead of stdout
- Account manager:
- if an account is detach_when_done, set dont_request_more_work
- check done_request_more_work even for first-time projects
- update_uotd: generate a file for use by Google gadget
- user_links(): use full URLs (so can use in Google gadget)
client/
acct_mgr.C
work_fetch.C
html/
inc/
uotd.inc
util.inc
user/
uotd_gadget.php (new)
sched/
Makefile.am
edf_sim.C
sched_config.C,h
sched_resend.C
sched_send.C,h
server_types.C,h
svn path=/trunk/boinc/; revision=12639
2007-05-10 21:50:52 +00:00
|
|
|
<?php
|
|
|
|
require_once("../inc/xml.inc");
|
|
|
|
require_once("../project/project.inc");
|
|
|
|
|
|
|
|
xml_header();
|
|
|
|
|
|
|
|
echo "
|
|
|
|
<Module>
|
|
|
|
<ModulePrefs
|
|
|
|
title=\"".PROJECT." User of the Day\"
|
|
|
|
author=\"BOINC project\"
|
|
|
|
author_email=\"".SYS_ADMIN_EMAIL."\"
|
|
|
|
author_affiliation=\"".COPYRIGHT_HOLDER."\"
|
|
|
|
author_location=\"Unknown\"
|
|
|
|
description=\"Shows today's User of the Day for the BOINC-based distributed
|
|
|
|
computing project ".PROJECT."\"
|
|
|
|
height=\"100\"
|
|
|
|
/>
|
2007-07-05 19:37:33 +00:00
|
|
|
<Content type=\"url\" href=\"".URL_BASE."/user_profile/uotd_gadget.html\" />
|
- scheduler: add <workload_sim> config option.
If set, the scheduler will use EDF simulation,
together with the in-progress workload reported by the client,
to avoid sending results that
1) will miss their deadline, or
2) will cause an in-progress result to miss its deadline, or
3) will make an in-progress result miss its deadline
by more than is already predicted.
If this option is not set, or if the client request doesn't
include a workload description (i.e. the client is old)
use the existing approach, which assumes there's no workload.
NOTE: this is experimental. Production projects should not use it.
- EDF sim: write debug stuff to stderr instead of stdout
- Account manager:
- if an account is detach_when_done, set dont_request_more_work
- check done_request_more_work even for first-time projects
- update_uotd: generate a file for use by Google gadget
- user_links(): use full URLs (so can use in Google gadget)
client/
acct_mgr.C
work_fetch.C
html/
inc/
uotd.inc
util.inc
user/
uotd_gadget.php (new)
sched/
Makefile.am
edf_sim.C
sched_config.C,h
sched_resend.C
sched_send.C,h
server_types.C,h
svn path=/trunk/boinc/; revision=12639
2007-05-10 21:50:52 +00:00
|
|
|
</Module>
|
|
|
|
";
|
|
|
|
|
|
|
|
?>
|