Changeset 5294
- Timestamp:
- 01/14/11 00:43:03 (14 years ago)
- Location:
- branches/HeuristicLab.Hive-3.3/sources/HeuristicLab.Hive
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Hive-3.3/sources/HeuristicLab.Hive/HeuristicLab.Hive 3.3.sln
r5268 r5294 29 29 ConfigMerger.exe = ConfigMerger.exe 30 30 HeuristicLab 3.3.vsmdi = HeuristicLab 3.3.vsmdi 31 HeuristicLab.Hive 3.3 3.vsmdi = HeuristicLab.Hive 3.33.vsmdi31 HeuristicLab.Hive 3.34.vsmdi = HeuristicLab.Hive 3.34.vsmdi 32 32 LocalTestRun.testrunconfig = LocalTestRun.testrunconfig 33 33 PreBuildEvent.cmd = PreBuildEvent.cmd … … 108 108 Global 109 109 GlobalSection(TestCaseManagementSettings) = postSolution 110 CategoryFile = HeuristicLab.Hive 3.3 3.vsmdi110 CategoryFile = HeuristicLab.Hive 3.34.vsmdi 111 111 EndGlobalSection 112 112 GlobalSection(SolutionConfigurationPlatforms) = preSolution -
branches/HeuristicLab.Hive-3.3/sources/HeuristicLab.Hive/HeuristicLab.Hive.ExperimentManager/3.3/HiveJob.cs
r5181 r5294 43 43 get { 44 44 if (jobDto.Id == Guid.Empty) { // not yet uploaded 45 return HeuristicLab.Common.Resources.VS 2008ImageLibrary.Event;45 return HeuristicLab.Common.Resources.VSImageLibrary.Event; 46 46 } else { 47 if (jobDto.State == JobState.Offline) return HeuristicLab.Common.Resources.VS 2008ImageLibrary.ExecutablePrepared;48 else if (jobDto.State == JobState.WaitForChildJobs) return HeuristicLab.Common.Resources.VS 2008ImageLibrary.ExecutablePrepared;49 else if (jobDto.State == JobState.Calculating) return HeuristicLab.Common.Resources.VS 2008ImageLibrary.ExecutableStarted;50 else if (jobDto.State == JobState.Aborted) return HeuristicLab.Common.Resources.VS 2008ImageLibrary.ExecutableStopped;51 else if (jobDto.State == JobState.Failed) return HeuristicLab.Common.Resources.VS 2008ImageLibrary.Error;52 else if (jobDto.State == JobState.Finished) return HeuristicLab.Common.Resources.VS 2008ImageLibrary.ExecutableStopped;53 else return HeuristicLab.Common.Resources.VS 2008ImageLibrary.Event;47 if (jobDto.State == JobState.Offline) return HeuristicLab.Common.Resources.VSImageLibrary.ExecutablePrepared; 48 else if (jobDto.State == JobState.WaitForChildJobs) return HeuristicLab.Common.Resources.VSImageLibrary.ExecutablePrepared; 49 else if (jobDto.State == JobState.Calculating) return HeuristicLab.Common.Resources.VSImageLibrary.ExecutableStarted; 50 else if (jobDto.State == JobState.Aborted) return HeuristicLab.Common.Resources.VSImageLibrary.ExecutableStopped; 51 else if (jobDto.State == JobState.Failed) return HeuristicLab.Common.Resources.VSImageLibrary.Error; 52 else if (jobDto.State == JobState.Finished) return HeuristicLab.Common.Resources.VSImageLibrary.ExecutableStopped; 53 else return HeuristicLab.Common.Resources.VSImageLibrary.Event; 54 54 } 55 55 } -
branches/HeuristicLab.Hive-3.3/sources/HeuristicLab.Hive/HeuristicLab.HiveEngine/3.3/OperationJob.cs
r5136 r5294 118 118 119 119 public override Image ItemImage { 120 get { return HeuristicLab.Common.Resources.VS 2008ImageLibrary.Operator; }120 get { return HeuristicLab.Common.Resources.VSImageLibrary.Operator; } 121 121 } 122 122
Note: See TracChangeset
for help on using the changeset viewer.