Changeset 1399 for DCWoRMS/branches/coolemall/src/test/CloudAppTest
- Timestamp:
- 06/26/14 14:24:08 (11 years ago)
- Location:
- DCWoRMS/branches/coolemall/src/test/CloudAppTest
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
DCWoRMS/branches/coolemall/src/test/CloudAppTest/CB1_FCFS_Consolidation_NodePowMan_SP.java
r1335 r1399 14 14 import schedframe.resources.computing.Node; 15 15 import schedframe.resources.computing.Processor; 16 import schedframe.resources.computing.profiles.energy.airthroughput. UserAirThroughputStateName;16 import schedframe.resources.computing.profiles.energy.airthroughput.CustomAirflowStateName; 17 17 import schedframe.resources.computing.profiles.energy.power.StandardPowerStateName; 18 18 import schedframe.resources.devices.Device; … … 27 27 import schedframe.scheduling.plan.SchedulingPlanInterface; 28 28 import schedframe.scheduling.plan.impl.SchedulingPlan; 29 import schedframe.scheduling.plugin. grid.ModuleList;29 import schedframe.scheduling.plugin.ModuleList; 30 30 import schedframe.scheduling.queue.TaskQueue; 31 31 import schedframe.scheduling.queue.TaskQueueList; … … 221 221 for(Device device: node.getParent().getResourceCharacteristic().getDevices()){ 222 222 if(device.getFullName().equals(Node_Fan_Mapping.getNode_fan().get(node.getFullName()))){ 223 device.getAir ThroughputInterface().setAirThroughputState(new UserAirThroughputStateName("2"));223 device.getAirflowInterface().setAirflowState(new CustomAirflowStateName("2")); 224 224 break; 225 225 } … … 252 252 for(Device device: node.getParent().getResourceCharacteristic().getDevices()){ 253 253 if(device.getFullName().equals(Node_Fan_Mapping.getNode_fan().get(node.getFullName()))){ 254 device.getAir ThroughputInterface().setAirThroughputState(new UserAirThroughputStateName("1"));254 device.getAirflowInterface().setAirflowState(new CustomAirflowStateName("1")); 255 255 break; 256 256 } -
DCWoRMS/branches/coolemall/src/test/CloudAppTest/CB1_FCFS_Consolidation_SP.java
r1335 r1399 23 23 import schedframe.scheduling.plan.SchedulingPlanInterface; 24 24 import schedframe.scheduling.plan.impl.SchedulingPlan; 25 import schedframe.scheduling.plugin. grid.ModuleList;25 import schedframe.scheduling.plugin.ModuleList; 26 26 import schedframe.scheduling.queue.TaskQueue; 27 27 import schedframe.scheduling.queue.TaskQueueList; -
DCWoRMS/branches/coolemall/src/test/CloudAppTest/CB1_FCFS_Random_SP.java
r1335 r1399 21 21 import schedframe.scheduling.plan.SchedulingPlanInterface; 22 22 import schedframe.scheduling.plan.impl.SchedulingPlan; 23 import schedframe.scheduling.plugin. grid.ModuleList;23 import schedframe.scheduling.plugin.ModuleList; 24 24 import schedframe.scheduling.queue.TaskQueue; 25 25 import schedframe.scheduling.queue.TaskQueueList; -
DCWoRMS/branches/coolemall/src/test/CloudAppTest/CB1_FCFS_Random_SP_3TierApp.java
r1335 r1399 22 22 import schedframe.scheduling.plan.SchedulingPlanInterface; 23 23 import schedframe.scheduling.plan.impl.SchedulingPlan; 24 import schedframe.scheduling.plugin. grid.ModuleList;24 import schedframe.scheduling.plugin.ModuleList; 25 25 import schedframe.scheduling.queue.TaskQueue; 26 26 import schedframe.scheduling.queue.TaskQueueList;
Note: See TracChangeset
for help on using the changeset viewer.