- Timestamp:
- 10/04/11 10:00:38 (13 years ago)
- Location:
- branches/HeuristicLab.Hive-3.4/sources
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave.App/3.3/MainWindow.cs
r6834 r6863 52 52 if (WindowState == FormWindowState.Minimized) { 53 53 Hide(); 54 } /*else if (Visible == false) { 55 Show(); 56 } */ 54 } 57 55 } 58 56 } -
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave/3.3/Core.cs
r6743 r6863 55 55 56 56 public Core() { 57 var log = new ThreadSafeLog( new Log(Settings.Default.MaxLogCount));57 var log = new ThreadSafeLog(Settings.Default.MaxLogCount); 58 58 this.pluginManager = new PluginManager(WcfService.Instance, log); 59 59 this.taskManager = new TaskManager(pluginManager, log); -
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive/3.3/RefreshableJob.cs
r6834 r6863 193 193 this.refreshAutomatically = true; 194 194 this.Job = new Job(); 195 this.log = new ThreadSafeLog( new Log());195 this.log = new ThreadSafeLog(); 196 196 this.jobDownloader = new ConcurrentTaskDownloader<ItemTask>(2, 2); 197 197 this.jobDownloader.ExceptionOccured += new EventHandler<EventArgs<Exception>>(jobDownloader_ExceptionOccured); … … 201 201 this.refreshAutomatically = true; 202 202 this.Job = hiveExperiment; 203 this.log = new ThreadSafeLog( new Log());203 this.log = new ThreadSafeLog(); 204 204 this.jobDownloader = new ConcurrentTaskDownloader<ItemTask>(2, 2); 205 205 this.jobDownloader.ExceptionOccured += new EventHandler<EventArgs<Exception>>(jobDownloader_ExceptionOccured); -
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.HiveEngine/3.3/HiveEngine.cs
r6743 r6863 98 98 this.ResourceNames = "HEAL"; 99 99 this.Priority = 0; 100 this.log = new ThreadSafeLog( this.log);100 this.log = new ThreadSafeLog(); 101 101 this.IsAllowedPrivileged = ServiceLocator.Instance.CallHiveService((s) => s.IsAllowedPrivileged()); 102 102 }
Note: See TracChangeset
for help on using the changeset viewer.