摘要:
cosbench的安装与集群中使用 1.安装 # 安装JDK [root@k8s-01 ~]# yum install java nmap-ncat # 通过wget下载,或者直接通过浏览器输入下面的链接下载 [root@k8s-01 ~]# wget https://github.com/inte 阅读全文
摘要:
枚举模块 from enum import Enum # 继承枚举类 class color(Enum): YELLOW = 1 BEOWN = 1 # 注意BROWN的值和YELLOW的值相同,这是允许的,此时的BROWN相当于YELLOW的别名 RED = 2 GREEN = 3 PINK = 阅读全文