From b6144cf5d7162307d2fc492208fd94b7ecc20ea7 Mon Sep 17 00:00:00 2001 From: xieguigang Date: Thu, 17 Jun 2021 19:05:49 +0800 Subject: [PATCH] update source file banners --- CloudKit/Centos/SSH.vb | 3 +- CloudKit/Docker/test/Module1.vb | 2 +- CloudKit/ossutil/Extensions.vb | 64 ++++++------- Distribute_computing/HPC_cluster/Cluster.vb | 3 +- .../HPC_cluster/SlaveParallel.vb | 3 +- Distribute_computing/HPC_cluster/Taskhost.vb | 6 +- LINQ/Drivers/Sqlite3/Class1.vb | 44 ++++++++- .../Query/DataSoruce/URIIteratorDriver.vb | 68 +++++++------- LINQ/LINQ/Interpreter/Query/Options.vb | 3 +- .../LINQ/Interpreter/Query/QueryExpression.vb | 2 +- LINQ/LINQ/Runtime/Drivers/DataFrameDriver.vb | 2 +- LINQ/LINQ/Runtime/Drivers/DataSourceDriver.vb | 78 ++++++++-------- LINQ/LINQ/Runtime/Environment.vb | 84 ++++++++--------- LINQ/LINQ/Runtime/GlobalEnvironment.vb | 80 ++++++++-------- LINQ/LINQ/Runtime/Internal/InternalInvoke.vb | 2 +- LINQ/LINQ/Runtime/Internal/Math.vb | 2 +- LINQ/LINQ/Runtime/Registry.vb | 66 ++++++------- LINQ/LINQ/Script/Builders/BinaryBuilder.vb | 11 ++- LINQ/LINQ/Script/Builders/ExpressionTree.vb | 9 +- LINQ/LINQ/Script/StackParser.vb | 11 ++- LINQ/LINQ/Script/SyntaxImplements.vb | 82 ++++++++--------- Parallel/IpcParallel/IPCSocket.vb | 92 +++++++++---------- Parallel/IpcParallel/SlaveTask.vb | 90 +++++++++--------- Parallel/IpcParallel/Stream/ObjectStream.vb | 4 +- Parallel/IpcParallel/TaskBuilder.vb | 86 ++++++++--------- Parallel/ThreadTask/ThreadTask.vb | 2 +- 26 files changed, 468 insertions(+), 431 deletions(-) diff --git a/CloudKit/Centos/SSH.vb b/CloudKit/Centos/SSH.vb index d6ade87..9608b25 100644 --- a/CloudKit/Centos/SSH.vb +++ b/CloudKit/Centos/SSH.vb @@ -1,4 +1,4 @@ -#Region "Microsoft.VisualBasic::ac056aef1c0d20b0d837d18075abe8aa, CloudKit\Centos\SSH.vb" +#Region "Microsoft.VisualBasic::03e6b820c07e260cdb75545b221a7f3b, CloudKit\Centos\SSH.vb" ' Author: ' @@ -71,4 +71,3 @@ Public Class SSH Return $"ssh {user}@{endpoint}:{port}" End Function End Class - diff --git a/CloudKit/Docker/test/Module1.vb b/CloudKit/Docker/test/Module1.vb index 0403a06..89ec5f5 100644 --- a/CloudKit/Docker/test/Module1.vb +++ b/CloudKit/Docker/test/Module1.vb @@ -1,4 +1,4 @@ -#Region "Microsoft.VisualBasic::f23ea0f050c93bd5b9ca84424b5138f4, CloudKit\Docker\test\Module1.vb" +#Region "Microsoft.VisualBasic::a754bf01330f73d1889d37788fb98aec, CloudKit\Docker\test\Module1.vb" ' Author: ' diff --git a/CloudKit/ossutil/Extensions.vb b/CloudKit/ossutil/Extensions.vb index fd51397..46aafe0 100644 --- a/CloudKit/ossutil/Extensions.vb +++ b/CloudKit/ossutil/Extensions.vb @@ -1,41 +1,41 @@ -#Region "Microsoft.VisualBasic::11d186c1f7d96a29615fde5810c6dcf1, CloudKit\ossutil\Extensions.vb" +#Region "Microsoft.VisualBasic::9ce8c46990bc1111d78e1a1b5f43c194, CloudKit\ossutil\Extensions.vb" -' Author: -' -' asuka (amethyst.asuka@gcmodeller.org) -' xie (genetics@smrucc.org) -' xieguigang (xie.guigang@live.com) -' -' Copyright (c) 2018 GPL3 Licensed -' -' -' GNU GENERAL PUBLIC LICENSE (GPL3) -' -' -' This program is free software: you can redistribute it and/or modify -' it under the terms of the GNU General Public License as published by -' the Free Software Foundation, either version 3 of the License, or -' (at your option) any later version. -' -' This program is distributed in the hope that it will be useful, -' but WITHOUT ANY WARRANTY; without even the implied warranty of -' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -' GNU General Public License for more details. -' -' You should have received a copy of the GNU General Public License -' along with this program. If not, see . + ' Author: + ' + ' asuka (amethyst.asuka@gcmodeller.org) + ' xie (genetics@smrucc.org) + ' xieguigang (xie.guigang@live.com) + ' + ' Copyright (c) 2018 GPL3 Licensed + ' + ' + ' GNU GENERAL PUBLIC LICENSE (GPL3) + ' + ' + ' This program is free software: you can redistribute it and/or modify + ' it under the terms of the GNU General Public License as published by + ' the Free Software Foundation, either version 3 of the License, or + ' (at your option) any later version. + ' + ' This program is distributed in the hope that it will be useful, + ' but WITHOUT ANY WARRANTY; without even the implied warranty of + ' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + ' GNU General Public License for more details. + ' + ' You should have received a copy of the GNU General Public License + ' along with this program. If not, see . -' /********************************************************************************/ + ' /********************************************************************************/ -' Summaries: + ' Summaries: -' Module Extensions -' -' Function: ChangeFileSystemContext, IsDirectory, populateTempFile -' -' /********************************************************************************/ + ' Module Extensions + ' + ' Function: ChangeFileSystemContext, IsDirectory, populateTempFile + ' + ' /********************************************************************************/ #End Region diff --git a/Distribute_computing/HPC_cluster/Cluster.vb b/Distribute_computing/HPC_cluster/Cluster.vb index 29a0921..7a79a7d 100644 --- a/Distribute_computing/HPC_cluster/Cluster.vb +++ b/Distribute_computing/HPC_cluster/Cluster.vb @@ -1,4 +1,4 @@ -#Region "Microsoft.VisualBasic::667cf461f26c7a4952024bc8ad44b4ee, Distribute_computing\HPC_cluster\Cluster.vb" +#Region "Microsoft.VisualBasic::a330764d45c38e6f6363cd8cd9b4a805, Distribute_computing\HPC_cluster\Cluster.vb" ' Author: ' @@ -108,4 +108,3 @@ Public Class Cluster End If End Function End Class - diff --git a/Distribute_computing/HPC_cluster/SlaveParallel.vb b/Distribute_computing/HPC_cluster/SlaveParallel.vb index c922fab..b6e92c1 100644 --- a/Distribute_computing/HPC_cluster/SlaveParallel.vb +++ b/Distribute_computing/HPC_cluster/SlaveParallel.vb @@ -1,4 +1,4 @@ -#Region "Microsoft.VisualBasic::748164cffccbe6c360c850c81f7d009f, Distribute_computing\HPC_cluster\SlaveParallel.vb" +#Region "Microsoft.VisualBasic::bf9ec6b534ad14cc077ed8a4e0cfad7e, Distribute_computing\HPC_cluster\SlaveParallel.vb" ' Author: ' @@ -62,4 +62,3 @@ Public Class SlaveParallel Return cli End Function End Class - diff --git a/Distribute_computing/HPC_cluster/Taskhost.vb b/Distribute_computing/HPC_cluster/Taskhost.vb index d692ad5..674fd93 100644 --- a/Distribute_computing/HPC_cluster/Taskhost.vb +++ b/Distribute_computing/HPC_cluster/Taskhost.vb @@ -1,4 +1,4 @@ -#Region "Microsoft.VisualBasic::52a28aab44d5e28b6d80ea6111871c5e, Distribute_computing\HPC_cluster\Taskhost.vb" +#Region "Microsoft.VisualBasic::2e8d9e242aa1480243ef5ae298fcd2b3, Distribute_computing\HPC_cluster\Taskhost.vb" ' Author: ' @@ -166,7 +166,3 @@ Return CLI.ToString() End Function End Class End Namespace - - - - diff --git a/LINQ/Drivers/Sqlite3/Class1.vb b/LINQ/Drivers/Sqlite3/Class1.vb index 875798b..6c482f5 100644 --- a/LINQ/Drivers/Sqlite3/Class1.vb +++ b/LINQ/Drivers/Sqlite3/Class1.vb @@ -1,3 +1,45 @@ -Public Class Class1 +#Region "Microsoft.VisualBasic::2e67bb6e4e5b8829ff378ffe4c371121, LINQ\Drivers\Sqlite3\Class1.vb" + + ' Author: + ' + ' asuka (amethyst.asuka@gcmodeller.org) + ' xie (genetics@smrucc.org) + ' xieguigang (xie.guigang@live.com) + ' + ' Copyright (c) 2018 GPL3 Licensed + ' + ' + ' GNU GENERAL PUBLIC LICENSE (GPL3) + ' + ' + ' This program is free software: you can redistribute it and/or modify + ' it under the terms of the GNU General Public License as published by + ' the Free Software Foundation, either version 3 of the License, or + ' (at your option) any later version. + ' + ' This program is distributed in the hope that it will be useful, + ' but WITHOUT ANY WARRANTY; without even the implied warranty of + ' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + ' GNU General Public License for more details. + ' + ' You should have received a copy of the GNU General Public License + ' along with this program. If not, see . + + + + ' /********************************************************************************/ + + ' Summaries: + + ' Class Class1 + ' + ' + ' + ' /********************************************************************************/ + +#End Region + +Public Class Class1 End Class + diff --git a/LINQ/LINQ/Interpreter/Query/DataSoruce/URIIteratorDriver.vb b/LINQ/LINQ/Interpreter/Query/DataSoruce/URIIteratorDriver.vb index ee5d2ae..42436e5 100644 --- a/LINQ/LINQ/Interpreter/Query/DataSoruce/URIIteratorDriver.vb +++ b/LINQ/LINQ/Interpreter/Query/DataSoruce/URIIteratorDriver.vb @@ -1,43 +1,43 @@ -#Region "Microsoft.VisualBasic::404fd56e2359587df6a9467d5cad52cb, LINQ\LINQ\Interpreter\Query\DataSoruce\URIIteratorDriver.vb" +#Region "Microsoft.VisualBasic::550ac42be283838badad0e16ae7212fe, LINQ\LINQ\Interpreter\Query\DataSoruce\URIIteratorDriver.vb" -' Author: -' -' asuka (amethyst.asuka@gcmodeller.org) -' xie (genetics@smrucc.org) -' xieguigang (xie.guigang@live.com) -' -' Copyright (c) 2018 GPL3 Licensed -' -' -' GNU GENERAL PUBLIC LICENSE (GPL3) -' -' -' This program is free software: you can redistribute it and/or modify -' it under the terms of the GNU General Public License as published by -' the Free Software Foundation, either version 3 of the License, or -' (at your option) any later version. -' -' This program is distributed in the hope that it will be useful, -' but WITHOUT ANY WARRANTY; without even the implied warranty of -' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -' GNU General Public License for more details. -' -' You should have received a copy of the GNU General Public License -' along with this program. If not, see . + ' Author: + ' + ' asuka (amethyst.asuka@gcmodeller.org) + ' xie (genetics@smrucc.org) + ' xieguigang (xie.guigang@live.com) + ' + ' Copyright (c) 2018 GPL3 Licensed + ' + ' + ' GNU GENERAL PUBLIC LICENSE (GPL3) + ' + ' + ' This program is free software: you can redistribute it and/or modify + ' it under the terms of the GNU General Public License as published by + ' the Free Software Foundation, either version 3 of the License, or + ' (at your option) any later version. + ' + ' This program is distributed in the hope that it will be useful, + ' but WITHOUT ANY WARRANTY; without even the implied warranty of + ' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + ' GNU General Public License for more details. + ' + ' You should have received a copy of the GNU General Public License + ' along with this program. If not, see . -' /********************************************************************************/ + ' /********************************************************************************/ -' Summaries: + ' Summaries: -' Class URIIteratorDriver -' -' Constructor: (+1 Overloads) Sub New -' Function: PopulatesData -' -' -' /********************************************************************************/ + ' Class URIIteratorDriver + ' + ' Constructor: (+1 Overloads) Sub New + ' Function: PopulatesData + ' + ' + ' /********************************************************************************/ #End Region diff --git a/LINQ/LINQ/Interpreter/Query/Options.vb b/LINQ/LINQ/Interpreter/Query/Options.vb index 4f776de..f0c7408 100644 --- a/LINQ/LINQ/Interpreter/Query/Options.vb +++ b/LINQ/LINQ/Interpreter/Query/Options.vb @@ -1,4 +1,4 @@ -#Region "Microsoft.VisualBasic::0cd572f89794247aa7a60e608fbb89f5, LINQ\LINQ\Interpreter\Query\Options.vb" +#Region "Microsoft.VisualBasic::03e9812fd9a9cf4d263c43fc47b7eac6, LINQ\LINQ\Interpreter\Query\Options.vb" ' Author: ' @@ -41,7 +41,6 @@ #End Region - Imports LINQ.Interpreter.Expressions Imports LINQ.Runtime Imports Microsoft.VisualBasic.My.JavaScript diff --git a/LINQ/LINQ/Interpreter/Query/QueryExpression.vb b/LINQ/LINQ/Interpreter/Query/QueryExpression.vb index 246eee5..193556b 100644 --- a/LINQ/LINQ/Interpreter/Query/QueryExpression.vb +++ b/LINQ/LINQ/Interpreter/Query/QueryExpression.vb @@ -1,4 +1,4 @@ -#Region "Microsoft.VisualBasic::c17b9f4ba6163467b2124e29397af322, LINQ\LINQ\Interpreter\Query\Query.vb" +#Region "Microsoft.VisualBasic::c17b9f4ba6163467b2124e29397af322, LINQ\LINQ\Interpreter\Query\QueryExpression.vb" ' Author: ' diff --git a/LINQ/LINQ/Runtime/Drivers/DataFrameDriver.vb b/LINQ/LINQ/Runtime/Drivers/DataFrameDriver.vb index 9e1f9cc..5f777a7 100644 --- a/LINQ/LINQ/Runtime/Drivers/DataFrameDriver.vb +++ b/LINQ/LINQ/Runtime/Drivers/DataFrameDriver.vb @@ -1,4 +1,4 @@ -#Region "Microsoft.VisualBasic::3688bd99e55c4fb096a8a677a5ba8502, LINQ\LINQ\Runtime\DataFrameDriver.vb" +#Region "Microsoft.VisualBasic::044174265e2439437d9433d34b1d38e6, LINQ\LINQ\Runtime\Drivers\DataFrameDriver.vb" ' Author: ' diff --git a/LINQ/LINQ/Runtime/Drivers/DataSourceDriver.vb b/LINQ/LINQ/Runtime/Drivers/DataSourceDriver.vb index 1f08c56..b69097f 100644 --- a/LINQ/LINQ/Runtime/Drivers/DataSourceDriver.vb +++ b/LINQ/LINQ/Runtime/Drivers/DataSourceDriver.vb @@ -1,42 +1,42 @@ -#Region "Microsoft.VisualBasic::6ea3b77a472b62ff5a511c319360473c, LINQ\LINQ\Runtime\DataSourceDriver.vb" - -' Author: -' -' asuka (amethyst.asuka@gcmodeller.org) -' xie (genetics@smrucc.org) -' xieguigang (xie.guigang@live.com) -' -' Copyright (c) 2018 GPL3 Licensed -' -' -' GNU GENERAL PUBLIC LICENSE (GPL3) -' -' -' This program is free software: you can redistribute it and/or modify -' it under the terms of the GNU General Public License as published by -' the Free Software Foundation, either version 3 of the License, or -' (at your option) any later version. -' -' This program is distributed in the hope that it will be useful, -' but WITHOUT ANY WARRANTY; without even the implied warranty of -' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -' GNU General Public License for more details. -' -' You should have received a copy of the GNU General Public License -' along with this program. If not, see . - - - -' /********************************************************************************/ - -' Summaries: - -' Class DataSourceDriver -' -' -' -' -' /********************************************************************************/ +#Region "Microsoft.VisualBasic::2c1f0f5168103746a577bd5c8921a507, LINQ\LINQ\Runtime\Drivers\DataSourceDriver.vb" + + ' Author: + ' + ' asuka (amethyst.asuka@gcmodeller.org) + ' xie (genetics@smrucc.org) + ' xieguigang (xie.guigang@live.com) + ' + ' Copyright (c) 2018 GPL3 Licensed + ' + ' + ' GNU GENERAL PUBLIC LICENSE (GPL3) + ' + ' + ' This program is free software: you can redistribute it and/or modify + ' it under the terms of the GNU General Public License as published by + ' the Free Software Foundation, either version 3 of the License, or + ' (at your option) any later version. + ' + ' This program is distributed in the hope that it will be useful, + ' but WITHOUT ANY WARRANTY; without even the implied warranty of + ' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + ' GNU General Public License for more details. + ' + ' You should have received a copy of the GNU General Public License + ' along with this program. If not, see . + + + + ' /********************************************************************************/ + + ' Summaries: + + ' Class DataSourceDriver + ' + ' + ' + ' + ' /********************************************************************************/ #End Region diff --git a/LINQ/LINQ/Runtime/Environment.vb b/LINQ/LINQ/Runtime/Environment.vb index b0b3eec..0e4c3d8 100644 --- a/LINQ/LINQ/Runtime/Environment.vb +++ b/LINQ/LINQ/Runtime/Environment.vb @@ -1,45 +1,45 @@ -#Region "Microsoft.VisualBasic::1f5d8b88408af1f1f9a33a6e64bc4098, LINQ\LINQ\Runtime\Environment.vb" - -' Author: -' -' asuka (amethyst.asuka@gcmodeller.org) -' xie (genetics@smrucc.org) -' xieguigang (xie.guigang@live.com) -' -' Copyright (c) 2018 GPL3 Licensed -' -' -' GNU GENERAL PUBLIC LICENSE (GPL3) -' -' -' This program is free software: you can redistribute it and/or modify -' it under the terms of the GNU General Public License as published by -' the Free Software Foundation, either version 3 of the License, or -' (at your option) any later version. -' -' This program is distributed in the hope that it will be useful, -' but WITHOUT ANY WARRANTY; without even the implied warranty of -' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -' GNU General Public License for more details. -' -' You should have received a copy of the GNU General Public License -' along with this program. If not, see . - - - -' /********************************************************************************/ - -' Summaries: - -' Class Environment -' -' Properties: GlobalEnvir, IsGlobal -' -' Constructor: (+1 Overloads) Sub New -' Function: AddSymbol, FindInvoke, FindSymbol, HasSymbol -' -' -' /********************************************************************************/ +#Region "Microsoft.VisualBasic::d0a47581dde60bb833166c5501677007, LINQ\LINQ\Runtime\Environment.vb" + + ' Author: + ' + ' asuka (amethyst.asuka@gcmodeller.org) + ' xie (genetics@smrucc.org) + ' xieguigang (xie.guigang@live.com) + ' + ' Copyright (c) 2018 GPL3 Licensed + ' + ' + ' GNU GENERAL PUBLIC LICENSE (GPL3) + ' + ' + ' This program is free software: you can redistribute it and/or modify + ' it under the terms of the GNU General Public License as published by + ' the Free Software Foundation, either version 3 of the License, or + ' (at your option) any later version. + ' + ' This program is distributed in the hope that it will be useful, + ' but WITHOUT ANY WARRANTY; without even the implied warranty of + ' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + ' GNU General Public License for more details. + ' + ' You should have received a copy of the GNU General Public License + ' along with this program. If not, see . + + + + ' /********************************************************************************/ + + ' Summaries: + + ' Class Environment + ' + ' Properties: GlobalEnvir, IsGlobal + ' + ' Constructor: (+1 Overloads) Sub New + ' Function: AddSymbol, FindInvoke, FindSymbol, HasSymbol + ' + ' + ' /********************************************************************************/ #End Region diff --git a/LINQ/LINQ/Runtime/GlobalEnvironment.vb b/LINQ/LINQ/Runtime/GlobalEnvironment.vb index 4cef313..9db269f 100644 --- a/LINQ/LINQ/Runtime/GlobalEnvironment.vb +++ b/LINQ/LINQ/Runtime/GlobalEnvironment.vb @@ -1,43 +1,43 @@ -#Region "Microsoft.VisualBasic::8fc54b422b09487898364574cccee467, LINQ\LINQ\Runtime\GlobalEnvironment.vb" - -' Author: -' -' asuka (amethyst.asuka@gcmodeller.org) -' xie (genetics@smrucc.org) -' xieguigang (xie.guigang@live.com) -' -' Copyright (c) 2018 GPL3 Licensed -' -' -' GNU GENERAL PUBLIC LICENSE (GPL3) -' -' -' This program is free software: you can redistribute it and/or modify -' it under the terms of the GNU General Public License as published by -' the Free Software Foundation, either version 3 of the License, or -' (at your option) any later version. -' -' This program is distributed in the hope that it will be useful, -' but WITHOUT ANY WARRANTY; without even the implied warranty of -' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -' GNU General Public License for more details. -' -' You should have received a copy of the GNU General Public License -' along with this program. If not, see . - - - -' /********************************************************************************/ - -' Summaries: - -' Class GlobalEnvironment -' -' Constructor: (+1 Overloads) Sub New -' Function: GetDriverByCode -' -' -' /********************************************************************************/ +#Region "Microsoft.VisualBasic::ab6301c864f94a35ede0a5a03a60263e, LINQ\LINQ\Runtime\GlobalEnvironment.vb" + + ' Author: + ' + ' asuka (amethyst.asuka@gcmodeller.org) + ' xie (genetics@smrucc.org) + ' xieguigang (xie.guigang@live.com) + ' + ' Copyright (c) 2018 GPL3 Licensed + ' + ' + ' GNU GENERAL PUBLIC LICENSE (GPL3) + ' + ' + ' This program is free software: you can redistribute it and/or modify + ' it under the terms of the GNU General Public License as published by + ' the Free Software Foundation, either version 3 of the License, or + ' (at your option) any later version. + ' + ' This program is distributed in the hope that it will be useful, + ' but WITHOUT ANY WARRANTY; without even the implied warranty of + ' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + ' GNU General Public License for more details. + ' + ' You should have received a copy of the GNU General Public License + ' along with this program. If not, see . + + + + ' /********************************************************************************/ + + ' Summaries: + + ' Class GlobalEnvironment + ' + ' Constructor: (+1 Overloads) Sub New + ' Function: GetDriverByCode + ' + ' + ' /********************************************************************************/ #End Region diff --git a/LINQ/LINQ/Runtime/Internal/InternalInvoke.vb b/LINQ/LINQ/Runtime/Internal/InternalInvoke.vb index 39d1a96..06be3f1 100644 --- a/LINQ/LINQ/Runtime/Internal/InternalInvoke.vb +++ b/LINQ/LINQ/Runtime/Internal/InternalInvoke.vb @@ -1,4 +1,4 @@ -#Region "Microsoft.VisualBasic::3e1bbd34965824c90713e8099928b0c1, LINQ\LINQ\Runtime\InternalInvoke.vb" +#Region "Microsoft.VisualBasic::ca462f2363b6c1215bc89962e3f3e539, LINQ\LINQ\Runtime\Internal\InternalInvoke.vb" ' Author: ' diff --git a/LINQ/LINQ/Runtime/Internal/Math.vb b/LINQ/LINQ/Runtime/Internal/Math.vb index b1d516a..288a8f6 100644 --- a/LINQ/LINQ/Runtime/Internal/Math.vb +++ b/LINQ/LINQ/Runtime/Internal/Math.vb @@ -1,4 +1,4 @@ -#Region "Microsoft.VisualBasic::9f391032229f1414dd209760afbe605a, LINQ\LINQ\Runtime\Math.vb" +#Region "Microsoft.VisualBasic::2c73f67e2ead98087074c71607b21e5e, LINQ\LINQ\Runtime\Internal\Math.vb" ' Author: ' diff --git a/LINQ/LINQ/Runtime/Registry.vb b/LINQ/LINQ/Runtime/Registry.vb index ce31c34..2c7f7ca 100644 --- a/LINQ/LINQ/Runtime/Registry.vb +++ b/LINQ/LINQ/Runtime/Registry.vb @@ -1,42 +1,42 @@ -#Region "Microsoft.VisualBasic::a9a98461d77d59c3c0013190f451e6ad, LINQ\LINQ\Runtime\Registry.vb" +#Region "Microsoft.VisualBasic::0124b5f27111e2adaadc328227661fb0, LINQ\LINQ\Runtime\Registry.vb" -' Author: -' -' asuka (amethyst.asuka@gcmodeller.org) -' xie (genetics@smrucc.org) -' xieguigang (xie.guigang@live.com) -' -' Copyright (c) 2018 GPL3 Licensed -' -' -' GNU GENERAL PUBLIC LICENSE (GPL3) -' -' -' This program is free software: you can redistribute it and/or modify -' it under the terms of the GNU General Public License as published by -' the Free Software Foundation, either version 3 of the License, or -' (at your option) any later version. -' -' This program is distributed in the hope that it will be useful, -' but WITHOUT ANY WARRANTY; without even the implied warranty of -' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -' GNU General Public License for more details. -' -' You should have received a copy of the GNU General Public License -' along with this program. If not, see . + ' Author: + ' + ' asuka (amethyst.asuka@gcmodeller.org) + ' xie (genetics@smrucc.org) + ' xieguigang (xie.guigang@live.com) + ' + ' Copyright (c) 2018 GPL3 Licensed + ' + ' + ' GNU GENERAL PUBLIC LICENSE (GPL3) + ' + ' + ' This program is free software: you can redistribute it and/or modify + ' it under the terms of the GNU General Public License as published by + ' the Free Software Foundation, either version 3 of the License, or + ' (at your option) any later version. + ' + ' This program is distributed in the hope that it will be useful, + ' but WITHOUT ANY WARRANTY; without even the implied warranty of + ' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + ' GNU General Public License for more details. + ' + ' You should have received a copy of the GNU General Public License + ' along with this program. If not, see . -' /********************************************************************************/ + ' /********************************************************************************/ -' Summaries: + ' Summaries: -' Class Registry -' -' Function: GetReader, GetTypeCodeName -' -' -' /********************************************************************************/ + ' Class Registry + ' + ' Function: GetReader, GetTypeCodeName + ' + ' + ' /********************************************************************************/ #End Region diff --git a/LINQ/LINQ/Script/Builders/BinaryBuilder.vb b/LINQ/LINQ/Script/Builders/BinaryBuilder.vb index 62dc968..956bbfc 100644 --- a/LINQ/LINQ/Script/Builders/BinaryBuilder.vb +++ b/LINQ/LINQ/Script/Builders/BinaryBuilder.vb @@ -1,4 +1,4 @@ -#Region "Microsoft.VisualBasic::774fbb3c052bbc812dbe3f59a695355c, LINQ\LINQ\Script\Builders\BinaryBuilder.vb" +#Region "Microsoft.VisualBasic::c4037e554a26529e91e78f3b46cacdb4, LINQ\LINQ\Script\Builders\BinaryBuilder.vb" ' Author: ' @@ -31,11 +31,12 @@ ' Summaries: - ' Module BinaryBuilder + ' Module BinaryBuilder ' - ' Function: ParseBinary, ShrinkTokens + ' Function: ParseBinary, ShrinkTokens + ' + ' Sub: JoinBinary ' - ' Sub: JoinBinary ' ' /********************************************************************************/ @@ -110,4 +111,4 @@ Namespace Script.Builders Next End Function End Module -End Namespace \ No newline at end of file +End Namespace diff --git a/LINQ/LINQ/Script/Builders/ExpressionTree.vb b/LINQ/LINQ/Script/Builders/ExpressionTree.vb index 0604a50..2c57e78 100644 --- a/LINQ/LINQ/Script/Builders/ExpressionTree.vb +++ b/LINQ/LINQ/Script/Builders/ExpressionTree.vb @@ -1,4 +1,4 @@ -#Region "Microsoft.VisualBasic::b94dc34c0a02854f5331911e4ff94320, LINQ\LINQ\Script\Builders\ExpressionTree.vb" +#Region "Microsoft.VisualBasic::bf796cc0e55fc3ef8f77c2c2430299d3, LINQ\LINQ\Script\Builders\ExpressionTree.vb" ' Author: ' @@ -31,9 +31,10 @@ ' Summaries: - ' Module ExpressionTree + ' Module ExpressionTree + ' + ' Function: ParseTree ' - ' Function: ParseTree ' ' /********************************************************************************/ @@ -53,4 +54,4 @@ Namespace Script.Builders End Function End Module -End Namespace \ No newline at end of file +End Namespace diff --git a/LINQ/LINQ/Script/StackParser.vb b/LINQ/LINQ/Script/StackParser.vb index 0cb7017..fff430c 100644 --- a/LINQ/LINQ/Script/StackParser.vb +++ b/LINQ/LINQ/Script/StackParser.vb @@ -1,4 +1,4 @@ -#Region "Microsoft.VisualBasic::61c3a76f028efb879f257d53fda47346, LINQ\LINQ\Script\StackParser.vb" +#Region "Microsoft.VisualBasic::eb430db1738374b44566811a7d062d13, LINQ\LINQ\Script\StackParser.vb" ' Author: ' @@ -31,10 +31,11 @@ ' Summaries: - ' Module StackParser + ' Module StackParser + ' + ' Function: DoSplitByTopLevelStack, GetParentPair, isKeyword, isKeywordAggregate, isKeywordFrom + ' isKeywordSelect, SplitByTopLevelStack, SplitOperators, SplitParameters ' - ' Function: DoSplitByTopLevelStack, GetParentPair, isKeyword, isKeywordAggregate, isKeywordFrom - ' isKeywordSelect, SplitByTopLevelStack, SplitOperators, SplitParameters ' ' /********************************************************************************/ @@ -198,4 +199,4 @@ Namespace Script End If End Function End Module -End Namespace \ No newline at end of file +End Namespace diff --git a/LINQ/LINQ/Script/SyntaxImplements.vb b/LINQ/LINQ/Script/SyntaxImplements.vb index 0fdcfd3..01d3904 100644 --- a/LINQ/LINQ/Script/SyntaxImplements.vb +++ b/LINQ/LINQ/Script/SyntaxImplements.vb @@ -1,44 +1,44 @@ -#Region "Microsoft.VisualBasic::5f880a78922dca450ecd65b64b7a4ba5, LINQ\LINQ\Script\SyntaxImplements.vb" - -' Author: -' -' asuka (amethyst.asuka@gcmodeller.org) -' xie (genetics@smrucc.org) -' xieguigang (xie.guigang@live.com) -' -' Copyright (c) 2018 GPL3 Licensed -' -' -' GNU GENERAL PUBLIC LICENSE (GPL3) -' -' -' This program is free software: you can redistribute it and/or modify -' it under the terms of the GNU General Public License as published by -' the Free Software Foundation, either version 3 of the License, or -' (at your option) any later version. -' -' This program is distributed in the hope that it will be useful, -' but WITHOUT ANY WARRANTY; without even the implied warranty of -' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -' GNU General Public License for more details. -' -' You should have received a copy of the GNU General Public License -' along with this program. If not, see . - - - -' /********************************************************************************/ - -' Summaries: - -' Module SyntaxImplements -' -' Function: CreateAggregateQuery, CreateProjectionQuery, GetParameters, GetProjection, GetSequence -' GetVector, IsClosure, IsNumeric, JoinOperators, ParseExpression -' ParseKeywordExpression, ParseToken, PopulateExpressions, PopulateQueryExpression -' -' -' /********************************************************************************/ +#Region "Microsoft.VisualBasic::de349ecee86e889bc5d654c56be0427b, LINQ\LINQ\Script\SyntaxImplements.vb" + + ' Author: + ' + ' asuka (amethyst.asuka@gcmodeller.org) + ' xie (genetics@smrucc.org) + ' xieguigang (xie.guigang@live.com) + ' + ' Copyright (c) 2018 GPL3 Licensed + ' + ' + ' GNU GENERAL PUBLIC LICENSE (GPL3) + ' + ' + ' This program is free software: you can redistribute it and/or modify + ' it under the terms of the GNU General Public License as published by + ' the Free Software Foundation, either version 3 of the License, or + ' (at your option) any later version. + ' + ' This program is distributed in the hope that it will be useful, + ' but WITHOUT ANY WARRANTY; without even the implied warranty of + ' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + ' GNU General Public License for more details. + ' + ' You should have received a copy of the GNU General Public License + ' along with this program. If not, see . + + + + ' /********************************************************************************/ + + ' Summaries: + + ' Module SyntaxImplements + ' + ' Function: CreateAggregateQuery, CreateProjectionQuery, GetParameters, GetProjection, GetSequence + ' GetVector, IsClosure, IsNumeric, JoinOperators, ParseExpression + ' ParseKeywordExpression, ParseToken, PopulateExpressions, PopulateQueryExpression + ' + ' + ' /********************************************************************************/ #End Region diff --git a/Parallel/IpcParallel/IPCSocket.vb b/Parallel/IpcParallel/IPCSocket.vb index 78ddb0c..3cb3120 100644 --- a/Parallel/IpcParallel/IPCSocket.vb +++ b/Parallel/IpcParallel/IPCSocket.vb @@ -1,49 +1,49 @@ -#Region "Microsoft.VisualBasic::86f16e26dbba5749a3fefa91e7705256, Parallel\IpcParallel\IPCSocket.vb" - -' Author: -' -' asuka (amethyst.asuka@gcmodeller.org) -' xie (genetics@smrucc.org) -' xieguigang (xie.guigang@live.com) -' -' Copyright (c) 2018 GPL3 Licensed -' -' -' GNU GENERAL PUBLIC LICENSE (GPL3) -' -' -' This program is free software: you can redistribute it and/or modify -' it under the terms of the GNU General Public License as published by -' the Free Software Foundation, either version 3 of the License, or -' (at your option) any later version. -' -' This program is distributed in the hope that it will be useful, -' but WITHOUT ANY WARRANTY; without even the implied warranty of -' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -' GNU General Public License for more details. -' -' You should have received a copy of the GNU General Public License -' along with this program. If not, see . - - - -' /********************************************************************************/ - -' Summaries: - -' Class IPCSocket -' -' Properties: handleGetArgument, handlePOSTResult, handleSetResult, host, HostPort -' nargs, Protocol, result, socketExitCode -' -' Constructor: (+1 Overloads) Sub New -' -' Function: GetArgumentByIndex, GetArgumentNumber, GetFirstAvailablePort, GetTask, PostError -' PostResult, PostStart, Run -' -' Sub: [Stop] -' -' /********************************************************************************/ +#Region "Microsoft.VisualBasic::bf0b81e52519071ade9c98ff767d4828, Parallel\IpcParallel\IPCSocket.vb" + + ' Author: + ' + ' asuka (amethyst.asuka@gcmodeller.org) + ' xie (genetics@smrucc.org) + ' xieguigang (xie.guigang@live.com) + ' + ' Copyright (c) 2018 GPL3 Licensed + ' + ' + ' GNU GENERAL PUBLIC LICENSE (GPL3) + ' + ' + ' This program is free software: you can redistribute it and/or modify + ' it under the terms of the GNU General Public License as published by + ' the Free Software Foundation, either version 3 of the License, or + ' (at your option) any later version. + ' + ' This program is distributed in the hope that it will be useful, + ' but WITHOUT ANY WARRANTY; without even the implied warranty of + ' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + ' GNU General Public License for more details. + ' + ' You should have received a copy of the GNU General Public License + ' along with this program. If not, see . + + + + ' /********************************************************************************/ + + ' Summaries: + + ' Class IPCSocket + ' + ' Properties: handleGetArgument, handlePOSTResult, handleSetResult, host, HostPort + ' nargs, Protocol, result, socketExitCode + ' + ' Constructor: (+1 Overloads) Sub New + ' + ' Function: GetArgumentByIndex, GetArgumentNumber, GetFirstAvailablePort, GetLastError, GetTask + ' PostError, PostResult, PostStart, Run + ' + ' Sub: [Stop] + ' + ' /********************************************************************************/ #End Region diff --git a/Parallel/IpcParallel/SlaveTask.vb b/Parallel/IpcParallel/SlaveTask.vb index aeded22..88589b8 100644 --- a/Parallel/IpcParallel/SlaveTask.vb +++ b/Parallel/IpcParallel/SlaveTask.vb @@ -1,48 +1,48 @@ -#Region "Microsoft.VisualBasic::f9dda941b56efa826aa6b892738040c4, Parallel\IpcParallel\SlaveTask.vb" - -' Author: -' -' asuka (amethyst.asuka@gcmodeller.org) -' xie (genetics@smrucc.org) -' xieguigang (xie.guigang@live.com) -' -' Copyright (c) 2018 GPL3 Licensed -' -' -' GNU GENERAL PUBLIC LICENSE (GPL3) -' -' -' This program is free software: you can redistribute it and/or modify -' it under the terms of the GNU General Public License as published by -' the Free Software Foundation, either version 3 of the License, or -' (at your option) any later version. -' -' This program is distributed in the hope that it will be useful, -' but WITHOUT ANY WARRANTY; without even the implied warranty of -' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -' GNU General Public License for more details. -' -' You should have received a copy of the GNU General Public License -' along with this program. If not, see . - - - -' /********************************************************************************/ - -' Summaries: - -' Delegate Function -' -' -' Class SlaveTask -' -' Constructor: (+1 Overloads) Sub New -' Function: (+2 Overloads) Emit, GetValueFromStream, handleGET, handlePOST, RunTask -' startSocket -' -' -' -' /********************************************************************************/ +#Region "Microsoft.VisualBasic::2cff0efcc2d710ecd4c1a5d321a19ad2, Parallel\IpcParallel\SlaveTask.vb" + + ' Author: + ' + ' asuka (amethyst.asuka@gcmodeller.org) + ' xie (genetics@smrucc.org) + ' xieguigang (xie.guigang@live.com) + ' + ' Copyright (c) 2018 GPL3 Licensed + ' + ' + ' GNU GENERAL PUBLIC LICENSE (GPL3) + ' + ' + ' This program is free software: you can redistribute it and/or modify + ' it under the terms of the GNU General Public License as published by + ' the Free Software Foundation, either version 3 of the License, or + ' (at your option) any later version. + ' + ' This program is distributed in the hope that it will be useful, + ' but WITHOUT ANY WARRANTY; without even the implied warranty of + ' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + ' GNU General Public License for more details. + ' + ' You should have received a copy of the GNU General Public License + ' along with this program. If not, see . + + + + ' /********************************************************************************/ + + ' Summaries: + + ' Delegate Function + ' + ' + ' Class SlaveTask + ' + ' Constructor: (+1 Overloads) Sub New + ' Function: (+2 Overloads) Emit, GetValueFromStream, handleGET, handlePOST, RunTask + ' startSocket + ' + ' + ' + ' /********************************************************************************/ #End Region diff --git a/Parallel/IpcParallel/Stream/ObjectStream.vb b/Parallel/IpcParallel/Stream/ObjectStream.vb index acd30ae..ff95312 100644 --- a/Parallel/IpcParallel/Stream/ObjectStream.vb +++ b/Parallel/IpcParallel/Stream/ObjectStream.vb @@ -1,4 +1,4 @@ -#Region "Microsoft.VisualBasic::819f296d8ea634b4f9142b8cc2cbb41d, Parallel\IpcParallel\Stream\ObjectStream.vb" +#Region "Microsoft.VisualBasic::2e43fcbbe187b0aabe07e3f31fb5b895, Parallel\IpcParallel\Stream\ObjectStream.vb" ' Author: ' @@ -33,7 +33,7 @@ ' Class ObjectStream ' - ' Properties: isPrimitive, method, stream, type + ' Properties: IsNothing, isPrimitive, method, stream, type ' ' Constructor: (+5 Overloads) Sub New ' diff --git a/Parallel/IpcParallel/TaskBuilder.vb b/Parallel/IpcParallel/TaskBuilder.vb index 620537d..58da67b 100644 --- a/Parallel/IpcParallel/TaskBuilder.vb +++ b/Parallel/IpcParallel/TaskBuilder.vb @@ -1,46 +1,46 @@ -#Region "Microsoft.VisualBasic::899ab496ae35911ec94c1e11a823a3b9, Parallel\IpcParallel\TaskBuilder.vb" - -' Author: -' -' asuka (amethyst.asuka@gcmodeller.org) -' xie (genetics@smrucc.org) -' xieguigang (xie.guigang@live.com) -' -' Copyright (c) 2018 GPL3 Licensed -' -' -' GNU GENERAL PUBLIC LICENSE (GPL3) -' -' -' This program is free software: you can redistribute it and/or modify -' it under the terms of the GNU General Public License as published by -' the Free Software Foundation, either version 3 of the License, or -' (at your option) any later version. -' -' This program is distributed in the hope that it will be useful, -' but WITHOUT ANY WARRANTY; without even the implied warranty of -' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -' GNU General Public License for more details. -' -' You should have received a copy of the GNU General Public License -' along with this program. If not, see . - - - -' /********************************************************************************/ - -' Summaries: - -' Class TaskBuilder -' -' Constructor: (+1 Overloads) Sub New -' -' Function: FromStream, GetArgumentValue, GetArgumentValueNumber, GetMethod, GetParameters -' PostError, Run -' -' Sub: PostFinished -' -' /********************************************************************************/ +#Region "Microsoft.VisualBasic::e1ea725da821d59758c31270653c458d, Parallel\IpcParallel\TaskBuilder.vb" + + ' Author: + ' + ' asuka (amethyst.asuka@gcmodeller.org) + ' xie (genetics@smrucc.org) + ' xieguigang (xie.guigang@live.com) + ' + ' Copyright (c) 2018 GPL3 Licensed + ' + ' + ' GNU GENERAL PUBLIC LICENSE (GPL3) + ' + ' + ' This program is free software: you can redistribute it and/or modify + ' it under the terms of the GNU General Public License as published by + ' the Free Software Foundation, either version 3 of the License, or + ' (at your option) any later version. + ' + ' This program is distributed in the hope that it will be useful, + ' but WITHOUT ANY WARRANTY; without even the implied warranty of + ' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + ' GNU General Public License for more details. + ' + ' You should have received a copy of the GNU General Public License + ' along with this program. If not, see . + + + + ' /********************************************************************************/ + + ' Summaries: + + ' Class TaskBuilder + ' + ' Constructor: (+1 Overloads) Sub New + ' + ' Function: FromStream, GetArgumentValue, GetArgumentValueNumber, GetMethod, GetParameters + ' Initialize, PostError, Run + ' + ' Sub: PostFinished + ' + ' /********************************************************************************/ #End Region diff --git a/Parallel/ThreadTask/ThreadTask.vb b/Parallel/ThreadTask/ThreadTask.vb index 1ee7592..b134031 100644 --- a/Parallel/ThreadTask/ThreadTask.vb +++ b/Parallel/ThreadTask/ThreadTask.vb @@ -1,4 +1,4 @@ -#Region "Microsoft.VisualBasic::36906f6f888b49976d9068b755c6ed70, Parallel\ThreadTask\ThreadTask.vb" +#Region "Microsoft.VisualBasic::b63a63c50d6beec5245bbe02d8f84e13, Parallel\ThreadTask\ThreadTask.vb" ' Author: '