Changeset 513 for DCWoRMS/trunk/src/example/localplugin
- Timestamp:
- 10/12/12 15:22:39 (13 years ago)
- Location:
- DCWoRMS/trunk/src/example/localplugin
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
DCWoRMS/trunk/src/example/localplugin/FCFSCPUFreqScalingClusterLocalPlugin.java
r512 r513 50 50 // check all tasks in queue 51 51 for (int i = 0; i < q.size(); i++) { 52 WorkloadUnit job = q.get(i); 53 TaskInterface<?> task = (TaskInterface<?>) job; 52 TaskInterface<?> task = q.get(i); 54 53 // if status of the tasks in READY 55 54 if (task.getStatus() == DCWormsTags.READY) { -
DCWoRMS/trunk/src/example/localplugin/FCFSClusterLocalPlugin.java
r509 r513 49 49 50 50 for (int i = 0; i < q.size(); i++) { 51 WorkloadUnit job = q.get(i); 52 TaskInterface<?> task = (TaskInterface<?>) job; 51 TaskInterface<?> task = q.get(i); 53 52 // if status of the tasks in READY 54 53 if (task.getStatus() == DCWormsTags.READY) { -
DCWoRMS/trunk/src/example/localplugin/FCFSConsolidationClusterLocalPlugin.java
r497 r513 51 51 52 52 for (int i = 0; i < q.size(); i++) { 53 WorkloadUnit job = q.get(i); 54 TaskInterface<?> task = (TaskInterface<?>) job; 53 TaskInterface<?> task = q.get(i); 55 54 // if status of the tasks in READY 56 55 if (task.getStatus() == DCWormsTags.READY) { -
DCWoRMS/trunk/src/example/localplugin/FCFSNodePowerManagementClusterLocalPlugin.java
r497 r513 48 48 49 49 for (int i = 0; i < q.size(); i++) { 50 WorkloadUnit job = q.get(i); 51 TaskInterface<?> task = (TaskInterface<?>) job; 50 TaskInterface<?> task = q.get(i); 52 51 if (task.getStatus() == DCWormsTags.READY) { 53 52 -
DCWoRMS/trunk/src/example/localplugin/FCFSRackLocalPlugin.java
r497 r513 36 36 37 37 for (int i = 0; i < q.size(); i++) { 38 WorkloadUnit job = q.get(i); 39 TaskInterface<?> task = (TaskInterface<?>) job; 38 TaskInterface<?> task = q.get(i); 40 39 // if status of the tasks in READY 41 40 if (task.getStatus() == DCWormsTags.READY) { -
DCWoRMS/trunk/src/example/localplugin/FCFSRandomClusterLocalPlugin.java
r497 r513 44 44 // check all tasks in queue 45 45 for (int i = 0; i < q.size(); i++) { 46 WorkloadUnit job = q.get(i); 47 TaskInterface<?> task = (TaskInterface<?>) job; 46 TaskInterface<?> task = q.get(i); 48 47 // if status of the tasks in READY 49 48 if (task.getStatus() == DCWormsTags.READY) { -
DCWoRMS/trunk/src/example/localplugin/FCFS_BFLocalPlugin.java
r509 r513 28 28 // check all tasks in queue 29 29 for (int i = 0; i < q.size(); i++) { 30 WorkloadUnit job = q.get(i); 31 TaskInterface<?> task = (TaskInterface<?>) job; 30 TaskInterface<?> task = q.get(i); 32 31 33 32 // if status of the tasks in READY
Note: See TracChangeset
for help on using the changeset viewer.