Changeset 7192
- Timestamp:
- 12/15/11 16:39:25 (13 years ago)
- Location:
- trunk/sources
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Clients.Hive.Views/3.3/HiveTasks/HiveTaskView.cs
r7177 r7192 105 105 this.priorityComboBox.SelectedIndex = 0; 106 106 this.coresNeededComboBox.Text = "1"; 107 this.memoryNeededComboBox.Text = " 256";107 this.memoryNeededComboBox.Text = "128"; 108 108 } 109 109 } -
trunk/sources/HeuristicLab.Clients.Hive.Views/3.3/HiveTasks/HiveTaskView.designer.cs
r7191 r7192 247 247 this.memoryNeededComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 248 248 | System.Windows.Forms.AnchorStyles.Right))); 249 this.memoryNeededComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; 249 250 this.memoryNeededComboBox.FormattingEnabled = true; 250 251 this.memoryNeededComboBox.Items.AddRange(new object[] { … … 263 264 this.coresNeededComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 264 265 | System.Windows.Forms.AnchorStyles.Right))); 266 this.coresNeededComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; 265 267 this.coresNeededComboBox.FormattingEnabled = true; 266 268 this.coresNeededComboBox.Items.AddRange(new object[] { … … 268 270 "2", 269 271 "3", 270 "4", 271 "5", 272 "6", 273 "7", 274 "8"}); 272 "4"}); 275 273 this.coresNeededComboBox.Location = new System.Drawing.Point(134, 13); 276 274 this.coresNeededComboBox.Name = "coresNeededComboBox"; … … 292 290 this.coresNeededLabel.Location = new System.Drawing.Point(6, 16); 293 291 this.coresNeededLabel.Name = "coresNeededLabel"; 294 this.coresNeededLabel.Size = new System.Drawing.Size(10 1, 13);292 this.coresNeededLabel.Size = new System.Drawing.Size(104, 13); 295 293 this.coresNeededLabel.TabIndex = 39; 296 this.coresNeededLabel.Text = "Nr. of cores needed";294 this.coresNeededLabel.Text = "Nr. of needed cores:"; 297 295 // 298 296 // computeInParallelLabel -
trunk/sources/HeuristicLab.Clients.Hive/3.3/HiveJobs/HiveTask.cs
r7191 r7192 71 71 OnItemImageChanged(); 72 72 } 73 74 73 } 75 74 } … … 159 158 160 159 public HiveTask() { 161 this.Task = new Task() { CoresNeeded = 1, MemoryNeeded = 0};160 this.Task = new Task() { CoresNeeded = 1, MemoryNeeded = 128 }; 162 161 task.State = TaskState.Offline; 163 162 this.childHiveTasks = new ItemList<HiveTask>();
Note: See TracChangeset
for help on using the changeset viewer.