Changeset 1448
- Timestamp:
- 03/27/09 13:56:56 (16 years ago)
- Location:
- trunk/sources/HeuristicLab.Hive.Engine
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Hive.Engine/HeuristicLabHiveEnginePlugin.cs
r1432 r1448 32 32 [PluginFile(Filename = "HeuristicLab.Hive.Engine-3.2.dll", Filetype = PluginFileType.Assembly)] 33 33 [Dependency(Dependency = "HeuristicLab.Core-3.2")] 34 [Dependency(Dependency = "HeuristicLab.Hive.JobBase ")]34 [Dependency(Dependency = "HeuristicLab.Hive.JobBase-3.2")] 35 35 public class HeuristicLabHiveEnginePlugin : PluginBase { 36 36 } -
trunk/sources/HeuristicLab.Hive.Engine/HiveEngineEditor.Designer.cs
r1432 r1448 86 86 // snapshotButton 87 87 // 88 this.snapshotButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); 88 89 this.snapshotButton.Location = new System.Drawing.Point(294, 457); 89 90 this.snapshotButton.Name = "snapshotButton"; … … 95 96 // urlTextBox 96 97 // 98 this.urlTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); 97 99 this.urlTextBox.Location = new System.Drawing.Point(526, 459); 98 100 this.urlTextBox.Name = "urlTextBox"; … … 102 104 // urlLabel 103 105 // 106 this.urlLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); 104 107 this.urlLabel.AutoSize = true; 105 108 this.urlLabel.Location = new System.Drawing.Point(523, 444); … … 118 121 this.Name = "HiveEngineEditor"; 119 122 this.Size = new System.Drawing.Size(827, 480); 120 this.Controls.SetChildIndex(this.urlLabel, 0);121 this.Controls.SetChildIndex(this.urlTextBox, 0);122 this.Controls.SetChildIndex(this.snapshotButton, 0);123 123 this.Controls.SetChildIndex(this.executeButton, 0); 124 124 this.Controls.SetChildIndex(this.abortButton, 0); … … 127 127 this.Controls.SetChildIndex(this.executionTimeLabel, 0); 128 128 this.Controls.SetChildIndex(this.executionTimeTextBox, 0); 129 this.Controls.SetChildIndex(this.urlLabel, 0); 130 this.Controls.SetChildIndex(this.urlTextBox, 0); 131 this.Controls.SetChildIndex(this.snapshotButton, 0); 129 132 this.splitContainer1.Panel1.ResumeLayout(false); 130 133 this.splitContainer1.Panel2.ResumeLayout(false); -
trunk/sources/HeuristicLab.Hive.Engine/ServiceLocator.cs
r1440 r1448 31 31 internal static IExecutionEngineFacade CreateExecutionEngineFacade(string url) { 32 32 NetTcpBinding binding = 33 new NetTcpBinding(); 34 35 binding.MaxReceivedMessageSize = 5000000; 33 new NetTcpBinding(SecurityMode.None, true); 36 34 37 35 ChannelFactory<IExecutionEngineFacade> factory =
Note: See TracChangeset
for help on using the changeset viewer.