1.系统常用检查命令 1 磁盘 df -h 2 内存 free -m 3 负载 top 4 5 [hadoop@bigdata ~]$ free -m 6 total used free shared buff/cache available 7 Mem: 7823 222 6229 257 137 ...
分类:
系统相关 时间:
2020-06-23 15:37:42
阅读次数:
82
SELECT TOP 10 execution_count as [Number Of Executions],total_worker_time/execution_count as [Average CPU Time],total_elapsed_time/execution_count as ...
分类:
数据库 时间:
2020-06-23 11:38:09
阅读次数:
93
package Date20200622; public class TortoiseHareRace { public static void main(String[] args) { int total = 10; int tortoiseStep = 0; int hareStep = 0; ...
分类:
编程语言 时间:
2020-06-22 10:43:52
阅读次数:
59
The set [1,2,3,...,n] contains a total of n! unique permutations. By listing and labeling all of the permutations in order, we get the following seque ...
分类:
其他好文 时间:
2020-06-21 10:13:55
阅读次数:
48
1 def sum_func(*args): 2 total=0 3 for i in args: 4 return total 5 print(sum_func(1,2,3,8,23,6)) View Code ...
分类:
其他好文 时间:
2020-06-20 00:46:34
阅读次数:
172
一、实验拓扑: 二、网络拓扑互联互通: 路由器、交换机、主机的IP地址配置 略。 交换机LSW1 VLAN的配置如下所示: [SW1]disp vlanThe total number of vlans is : 3 U: Up; D: Down; TG: Tagged; UT: Untagged; ...
分类:
其他好文 时间:
2020-06-18 22:09:36
阅读次数:
73
1.列表作为数据结构def MatrixProduct(a, b): temp2 = [] for i in range(len(a)): temp1 = [] for j in range(len(b[0])): total = 0 for k in range(len(... ...
分类:
编程语言 时间:
2020-06-18 11:11:23
阅读次数:
111
PageInfo getPageInfo(int pageNum, int pageSize, List<Map> list) { Page page = new Page(pageNum, pageSize); int total = list.size(); if (total > pageSi ...
分类:
其他好文 时间:
2020-06-18 11:00:59
阅读次数:
33
Mysql 聚合函数嵌套使用 目的:Mysql 聚合函数嵌套使用 聚合函数不可以直接嵌套使用,比如: max(count(*)) 思路:但是可以嵌套子查询使用(先分组取出count值, 再将count值倒序排列,取第一个值就是最大的) select max(total) from ( select ...
分类:
数据库 时间:
2020-06-17 11:11:28
阅读次数:
88
1. 配置文件的修改 将文件docker-compose.yml中的内容进行修改,开启随机设备服务 ~]# ll total 16 -rw . 1 root root 1249 anaconda-ks.cfg -rw-r--r--. 1 root root 11451 docker-compose. ...
分类:
其他好文 时间:
2020-06-17 10:49:24
阅读次数:
43