Changeset 478 for DCWoRMS/trunk/src/example/localplugin
- Timestamp:
- 10/01/12 10:05:16 (13 years ago)
- Location:
- DCWoRMS/trunk/src/example/localplugin
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
DCWoRMS/trunk/src/example/localplugin/BaseLocalSchedulingPlugin.java
r477 r478 54 54 55 55 for(int i = 0; i < newJobs.size(); i++){ 56 WorkloadUnit <?>task = newJobs.get(i);56 WorkloadUnit task = newJobs.get(i); 57 57 queue.add(task); 58 58 } -
DCWoRMS/trunk/src/example/localplugin/FCFSCPUFreqScalingClusterLocalPlugin.java
r477 r478 55 55 // check all tasks in queue 56 56 for (int i = 0; i < q.size(); i++) { 57 WorkloadUnit <?>job = q.get(i);57 WorkloadUnit job = q.get(i); 58 58 TaskInterface<?> task = (TaskInterface<?>) job; 59 59 // if status of the tasks in READY … … 98 98 // check all tasks in queue 99 99 for (int i = 0; i < q.size(); i++) { 100 WorkloadUnit <?>job = q.get(i);100 WorkloadUnit job = q.get(i); 101 101 TaskInterface<?> task = (TaskInterface<?>) job; 102 102 // if status of the tasks in READY -
DCWoRMS/trunk/src/example/localplugin/FCFSClusterLocalPlugin.java
r477 r478 49 49 50 50 for (int i = 0; i < q.size(); i++) { 51 WorkloadUnit <?>job = q.get(i);51 WorkloadUnit job = q.get(i); 52 52 TaskInterface<?> task = (TaskInterface<?>) job; 53 53 // if status of the tasks in READY -
DCWoRMS/trunk/src/example/localplugin/FCFSConsolidationClusterLocalPlugin.java
r477 r478 51 51 52 52 for (int i = 0; i < q.size(); i++) { 53 WorkloadUnit <?>job = q.get(i);53 WorkloadUnit job = q.get(i); 54 54 TaskInterface<?> task = (TaskInterface<?>) job; 55 55 // if status of the tasks in READY -
DCWoRMS/trunk/src/example/localplugin/FCFSEnergyAwareClusterLocalPlugin.java
r477 r478 42 42 43 43 for (int i = 0; i < q.size(); i++) { 44 WorkloadUnit <?>job = q.get(i);44 WorkloadUnit job = q.get(i); 45 45 TaskInterface<?> task = (TaskInterface<?>) job; 46 46 // if status of the tasks in READY -
DCWoRMS/trunk/src/example/localplugin/FCFSNodePowerManagementClusterLocalPlugin.java
r477 r478 51 51 52 52 for (int i = 0; i < q.size(); i++) { 53 WorkloadUnit <?>job = q.get(i);53 WorkloadUnit job = q.get(i); 54 54 TaskInterface<?> task = (TaskInterface<?>) job; 55 55 // if status of the tasks in READY -
DCWoRMS/trunk/src/example/localplugin/FCFSRandomClusterLocalPlugin.java
r477 r478 44 44 45 45 for (int i = 0; i < q.size(); i++) { 46 WorkloadUnit <?>job = q.get(i);46 WorkloadUnit job = q.get(i); 47 47 TaskInterface<?> task = (TaskInterface<?>) job; 48 48 // if status of the tasks in READY -
DCWoRMS/trunk/src/example/localplugin/FCFS_BFLocalPlugin.java
r477 r478 29 29 // check all tasks in queue 30 30 for (int i = 0; i < q.size(); i++) { 31 WorkloadUnit <?>job = q.get(i);31 WorkloadUnit job = q.get(i); 32 32 TaskInterface<?> task = (TaskInterface<?>) job; 33 33 -
DCWoRMS/trunk/src/example/localplugin/RackLocalPlugin.java
r477 r478 36 36 37 37 for (int i = 0; i < q.size(); i++) { 38 WorkloadUnit <?>job = q.get(i);38 WorkloadUnit job = q.get(i); 39 39 TaskInterface<?> task = (TaskInterface<?>) job; 40 40 // if status of the tasks in READY
Note: See TracChangeset
for help on using the changeset viewer.