Changeset 1626 for trunk/sources
- Timestamp:
- 04/23/09 14:25:22 (16 years ago)
- Location:
- trunk/sources
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Hive.Contracts/3.2/BusinessObjects/JobResult.cs
r1377 r1626 38 38 public double Percentage { get; set; } 39 39 [DataMember] 40 public DateTime timestamp { get; set; }40 public DateTime Timestamp { get; set; } 41 41 [DataMember] 42 42 public ClientInfo Client { get; set; } -
trunk/sources/HeuristicLab.Hive.Server.Console/3.2/HiveServerManagementConsole.cs
r1598 r1626 716 716 double percentage = jobRes.Obj.Percentage * 100; 717 717 curSnapshot.SubItems.Add(percentage.ToString() + " %"); 718 curSnapshot.SubItems.Add(jobRes.Obj. timestamp.ToString());718 curSnapshot.SubItems.Add(jobRes.Obj.Timestamp.ToString()); 719 719 lvSnapshots.Items.Add(curSnapshot); 720 720 } -
trunk/sources/HeuristicLab.Hive.Server.Core/3.2/JobManager.cs
r1577 r1626 59 59 // if lastJobResult was before the current jobResult the lastJobResult must be updated 60 60 if (lastJobResult == null || 61 (jR. timestamp > lastJobResult.timestamp))61 (jR.Timestamp > lastJobResult.Timestamp)) 62 62 lastJobResult = jR; 63 63 }
Note: See TracChangeset
for help on using the changeset viewer.