Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3.3-Hive/sources/HeuristicLab.Hive/HeuristicLab.Hive.Experiment.Views/3.3/JobConfigView.Designer.cs @ 4368

Last change on this file since 4368 was 4368, checked in by cneumuel, 14 years ago
  • created HiveClient which shows an overview over all submitted HiveExperiments
  • its possible to download all submitted HiveExperiments including results
  • Experiments are now sent as a whole to the Hive and the Hive-Slaves take care of creating child-jobs (if necessary). The parent job is then paused and will be reactivated when all child-jobs are finished
  • WcfService-Clients are now consistently managed by WcfServicePool which allows to use IDisposable-Pattern and always keeps exactly one proxy-object until all callers disposed them.
  • created ProgressView which is able to lock a View and display progress of an action. It also allows to simulate progress if no progress-information is available so that users don't get too nervous while waiting.
File size: 10.3 KB
Line 
1namespace HeuristicLab.Hive.Experiment.Views {
2  partial class JobConfigView {
3    /// <summary>
4    /// Required designer variable.
5    /// </summary>
6    private System.ComponentModel.IContainer components = null;
7
8    /// <summary>
9    /// Clean up any resources being used.
10    /// </summary>
11    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12    protected override void Dispose(bool disposing) {
13      if (disposing && (components != null)) {
14        components.Dispose();
15      }
16      base.Dispose(disposing);
17    }
18
19    #region Component Designer generated code
20
21    /// <summary>
22    /// Required method for Designer support - do not modify
23    /// the contents of this method with the code editor.
24    /// </summary>
25    private void InitializeComponent() {
26      this.coresNeededLabel = new System.Windows.Forms.Label();
27      this.memoryNeededLabel = new System.Windows.Forms.Label();
28      this.memoryNeededTextBox = new System.Windows.Forms.TextBox();
29      this.coresNeededTextBox = new System.Windows.Forms.TextBox();
30      this.optimizerTypeLabel = new System.Windows.Forms.Label();
31      this.optimizerTypeTextBox = new System.Windows.Forms.TextBox();
32      this.computeInParallelCheckBox = new System.Windows.Forms.CheckBox();
33      this.computeInParallelLabel = new System.Windows.Forms.Label();
34      this.jobConfigListView = new HeuristicLab.Hive.Experiment.Views.JobConfigListView();
35      this.tabControl = new System.Windows.Forms.TabControl();
36      this.configurationTabPage = new System.Windows.Forms.TabPage();
37      this.childJobsTabPage = new System.Windows.Forms.TabPage();
38      this.tabControl.SuspendLayout();
39      this.configurationTabPage.SuspendLayout();
40      this.childJobsTabPage.SuspendLayout();
41      this.SuspendLayout();
42      //
43      // coresNeededLabel
44      //
45      this.coresNeededLabel.AutoSize = true;
46      this.coresNeededLabel.Location = new System.Drawing.Point(6, 25);
47      this.coresNeededLabel.Name = "coresNeededLabel";
48      this.coresNeededLabel.Size = new System.Drawing.Size(75, 13);
49      this.coresNeededLabel.TabIndex = 17;
50      this.coresNeededLabel.Text = "CoresNeeded:";
51      //
52      // memoryNeededLabel
53      //
54      this.memoryNeededLabel.AutoSize = true;
55      this.memoryNeededLabel.Location = new System.Drawing.Point(6, 47);
56      this.memoryNeededLabel.Name = "memoryNeededLabel";
57      this.memoryNeededLabel.Size = new System.Drawing.Size(85, 13);
58      this.memoryNeededLabel.TabIndex = 18;
59      this.memoryNeededLabel.Text = "MemoryNeeded:";
60      //
61      // memoryNeededTextBox
62      //
63      this.memoryNeededTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
64                  | System.Windows.Forms.AnchorStyles.Right)));
65      this.memoryNeededTextBox.Location = new System.Drawing.Point(107, 47);
66      this.memoryNeededTextBox.Name = "memoryNeededTextBox";
67      this.memoryNeededTextBox.Size = new System.Drawing.Size(658, 20);
68      this.memoryNeededTextBox.TabIndex = 9;
69      this.memoryNeededTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.memoryNeededTextBox_Validating);
70      this.memoryNeededTextBox.Validated += new System.EventHandler(this.memoryNeededTextBox_Validated);
71      //
72      // coresNeededTextBox
73      //
74      this.coresNeededTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
75                  | System.Windows.Forms.AnchorStyles.Right)));
76      this.coresNeededTextBox.Location = new System.Drawing.Point(107, 25);
77      this.coresNeededTextBox.Name = "coresNeededTextBox";
78      this.coresNeededTextBox.Size = new System.Drawing.Size(658, 20);
79      this.coresNeededTextBox.TabIndex = 8;
80      this.coresNeededTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.coresNeededTextBox_Validating);
81      this.coresNeededTextBox.Validated += new System.EventHandler(this.coresNeededTextBox_Validated);
82      //
83      // optimizerTypeLabel
84      //
85      this.optimizerTypeLabel.AutoSize = true;
86      this.optimizerTypeLabel.Location = new System.Drawing.Point(6, 3);
87      this.optimizerTypeLabel.Name = "optimizerTypeLabel";
88      this.optimizerTypeLabel.Size = new System.Drawing.Size(77, 13);
89      this.optimizerTypeLabel.TabIndex = 19;
90      this.optimizerTypeLabel.Text = "OptimizerType:";
91      //
92      // optimizerTypeTextBox
93      //
94      this.optimizerTypeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
95                  | System.Windows.Forms.AnchorStyles.Right)));
96      this.optimizerTypeTextBox.Location = new System.Drawing.Point(107, 3);
97      this.optimizerTypeTextBox.Name = "optimizerTypeTextBox";
98      this.optimizerTypeTextBox.Size = new System.Drawing.Size(658, 20);
99      this.optimizerTypeTextBox.TabIndex = 20;
100      //
101      // computeInParallelCheckBox
102      //
103      this.computeInParallelCheckBox.AutoSize = true;
104      this.computeInParallelCheckBox.Location = new System.Drawing.Point(107, 74);
105      this.computeInParallelCheckBox.Name = "computeInParallelCheckBox";
106      this.computeInParallelCheckBox.Size = new System.Drawing.Size(15, 14);
107      this.computeInParallelCheckBox.TabIndex = 21;
108      this.computeInParallelCheckBox.UseVisualStyleBackColor = true;
109      this.computeInParallelCheckBox.CheckedChanged += new System.EventHandler(this.computeInParallelCheckBox_CheckedChanged);
110      //
111      // computeInParallelLabel
112      //
113      this.computeInParallelLabel.AutoSize = true;
114      this.computeInParallelLabel.Location = new System.Drawing.Point(6, 74);
115      this.computeInParallelLabel.Name = "computeInParallelLabel";
116      this.computeInParallelLabel.Size = new System.Drawing.Size(95, 13);
117      this.computeInParallelLabel.TabIndex = 22;
118      this.computeInParallelLabel.Text = "ComputeInParallel:";
119      //
120      // jobConfigListView
121      //
122      this.jobConfigListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
123                  | System.Windows.Forms.AnchorStyles.Left)
124                  | System.Windows.Forms.AnchorStyles.Right)));
125      this.jobConfigListView.Caption = "JobConfigListView";
126      this.jobConfigListView.Content = null;
127      this.jobConfigListView.Location = new System.Drawing.Point(3, 3);
128      this.jobConfigListView.Name = "jobConfigListView";
129      this.jobConfigListView.ReadOnly = false;
130      this.jobConfigListView.Size = new System.Drawing.Size(762, 387);
131      this.jobConfigListView.TabIndex = 23;
132      //
133      // tabControl
134      //
135      this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
136                  | System.Windows.Forms.AnchorStyles.Left)
137                  | System.Windows.Forms.AnchorStyles.Right)));
138      this.tabControl.Controls.Add(this.configurationTabPage);
139      this.tabControl.Controls.Add(this.childJobsTabPage);
140      this.tabControl.Location = new System.Drawing.Point(3, 3);
141      this.tabControl.Name = "tabControl";
142      this.tabControl.SelectedIndex = 0;
143      this.tabControl.Size = new System.Drawing.Size(776, 419);
144      this.tabControl.TabIndex = 24;
145      //
146      // configurationTabPage
147      //
148      this.configurationTabPage.Controls.Add(this.optimizerTypeLabel);
149      this.configurationTabPage.Controls.Add(this.coresNeededLabel);
150      this.configurationTabPage.Controls.Add(this.computeInParallelLabel);
151      this.configurationTabPage.Controls.Add(this.memoryNeededLabel);
152      this.configurationTabPage.Controls.Add(this.computeInParallelCheckBox);
153      this.configurationTabPage.Controls.Add(this.memoryNeededTextBox);
154      this.configurationTabPage.Controls.Add(this.optimizerTypeTextBox);
155      this.configurationTabPage.Controls.Add(this.coresNeededTextBox);
156      this.configurationTabPage.Location = new System.Drawing.Point(4, 22);
157      this.configurationTabPage.Name = "configurationTabPage";
158      this.configurationTabPage.Padding = new System.Windows.Forms.Padding(3);
159      this.configurationTabPage.Size = new System.Drawing.Size(768, 393);
160      this.configurationTabPage.TabIndex = 0;
161      this.configurationTabPage.Text = "Configuration";
162      this.configurationTabPage.UseVisualStyleBackColor = true;
163      //
164      // childJobsTabPage
165      //
166      this.childJobsTabPage.Controls.Add(this.jobConfigListView);
167      this.childJobsTabPage.Location = new System.Drawing.Point(4, 22);
168      this.childJobsTabPage.Name = "childJobsTabPage";
169      this.childJobsTabPage.Padding = new System.Windows.Forms.Padding(3);
170      this.childJobsTabPage.Size = new System.Drawing.Size(768, 393);
171      this.childJobsTabPage.TabIndex = 1;
172      this.childJobsTabPage.Text = "Child Jobs";
173      this.childJobsTabPage.UseVisualStyleBackColor = true;
174      //
175      // JobConfigView
176      //
177      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
178      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
179      this.Controls.Add(this.tabControl);
180      this.Name = "JobConfigView";
181      this.Size = new System.Drawing.Size(782, 425);
182      this.tabControl.ResumeLayout(false);
183      this.configurationTabPage.ResumeLayout(false);
184      this.configurationTabPage.PerformLayout();
185      this.childJobsTabPage.ResumeLayout(false);
186      this.ResumeLayout(false);
187
188    }
189
190    #endregion
191
192    private System.Windows.Forms.Label coresNeededLabel;
193    private System.Windows.Forms.Label memoryNeededLabel;
194    private System.Windows.Forms.TextBox memoryNeededTextBox;
195    private System.Windows.Forms.TextBox coresNeededTextBox;
196    private System.Windows.Forms.Label optimizerTypeLabel;
197    private System.Windows.Forms.TextBox optimizerTypeTextBox;
198    private System.Windows.Forms.CheckBox computeInParallelCheckBox;
199    private System.Windows.Forms.Label computeInParallelLabel;
200    private JobConfigListView jobConfigListView;
201    private System.Windows.Forms.TabControl tabControl;
202    private System.Windows.Forms.TabPage configurationTabPage;
203    private System.Windows.Forms.TabPage childJobsTabPage;
204
205  }
206}
Note: See TracBrowser for help on using the repository browser.