https://linux.die.net/man/1/iperf https://iperf.fr/iperf-doc.php 常用参数: -i: 报告打印周期 -B: 单播的话,指定发包源IP地址,组播的话,加入组播组 -b:发包带宽 -t: 发包时间,如果想按照发包总量,使用-n 参数 -n: ...
分类:
其他好文 时间:
2020-07-30 10:50:03
阅读次数:
78
Candies POJ - 3159 题意: 给班级小朋友分糖果,要求满足以下条件:给定$m$组关系$A,B,c$,表示$B$得到的糖果比$A$得到的不多于$c$个,即$candy[B]-candy[A]≤c$,求$1$号小朋友与$N$号小朋友糖果数之差的最大值。 思路: 线性差分约束。对式子$ca ...
分类:
其他好文 时间:
2020-07-29 10:05:28
阅读次数:
64
<?php //<meta charset="utf-8"> //header('Content-Type: text/html;charset=utf-8'); $page = 1; $datetime = '2019-09-07'; try { $conn = new mysqli('127.0 ...
分类:
数据库 时间:
2020-07-28 14:35:47
阅读次数:
91
在给变量或常量起名称的时候,不要用C++的关键字,否则会产生歧义。 ...
分类:
编程语言 时间:
2020-07-20 13:16:44
阅读次数:
75
nextcloud网盘搭建文档 1、安装php7.4(官方建议) yum install http://rpms.remirepo.net/enterprise/remi-release-7.rpm yum -y install php74-php-fpm php74-php-cli php74-p ...
分类:
其他好文 时间:
2020-07-18 22:28:56
阅读次数:
183
一、Reading After my graduation, I went to Beijing to further my studies. I lived there for three years. At first, I was happy, but later, I was frustra ...
分类:
其他好文 时间:
2020-07-17 14:02:28
阅读次数:
91
MapReduce: Simplified Data Processing on Large Clusters MapReduce是什么? a programming model and an associated implementation for processing and generati ...
分类:
其他好文 时间:
2020-07-16 10:13:57
阅读次数:
73
Suppose you have a long flowerbed in which some of the plots are planted and some are not. However, flowers cannot be planted in adjacent plots - they ...
分类:
其他好文 时间:
2020-07-15 01:29:00
阅读次数:
68
Tensorflow一般经过三阶段的模式函数操作: 模型 inference()阶段:尽可能构建好图表(graph),满足促使神经网络向前反馈并做出相应的预测要求; 策略 loss()阶段:往inference图表中添加生成损失(loss)所需要的操作(ops),如交叉熵损失,正则化损失; 算法 t ...
分类:
其他好文 时间:
2020-07-14 21:50:43
阅读次数:
63
22 弱类型整数大小比较绕过 <?php error_reporting(0); $flag = "flag{test}"; $temp = $_GET['password']; is_numeric($temp)?die("no numeric"):NULL; if($temp>1336){ ec ...
分类:
Web程序 时间:
2020-07-13 13:37:12
阅读次数:
93