This is an automated email from the ASF dual-hosted git repository. gvvinblade pushed a change to branch ignite-12248 in repository https://gitbox.apache.org/repos/asf/ignite.git.
from accb91d fix after merge add 5b9df9e IGNITE-12265 Include org.apache.ignite.client to javadoc - Fixes #6950. add 077dcf6 IGNITE-9463: [ML] Update ML tutorial with new model composition/update features (#6952) add 5933b4e IGNITE-12231 Fixed logging RollbackRecords to WAL add 20b3fb8 IGNITE-10554 .NET: Fix NuGet jar file handling add 77215eb IGNITE-9936: [ML] Make readable the models ouput in RandomForestClassificationExample (#6957) add 8ed87ac IGNITE-12269: [ML] The method printTree is corrupted on the example (#6958) add 8922481 IGNITE-11586 Update C++ build documentation to include OpenSLL dependency new fc01a9d Merge branch 'ignite-master' into ignite-12248 The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: .../GDBOnTreesClassificationTrainerExample.java | 2 +- ...ing_With_Stacking.java => Step_10_Bagging.java} | 61 +++++----- ...ng_With_Stacking.java => Step_11_Boosting.java} | 57 +++++---- ...ith_Stacking.java => Step_12_Model_Update.java} | 65 ++++++----- .../ml/tutorial/Step_9_Scaling_With_Stacking.java | 9 +- .../ml/tutorial/TutorialStepByStepExample.java | 23 ++-- ...RandomSearch.java => Step_13_RandomSearch.java} | 2 +- ...java => Step_14_Parallel_BrutForce_Search.java} | 2 +- ...ch.java => Step_15_Parallel_Random_Search.java} | 2 +- ...ava => Step_16_Genetic_Programming_Search.java} | 2 +- ...ep_17_Parallel_Genetic_Programming_Search.java} | 2 +- .../hyperparametertuning/package-info.java | 21 ++++ .../org/apache/ignite/client/package-info.java | 22 ++++ .../dht/topology/GridDhtPartitionTopologyImpl.java | 16 ++- .../cache/transactions/IgniteTxHandler.java | 91 ++++++++------- .../org/apache/ignite/ml/tree/DecisionTree.java | 55 +++++---- .../ignite/ml/tree/randomforest/data/TreeNode.java | 17 ++- .../ignite/ml/tree/randomforest/data/TreeRoot.java | 60 +++++++++- modules/platforms/cpp/DEVNOTES.txt | 1 + .../Interop/PlatformBenchmarkBase.cs | 4 +- .../Apache.Ignite.Core.Tests.DotNetCore.csproj | 3 + .../Apache.Ignite.Core.Tests.NuGet.csproj | 25 ++-- .../Apache.Ignite.Core.Tests.NuGet/StartupTest.cs | 14 ++- .../Apache.Ignite.Core.Tests.csproj | 1 + .../Serializable/AdvancedSerializationTest.cs | 2 +- .../Binary/Serializable/SqlDmlTest.cs | 2 +- .../Cache/DataRegionMetricsTest.cs | 2 +- .../Cache/DataStorageMetricsTest.cs | 2 +- .../Cache/PartitionPreloadTest.cs | 3 +- .../Cache/PersistenceTest.cs | 2 +- .../Cache/PersistentStoreTestObsolete.cs | 3 +- .../Cache/Query/Linq/CacheLinqTest.Strings.cs | 2 +- .../Client/Cache/CacheTestSsl.cs | 2 +- .../Client/Cache/ScanQueryTest.cs | 4 +- .../Client/ClientConnectionTest.cs | 2 +- .../Client/IgniteClientConfigurationTest.cs | 4 +- .../Compute/ComputeApiTest.JavaTask.cs | 2 +- .../Deployment/PeerAssemblyLoadingTest.cs | 4 +- .../PeerAssemblyLoadingVersioningTest.cs | 3 +- .../Apache.Ignite.Core.Tests/DeploymentTest.cs | 130 ++++++++++++++------- .../Apache.Ignite.Core.Tests/ExecutableTest.cs | 2 +- .../IgniteConfigurationTest.cs | 6 +- .../Apache.Ignite.Core.Tests/IgniteManagerTest.cs | 6 +- .../dotnet/Apache.Ignite.Core.Tests/PathUtils.cs | 67 +++++++++++ .../Process/IgniteProcess.cs | 8 +- .../Services/ServicesTest.cs | 4 +- .../Apache.Ignite.Core.Tests/TestUtils.Windows.cs | 13 +-- .../Apache.Ignite.Core/Apache.Ignite.Core.nuspec | 26 ++--- .../Apache.Ignite.Core/Apache.Ignite.targets | 25 ++++ .../Apache.Ignite.Core/Impl/Common/Classpath.cs | 17 ++- .../Apache.Ignite.Core/Impl/Common/IgniteHome.cs | 44 ++++--- .../Apache.Ignite.Core/Impl/IgniteManager.cs | 30 ++++- .../dotnet/Apache.Ignite.Core/Impl/IgniteUtils.cs | 31 ----- .../Impl/Unmanaged/Jni/AppDomains.cs | 2 +- .../Apache.Ignite.Core/Impl/Unmanaged/Jni/Jvm.cs | 2 +- .../Impl/Unmanaged/Jni/JvmDll.cs | 2 +- .../dotnet/Apache.Ignite.Core/NuGet/Install.ps1 | 41 ------- .../dotnet/Apache.Ignite.Core/NuGet/PostBuild.ps1 | 20 ---- .../dotnet/Apache.Ignite.Core/NuGet/Uninstall.ps1 | 35 ------ .../Apache.Ignite.Core/Properties/AssemblyInfo.cs | 2 +- parent/pom.xml | 4 + pom.xml | 2 +- 62 files changed, 657 insertions(+), 458 deletions(-) copy examples/src/main/java/org/apache/ignite/examples/ml/tutorial/{Step_9_Scaling_With_Stacking.java => Step_10_Bagging.java} (72%) copy examples/src/main/java/org/apache/ignite/examples/ml/tutorial/{Step_9_Scaling_With_Stacking.java => Step_11_Boosting.java} (70%) copy examples/src/main/java/org/apache/ignite/examples/ml/tutorial/{Step_9_Scaling_With_Stacking.java => Step_12_Model_Update.java} (75%) rename examples/src/main/java/org/apache/ignite/examples/ml/tutorial/hyperparametertuning/{Step_10_RandomSearch.java => Step_13_RandomSearch.java} (99%) rename examples/src/main/java/org/apache/ignite/examples/ml/tutorial/hyperparametertuning/{Step_11_Parallel_BrutForce_Search.java => Step_14_Parallel_BrutForce_Search.java} (99%) rename examples/src/main/java/org/apache/ignite/examples/ml/tutorial/hyperparametertuning/{Step_12_Parallel_Random_Search.java => Step_15_Parallel_Random_Search.java} (99%) rename examples/src/main/java/org/apache/ignite/examples/ml/tutorial/hyperparametertuning/{Step_13_Genetic_Programming_Search.java => Step_16_Genetic_Programming_Search.java} (99%) rename examples/src/main/java/org/apache/ignite/examples/ml/tutorial/hyperparametertuning/{Step_14_Parallel_Genetic_Programming_Search.java => Step_17_Parallel_Genetic_Programming_Search.java} (99%) create mode 100644 examples/src/main/java/org/apache/ignite/examples/ml/tutorial/hyperparametertuning/package-info.java create mode 100644 modules/core/src/main/java/org/apache/ignite/client/package-info.java create mode 100644 modules/platforms/dotnet/Apache.Ignite.Core.Tests/PathUtils.cs create mode 100644 modules/platforms/dotnet/Apache.Ignite.Core/Apache.Ignite.targets delete mode 100644 modules/platforms/dotnet/Apache.Ignite.Core/NuGet/Install.ps1 delete mode 100644 modules/platforms/dotnet/Apache.Ignite.Core/NuGet/PostBuild.ps1 delete mode 100644 modules/platforms/dotnet/Apache.Ignite.Core/NuGet/Uninstall.ps1