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/3.3/HeuristicLab.Hive-3.3.csproj

    r4302 r4368  
    2424    <WarningLevel>4</WarningLevel>
    2525    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
     26    <PlatformTarget>AnyCPU</PlatformTarget>
    2627  </PropertyGroup>
    2728  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
     
    4950    <PlatformTarget>x86</PlatformTarget>
    5051    <OutputPath>bin\x86\Release\</OutputPath>
     52  </PropertyGroup>
     53  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
     54    <DebugSymbols>true</DebugSymbols>
     55    <OutputPath>bin\x64\Debug\</OutputPath>
     56    <DefineConstants>DEBUG;TRACE</DefineConstants>
     57    <DebugType>full</DebugType>
     58    <PlatformTarget>x64</PlatformTarget>
     59    <CodeAnalysisLogFile>bin\Debug\HeuristicLab.Hive-3.3.dll.CodeAnalysisLog.xml</CodeAnalysisLogFile>
     60    <CodeAnalysisUseTypeNameInSuppression>true</CodeAnalysisUseTypeNameInSuppression>
     61    <CodeAnalysisModuleSuppressionsFile>GlobalSuppressions.cs</CodeAnalysisModuleSuppressionsFile>
     62    <ErrorReport>prompt</ErrorReport>
     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    <DefineConstants>TRACE</DefineConstants>
     72    <Optimize>true</Optimize>
     73    <DebugType>pdbonly</DebugType>
     74    <PlatformTarget>x64</PlatformTarget>
     75    <CodeAnalysisLogFile>bin\Release\HeuristicLab.Hive-3.3.dll.CodeAnalysisLog.xml</CodeAnalysisLogFile>
     76    <CodeAnalysisUseTypeNameInSuppression>true</CodeAnalysisUseTypeNameInSuppression>
     77    <CodeAnalysisModuleSuppressionsFile>GlobalSuppressions.cs</CodeAnalysisModuleSuppressionsFile>
     78    <ErrorReport>prompt</ErrorReport>
     79    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
     80    <CodeAnalysisRuleSetDirectories>;c:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\\Rule Sets</CodeAnalysisRuleSetDirectories>
     81    <CodeAnalysisIgnoreBuiltInRuleSets>false</CodeAnalysisIgnoreBuiltInRuleSets>
     82    <CodeAnalysisRuleDirectories>;c:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\FxCop\\Rules</CodeAnalysisRuleDirectories>
    5183  </PropertyGroup>
    5284  <ItemGroup>
Note: See TracChangeset for help on using the changeset viewer.