Ignore:
Timestamp:
10/12/12 15:22:39 (13 years ago)
Author:
wojtekp
Message:
 
Location:
DCWoRMS/trunk/src/example/localplugin
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • DCWoRMS/trunk/src/example/localplugin/FCFSCPUFreqScalingClusterLocalPlugin.java

    r512 r513  
    5050                        // check all tasks in queue 
    5151                        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); 
    5453                                // if status of the tasks in READY 
    5554                                if (task.getStatus() == DCWormsTags.READY) { 
  • DCWoRMS/trunk/src/example/localplugin/FCFSClusterLocalPlugin.java

    r509 r513  
    4949 
    5050                        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); 
    5352                                // if status of the tasks in READY 
    5453                                if (task.getStatus() == DCWormsTags.READY) { 
  • DCWoRMS/trunk/src/example/localplugin/FCFSConsolidationClusterLocalPlugin.java

    r497 r513  
    5151 
    5252                        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); 
    5554                                // if status of the tasks in READY 
    5655                                if (task.getStatus() == DCWormsTags.READY) { 
  • DCWoRMS/trunk/src/example/localplugin/FCFSNodePowerManagementClusterLocalPlugin.java

    r497 r513  
    4848 
    4949                        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); 
    5251                                if (task.getStatus() == DCWormsTags.READY) { 
    5352 
  • DCWoRMS/trunk/src/example/localplugin/FCFSRackLocalPlugin.java

    r497 r513  
    3636 
    3737                        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); 
    4039                                // if status of the tasks in READY 
    4140                                if (task.getStatus() == DCWormsTags.READY) { 
  • DCWoRMS/trunk/src/example/localplugin/FCFSRandomClusterLocalPlugin.java

    r497 r513  
    4444                        // check all tasks in queue 
    4545                        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); 
    4847                                // if status of the tasks in READY 
    4948                                if (task.getStatus() == DCWormsTags.READY) { 
  • DCWoRMS/trunk/src/example/localplugin/FCFS_BFLocalPlugin.java

    r509 r513  
    2828                        // check all tasks in queue 
    2929                        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); 
    3231                                 
    3332                                // if status of the tasks in READY 
Note: See TracChangeset for help on using the changeset viewer.