Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.HiveEngine.Views/3.4/HiveEngineView.Designer.cs @ 6479

Last change on this file since 6479 was 6444, checked in by cneumuel, 13 years ago

#1233

  • stability improvements for HiveExperiment and HiveEngine
  • parallelized upload of jobs
  • enabled cancellation of job upload
  • reduced the amount of double-assignment of jobs by an additional check in HeartbeatManager
  • tried to tackle the amount of deadlocks by automatically rerunning transactions
  • some fixes
File size: 11.0 KB
Line 
1using HeuristicLab.Clients.Hive.ExperimentManager.Views;
2namespace HeuristicLab.HiveEngine.Views {
3  partial class HiveEngineView {
4    /// <summary>
5    /// Required designer variable.
6    /// </summary>
7    private System.ComponentModel.IContainer components = null;
8
9    /// <summary>
10    /// Clean up any resources being used.
11    /// </summary>
12    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
13    protected override void Dispose(bool disposing) {
14      if (disposing && (components != null)) {
15        components.Dispose();
16      }
17      base.Dispose(disposing);
18    }
19
20    #region Component Designer generated code
21
22    /// <summary>
23    /// Required method for Designer support - do not modify
24    /// the contents of this method with the code editor.
25    /// </summary>
26    private void InitializeComponent() {
27      this.resourceIdsLabel = new System.Windows.Forms.Label();
28      this.resourceIdsTextBox = new System.Windows.Forms.TextBox();
29      this.priorityLabel = new System.Windows.Forms.Label();
30      this.priorityTextBox = new System.Windows.Forms.TextBox();
31      this.label1 = new System.Windows.Forms.Label();
32      this.executionTimeOnHiveTextBox = new System.Windows.Forms.TextBox();
33      this.tabControl = new System.Windows.Forms.TabControl();
34      this.jobsTabPage = new System.Windows.Forms.TabPage();
35      this.hiveExperimentListView = new HeuristicLab.Clients.Hive.ExperimentManager.Views.RefreshableHiveExperimentListView();
36      this.logTabPage = new System.Windows.Forms.TabPage();
37      this.logView = new HeuristicLab.Core.Views.LogView();
38      this.executionTimeLabel = new System.Windows.Forms.Label();
39      this.executionTimeTextBox = new System.Windows.Forms.TextBox();
40      this.isPrivilegedCheckBox = new System.Windows.Forms.CheckBox();
41      this.tabControl.SuspendLayout();
42      this.jobsTabPage.SuspendLayout();
43      this.logTabPage.SuspendLayout();
44      this.SuspendLayout();
45      //
46      // resourceIdsLabel
47      //
48      this.resourceIdsLabel.AutoSize = true;
49      this.resourceIdsLabel.Location = new System.Drawing.Point(113, 55);
50      this.resourceIdsLabel.Name = "resourceIdsLabel";
51      this.resourceIdsLabel.Size = new System.Drawing.Size(70, 13);
52      this.resourceIdsLabel.TabIndex = 3;
53      this.resourceIdsLabel.Text = "ResourceIds:";
54      //
55      // resourceIdsTextBox
56      //
57      this.resourceIdsTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
58                  | System.Windows.Forms.AnchorStyles.Left)
59                  | System.Windows.Forms.AnchorStyles.Right)));
60      this.resourceIdsTextBox.Location = new System.Drawing.Point(189, 52);
61      this.resourceIdsTextBox.Name = "resourceIdsTextBox";
62      this.resourceIdsTextBox.Size = new System.Drawing.Size(428, 20);
63      this.resourceIdsTextBox.TabIndex = 4;
64      this.resourceIdsTextBox.Text = "HEAL";
65      this.resourceIdsTextBox.Validated += new System.EventHandler(this.resourceIdsTextBox_Validated);
66      //
67      // priorityLabel
68      //
69      this.priorityLabel.AutoSize = true;
70      this.priorityLabel.Location = new System.Drawing.Point(3, 55);
71      this.priorityLabel.Name = "priorityLabel";
72      this.priorityLabel.Size = new System.Drawing.Size(41, 13);
73      this.priorityLabel.TabIndex = 5;
74      this.priorityLabel.Text = "Priority:";
75      //
76      // priorityTextBox
77      //
78      this.priorityTextBox.Location = new System.Drawing.Point(50, 52);
79      this.priorityTextBox.Name = "priorityTextBox";
80      this.priorityTextBox.Size = new System.Drawing.Size(57, 20);
81      this.priorityTextBox.TabIndex = 6;
82      this.priorityTextBox.Text = "0";
83      this.priorityTextBox.Validated += new System.EventHandler(this.priorityTextBox_Validated);
84      //
85      // label1
86      //
87      this.label1.AutoSize = true;
88      this.label1.Location = new System.Drawing.Point(3, 29);
89      this.label1.Name = "label1";
90      this.label1.Size = new System.Drawing.Size(123, 13);
91      this.label1.TabIndex = 7;
92      this.label1.Text = "Execution Time on Hive:";
93      //
94      // executionTimeOnHiveTextBox
95      //
96      this.executionTimeOnHiveTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
97                  | System.Windows.Forms.AnchorStyles.Left)
98                  | System.Windows.Forms.AnchorStyles.Right)));
99      this.executionTimeOnHiveTextBox.Location = new System.Drawing.Point(129, 26);
100      this.executionTimeOnHiveTextBox.Name = "executionTimeOnHiveTextBox";
101      this.executionTimeOnHiveTextBox.ReadOnly = true;
102      this.executionTimeOnHiveTextBox.Size = new System.Drawing.Size(577, 20);
103      this.executionTimeOnHiveTextBox.TabIndex = 8;
104      //
105      // tabControl
106      //
107      this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
108                  | System.Windows.Forms.AnchorStyles.Left)
109                  | System.Windows.Forms.AnchorStyles.Right)));
110      this.tabControl.Controls.Add(this.jobsTabPage);
111      this.tabControl.Controls.Add(this.logTabPage);
112      this.tabControl.Location = new System.Drawing.Point(3, 78);
113      this.tabControl.Name = "tabControl";
114      this.tabControl.SelectedIndex = 0;
115      this.tabControl.Size = new System.Drawing.Size(700, 460);
116      this.tabControl.TabIndex = 9;
117      //
118      // jobsTabPage
119      //
120      this.jobsTabPage.Controls.Add(this.hiveExperimentListView);
121      this.jobsTabPage.Location = new System.Drawing.Point(4, 22);
122      this.jobsTabPage.Name = "jobsTabPage";
123      this.jobsTabPage.Padding = new System.Windows.Forms.Padding(3);
124      this.jobsTabPage.Size = new System.Drawing.Size(692, 434);
125      this.jobsTabPage.TabIndex = 0;
126      this.jobsTabPage.Text = "Jobs";
127      this.jobsTabPage.UseVisualStyleBackColor = true;
128      //
129      // hiveExperimentListView
130      //
131      this.hiveExperimentListView.Caption = "HiveExperimentList View";
132      this.hiveExperimentListView.Content = null;
133      this.hiveExperimentListView.Dock = System.Windows.Forms.DockStyle.Fill;
134      this.hiveExperimentListView.Location = new System.Drawing.Point(3, 3);
135      this.hiveExperimentListView.Name = "hiveExperimentListView";
136      this.hiveExperimentListView.ReadOnly = false;
137      this.hiveExperimentListView.Size = new System.Drawing.Size(686, 428);
138      this.hiveExperimentListView.TabIndex = 0;
139      //
140      // logTabPage
141      //
142      this.logTabPage.Controls.Add(this.logView);
143      this.logTabPage.Location = new System.Drawing.Point(4, 22);
144      this.logTabPage.Name = "logTabPage";
145      this.logTabPage.Padding = new System.Windows.Forms.Padding(3);
146      this.logTabPage.Size = new System.Drawing.Size(692, 434);
147      this.logTabPage.TabIndex = 1;
148      this.logTabPage.Text = "Log";
149      this.logTabPage.UseVisualStyleBackColor = true;
150      //
151      // logView
152      //
153      this.logView.Caption = "SlaveView";
154      this.logView.Content = null;
155      this.logView.Dock = System.Windows.Forms.DockStyle.Fill;
156      this.logView.Location = new System.Drawing.Point(3, 3);
157      this.logView.Name = "logView";
158      this.logView.ReadOnly = false;
159      this.logView.Size = new System.Drawing.Size(686, 428);
160      this.logView.TabIndex = 0;
161      //
162      // executionTimeLabel
163      //
164      this.executionTimeLabel.AutoSize = true;
165      this.executionTimeLabel.Location = new System.Drawing.Point(4, 6);
166      this.executionTimeLabel.Name = "executionTimeLabel";
167      this.executionTimeLabel.Size = new System.Drawing.Size(83, 13);
168      this.executionTimeLabel.TabIndex = 10;
169      this.executionTimeLabel.Text = "Execution Time:";
170      //
171      // executionTimeTextBox
172      //
173      this.executionTimeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
174                  | System.Windows.Forms.AnchorStyles.Left)
175                  | System.Windows.Forms.AnchorStyles.Right)));
176      this.executionTimeTextBox.Location = new System.Drawing.Point(129, 3);
177      this.executionTimeTextBox.Name = "executionTimeTextBox";
178      this.executionTimeTextBox.ReadOnly = true;
179      this.executionTimeTextBox.Size = new System.Drawing.Size(577, 20);
180      this.executionTimeTextBox.TabIndex = 11;
181      //
182      // isPrivilegedCheckBox
183      //
184      this.isPrivilegedCheckBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
185      this.isPrivilegedCheckBox.AutoSize = true;
186      this.isPrivilegedCheckBox.Location = new System.Drawing.Point(623, 54);
187      this.isPrivilegedCheckBox.Name = "isPrivilegedCheckBox";
188      this.isPrivilegedCheckBox.Size = new System.Drawing.Size(80, 17);
189      this.isPrivilegedCheckBox.TabIndex = 13;
190      this.isPrivilegedCheckBox.Text = "IsPrivileged";
191      this.isPrivilegedCheckBox.UseVisualStyleBackColor = true;
192      this.isPrivilegedCheckBox.Validated += new System.EventHandler(this.isPrivilegedCheckBox_Validated);
193      //
194      // HiveEngineView
195      //
196      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
197      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
198      this.Controls.Add(this.isPrivilegedCheckBox);
199      this.Controls.Add(this.executionTimeTextBox);
200      this.Controls.Add(this.executionTimeLabel);
201      this.Controls.Add(this.tabControl);
202      this.Controls.Add(this.label1);
203      this.Controls.Add(this.executionTimeOnHiveTextBox);
204      this.Controls.Add(this.priorityTextBox);
205      this.Controls.Add(this.priorityLabel);
206      this.Controls.Add(this.resourceIdsLabel);
207      this.Controls.Add(this.resourceIdsTextBox);
208      this.Name = "HiveEngineView";
209      this.Size = new System.Drawing.Size(706, 541);
210      this.tabControl.ResumeLayout(false);
211      this.jobsTabPage.ResumeLayout(false);
212      this.logTabPage.ResumeLayout(false);
213      this.ResumeLayout(false);
214      this.PerformLayout();
215
216    }
217
218    #endregion
219
220    private System.Windows.Forms.Label resourceIdsLabel;
221    private System.Windows.Forms.TextBox resourceIdsTextBox;
222    private System.Windows.Forms.Label priorityLabel;
223    private System.Windows.Forms.TextBox priorityTextBox;
224    private System.Windows.Forms.Label label1;
225    private System.Windows.Forms.TextBox executionTimeOnHiveTextBox;
226    private System.Windows.Forms.TabControl tabControl;
227    private System.Windows.Forms.TabPage jobsTabPage;
228    private System.Windows.Forms.TabPage logTabPage;
229    private System.Windows.Forms.Label executionTimeLabel;
230    private System.Windows.Forms.TextBox executionTimeTextBox;
231    private HeuristicLab.Core.Views.LogView logView;
232    private RefreshableHiveExperimentListView hiveExperimentListView;
233    private System.Windows.Forms.CheckBox isPrivilegedCheckBox;
234  }
235}
Note: See TracBrowser for help on using the repository browser.