Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/07/10 10:22:27 (14 years ago)
Author:
cneumuel
Message:
  • created HiveClient which shows an overview over all submitted HiveExperiments
  • its possible to download all submitted HiveExperiments including results
  • Experiments are now sent as a whole to the Hive and the Hive-Slaves take care of creating child-jobs (if necessary). The parent job is then paused and will be reactivated when all child-jobs are finished
  • WcfService-Clients are now consistently managed by WcfServicePool which allows to use IDisposable-Pattern and always keeps exactly one proxy-object until all callers disposed them.
  • created ProgressView which is able to lock a View and display progress of an action. It also allows to simulate progress if no progress-information is available so that users don't get too nervous while waiting.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.3-Hive/sources/HeuristicLab.Hive/HeuristicLab.Hive.Experiment.Views/3.3/HeuristicLab.Hive.Experiment.Views-3.3.csproj

    r4342 r4368  
    1717  </PropertyGroup>
    1818  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
    19     <PlatformTarget>AnyCPU</PlatformTarget>
     19    <PlatformTarget>x64</PlatformTarget>
    2020    <DebugSymbols>true</DebugSymbols>
    2121    <DebugType>full</DebugType>
     
    5454    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
    5555  </PropertyGroup>
     56  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
     57    <DebugSymbols>true</DebugSymbols>
     58    <OutputPath>bin\x64\Debug\</OutputPath>
     59    <PlatformTarget>x64</PlatformTarget>
     60    <CodeAnalysisLogFile>bin\Debug\HeuristicLab.Hive.Experiment.Views-3.3.dll.CodeAnalysisLog.xml</CodeAnalysisLogFile>
     61    <CodeAnalysisUseTypeNameInSuppression>true</CodeAnalysisUseTypeNameInSuppression>
     62    <CodeAnalysisModuleSuppressionsFile>GlobalSuppressions.cs</CodeAnalysisModuleSuppressionsFile>
     63    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
     64    <CodeAnalysisRuleSetDirectories>;c:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\\Rule Sets</CodeAnalysisRuleSetDirectories>
     65    <CodeAnalysisIgnoreBuiltInRuleSets>false</CodeAnalysisIgnoreBuiltInRuleSets>
     66    <CodeAnalysisRuleDirectories>;c:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\FxCop\\Rules</CodeAnalysisRuleDirectories>
     67    <CodeAnalysisIgnoreBuiltInRules>false</CodeAnalysisIgnoreBuiltInRules>
     68  </PropertyGroup>
     69  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
     70    <OutputPath>bin\x64\Release\</OutputPath>
     71    <PlatformTarget>x64</PlatformTarget>
     72    <CodeAnalysisLogFile>bin\Release\HeuristicLab.Hive.Experiment.Views-3.3.dll.CodeAnalysisLog.xml</CodeAnalysisLogFile>
     73    <CodeAnalysisUseTypeNameInSuppression>true</CodeAnalysisUseTypeNameInSuppression>
     74    <CodeAnalysisModuleSuppressionsFile>GlobalSuppressions.cs</CodeAnalysisModuleSuppressionsFile>
     75    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
     76    <CodeAnalysisRuleSetDirectories>;c:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\\Rule Sets</CodeAnalysisRuleSetDirectories>
     77    <CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets>
     78    <CodeAnalysisRuleDirectories>;c:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\FxCop\\Rules</CodeAnalysisRuleDirectories>
     79    <CodeAnalysisIgnoreBuiltInRules>false</CodeAnalysisIgnoreBuiltInRules>
     80  </PropertyGroup>
    5681  <ItemGroup>
    5782    <Reference Include="HeuristicLab.Collections-3.3">
     
    7297    <Reference Include="HeuristicLab.Data-3.3">
    7398      <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.Data-3.3.dll</HintPath>
     99    </Reference>
     100    <Reference Include="HeuristicLab.Hive.Server.Console-3.3">
     101      <HintPath>..\..\HeuristicLab.Hive.Server.Console\3.3\obj\Debug\HeuristicLab.Hive.Server.Console-3.3.dll</HintPath>
    74102    </Reference>
    75103    <Reference Include="HeuristicLab.MainForm-3.3">
     
    114142    </Compile>
    115143    <Compile Include="ControlExtensions.cs" />
     144    <Compile Include="Form1.cs">
     145      <SubType>Form</SubType>
     146    </Compile>
     147    <Compile Include="Form1.Designer.cs">
     148      <DependentUpon>Form1.cs</DependentUpon>
     149    </Compile>
     150    <Compile Include="TestApp.cs" />
     151    <Compile Include="JobConfigListView.cs">
     152      <SubType>UserControl</SubType>
     153    </Compile>
     154    <Compile Include="JobConfigListView.Designer.cs">
     155      <DependentUpon>JobConfigListView.cs</DependentUpon>
     156    </Compile>
     157    <Compile Include="JobConfigView.cs">
     158      <SubType>UserControl</SubType>
     159    </Compile>
     160    <Compile Include="JobConfigView.Designer.cs">
     161      <DependentUpon>JobConfigView.cs</DependentUpon>
     162    </Compile>
     163    <Compile Include="HiveExperimentListView.cs">
     164      <SubType>UserControl</SubType>
     165    </Compile>
     166    <Compile Include="HiveExperimentListView.Designer.cs">
     167      <DependentUpon>HiveExperimentListView.cs</DependentUpon>
     168    </Compile>
     169    <Compile Include="HiveClientView.cs">
     170      <SubType>UserControl</SubType>
     171    </Compile>
     172    <Compile Include="HiveClientView.Designer.cs">
     173      <DependentUpon>HiveClientView.cs</DependentUpon>
     174    </Compile>
    116175    <Compile Include="HeuristicLabHiveExperimentViewsPlugin.cs" />
    117176    <Compile Include="HiveExperimentView.cs">
     
    134193    </Compile>
    135194    <Compile Include="MenuItems\ConnectionSetupMenuItem.cs" />
     195    <Compile Include="ProgressView.cs">
     196      <SubType>UserControl</SubType>
     197    </Compile>
     198    <Compile Include="ProgressView.Designer.cs">
     199      <DependentUpon>ProgressView.cs</DependentUpon>
     200    </Compile>
    136201    <Compile Include="Properties\AssemblyInfo.cs" />
    137202    <Compile Include="Properties\Resources.Designer.cs">
     
    167232      <DependentUpon>ConnectionSetupView.cs</DependentUpon>
    168233    </EmbeddedResource>
     234    <EmbeddedResource Include="Form1.resx">
     235      <DependentUpon>Form1.cs</DependentUpon>
     236    </EmbeddedResource>
     237    <EmbeddedResource Include="JobConfigView.resx">
     238      <DependentUpon>JobConfigView.cs</DependentUpon>
     239    </EmbeddedResource>
     240    <EmbeddedResource Include="HiveClientView.resx">
     241      <DependentUpon>HiveClientView.cs</DependentUpon>
     242    </EmbeddedResource>
    169243    <EmbeddedResource Include="HiveExperimentView.resx">
    170244      <DependentUpon>HiveExperimentView.cs</DependentUpon>
     
    172246    <EmbeddedResource Include="JobItemView.resx">
    173247      <DependentUpon>JobItemView.cs</DependentUpon>
     248    </EmbeddedResource>
     249    <EmbeddedResource Include="ProgressView.resx">
     250      <DependentUpon>ProgressView.cs</DependentUpon>
    174251    </EmbeddedResource>
    175252    <EmbeddedResource Include="Properties\Resources.resx">
Note: See TracChangeset for help on using the changeset viewer.