Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive-3.3/sources/HeuristicLab.Hive/HeuristicLab.HiveEngine/3.3/Views/HiveEngineView.Designer.cs @ 5153

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

#1260

  • increased timeouts for sent jobs (which are needed if the jobs take long time to deserialize on slave)
  • added DeleteJob to ClientService
  • made optimizer actually Pause instead of Stop when stop is called explicitly (so they can be resumed later)
  • temporarily disabled job-abortion from server because it aborted jobs which took too long to deserialize on slaves (this issue needs to be investigated)
  • reduced locking of engines on slave so that the deserialization does not block heartbeats

#1347

  • worked on HiveEngine
  • added test project for HiveEngine
File size: 2.8 KB
Line 
1namespace HeuristicLab.HiveEngine.Views {
2  partial class HiveEngineView {
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.resourceIdsLabel = new System.Windows.Forms.Label();
27      this.resourceIdsTextBox = new System.Windows.Forms.TextBox();
28      this.SuspendLayout();
29      //
30      // logView
31      //
32      this.logView.Location = new System.Drawing.Point(0, 49);
33      this.logView.Size = new System.Drawing.Size(430, 302);
34      //
35      // resourceIdsLabel
36      //
37      this.resourceIdsLabel.AutoSize = true;
38      this.resourceIdsLabel.Location = new System.Drawing.Point(3, 26);
39      this.resourceIdsLabel.Name = "resourceIdsLabel";
40      this.resourceIdsLabel.Size = new System.Drawing.Size(70, 13);
41      this.resourceIdsLabel.TabIndex = 3;
42      this.resourceIdsLabel.Text = "ResourceIds:";
43      //
44      // resourceIdsTextBox
45      //
46      this.resourceIdsTextBox.Location = new System.Drawing.Point(73, 23);
47      this.resourceIdsTextBox.Name = "resourceIdsTextBox";
48      this.resourceIdsTextBox.Size = new System.Drawing.Size(357, 20);
49      this.resourceIdsTextBox.TabIndex = 4;
50      this.resourceIdsTextBox.Text = "HEAL";
51      this.resourceIdsTextBox.TextChanged += new System.EventHandler(this.resourceIdsTextBox_TextChanged);
52      //
53      // HiveEngineView
54      //
55      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
56      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
57      this.Controls.Add(this.resourceIdsTextBox);
58      this.Controls.Add(this.resourceIdsLabel);
59      this.Name = "HiveEngineView";
60      this.Controls.SetChildIndex(this.resourceIdsLabel, 0);
61      this.Controls.SetChildIndex(this.resourceIdsTextBox, 0);
62      this.Controls.SetChildIndex(this.logView, 0);
63      this.Controls.SetChildIndex(this.executionTimeLabel, 0);
64      this.Controls.SetChildIndex(this.executionTimeTextBox, 0);
65      this.ResumeLayout(false);
66      this.PerformLayout();
67
68    }
69
70    #endregion
71
72    private System.Windows.Forms.Label resourceIdsLabel;
73    private System.Windows.Forms.TextBox resourceIdsTextBox;
74  }
75}
Note: See TracBrowser for help on using the repository browser.