CloudSim 迁移在哪里:分配和选择策略示例
Where are the CloudSim migration : allocation and selection policies examples
在哪里可以找到用于迁移的 VM 分配和选择策略?而且,在 github 中我发现了 CloudSim 的许多版本,但问题是第 3 版仍然是最清晰干净的版本,我不知道为什么在某些版本中它们不包含像版本 3.0.3,也在 cloudsim 4 中,我发现了两个包,一个只包含 class 文件,另一个包含源文件,我的意思是他们为什么不把所有东西都放在一个资产中,在主存储库中,他们没有包含 docs 文件夹,即使它真的很重要,他们也没有包含包含 jar 文件的 jar 文件夹,其中包含源代码和 classes 以及示例。
如果你尝试 CloudSim Plus,有一个包包含一些 migration examples here。
in github i found many versions of CloudSim, but the problem is that the version 3 still the most clear and clean one
CloudSim Plus 基于 CloudSim 3.0.3,更清晰、更有条理、文档化和结构化,使其更容易理解和扩展。
i don't know why in some releases they don't include the docs like in version 3.0.3, also in cloudsim 4, i found two packages, one that includes only the class files, and the other with the source files, i mean why don't they just put everything in one single asset, and in the main repository they did't include the docs folder, even though it's really important, also they did't include the jar folder that has the jar files which contains source and classes with examples.
如果您下载 CloudSim 或 CloudSim Plus 的源代码,您将获得所需的一切。在某些 IDE 中打开项目并构建它后,将在 target
目录中生成 javadocs 和 jar 文件。
对于 CloudSim Plus,因为它在 Maven Central 上可用,您甚至不需要下载源代码来构建 javadoc 和 jar,您只需要将它作为依赖项包含在您自己的项目中Maven 将为您下载所有内容。
但是如果你想在线查看文档,CloudSim Plus提供了this link。
我找到了我一直在寻找的分配和选择策略,在 CloudSim 3 中,它们位于:"examples/org/cloudbus/cloudsim/examples/power/random/" 目录中,我们可以在其中找到 Mmt、Lr ...等。
结合这些策略的示例位于:"org/cloudbus/cloudsim/power/" 文件夹中。
Migration Examples DirectoryMigration Policies Directory
在哪里可以找到用于迁移的 VM 分配和选择策略?而且,在 github 中我发现了 CloudSim 的许多版本,但问题是第 3 版仍然是最清晰干净的版本,我不知道为什么在某些版本中它们不包含像版本 3.0.3,也在 cloudsim 4 中,我发现了两个包,一个只包含 class 文件,另一个包含源文件,我的意思是他们为什么不把所有东西都放在一个资产中,在主存储库中,他们没有包含 docs 文件夹,即使它真的很重要,他们也没有包含包含 jar 文件的 jar 文件夹,其中包含源代码和 classes 以及示例。
如果你尝试 CloudSim Plus,有一个包包含一些 migration examples here。
in github i found many versions of CloudSim, but the problem is that the version 3 still the most clear and clean one
CloudSim Plus 基于 CloudSim 3.0.3,更清晰、更有条理、文档化和结构化,使其更容易理解和扩展。
i don't know why in some releases they don't include the docs like in version 3.0.3, also in cloudsim 4, i found two packages, one that includes only the class files, and the other with the source files, i mean why don't they just put everything in one single asset, and in the main repository they did't include the docs folder, even though it's really important, also they did't include the jar folder that has the jar files which contains source and classes with examples.
如果您下载 CloudSim 或 CloudSim Plus 的源代码,您将获得所需的一切。在某些 IDE 中打开项目并构建它后,将在 target
目录中生成 javadocs 和 jar 文件。
对于 CloudSim Plus,因为它在 Maven Central 上可用,您甚至不需要下载源代码来构建 javadoc 和 jar,您只需要将它作为依赖项包含在您自己的项目中Maven 将为您下载所有内容。
但是如果你想在线查看文档,CloudSim Plus提供了this link。
我找到了我一直在寻找的分配和选择策略,在 CloudSim 3 中,它们位于:"examples/org/cloudbus/cloudsim/examples/power/random/" 目录中,我们可以在其中找到 Mmt、Lr ...等。 结合这些策略的示例位于:"org/cloudbus/cloudsim/power/" 文件夹中。 Migration Examples DirectoryMigration Policies Directory