nload工具 nload用于实时查看网卡流量,默认系统都没有安装,首先安装方式如下: $ yum install -y epel-release $ yum install -y nload 使用也非常简单,如下: $ nload Device eth0 [192.168.0.110] (4/5) ...
分类:
其他好文 时间:
2020-07-18 00:32:24
阅读次数:
107
谐波的具体生成方法参看论文 Harmonic and Intermodulation Analysis of Nonlinear Devices Used in Virtual Bass Systems 具体的matlab代码为 function Ha = calculate_harmonics() ...
分类:
其他好文 时间:
2020-07-17 19:25:00
阅读次数:
76
当我写一个功能模块方法时,我在想些什么 // 无论什么方法,都是这样一个结构 const fn = () => { }; 比比如,我要写一个接口,查询组织下的设备列表 /api/device/list 地基 const deviceList = (params) => { // 传入一些参数 ret ...
分类:
其他好文 时间:
2020-07-17 01:12:04
阅读次数:
82
1 <html lang="en"> 2 3 <head> 4 <meta charset="UTF-8"> 5 <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maxim ...
分类:
Web程序 时间:
2020-07-16 18:24:38
阅读次数:
73
kubernet 1、关闭swapswapoff -a/etc/fstab 注释swap分区 2、将桥接的IPv4流量传递到iptables的链cat > /etc/sysctl.d/k8s.conf <<EOFnet.bridge.bridge-nf-call-ip6tables = 1net.b ...
分类:
Web程序 时间:
2020-07-16 00:11:48
阅读次数:
120
Part1 Not only did they develop such a device but by the turn of the millennium they had also managed to embed it in a worldwide system accessed by bi ...
分类:
其他好文 时间:
2020-07-16 00:01:44
阅读次数:
163
批量插入数据两种方式 1. 查询后插入 <insert id="saveInfo" parameterType="java.util.List" useGeneratedKeys="true" keyProperty="id"> insert into v_product_info ( `deman ...
分类:
其他好文 时间:
2020-07-15 22:48:06
阅读次数:
75
一、效果图: 应用: 二、上代码 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> ...
分类:
Web程序 时间:
2020-07-15 16:05:09
阅读次数:
104
###Windows驱动 // type.h #ifndef TYPE_H #define TYPE_H #include <setupapi.h> struct wdi_device_info { struct wdi_device_info *next; unsigned short vid; ...
with tf.device("gpu:1"): 该语句用来指派特定的CPU或GPU执行操作; 变量是为了维护图执行过程中的状态信息;当训练模型时,用变量来存储和更新参数,变量包含张量存放于内存的缓冲区,建模时需要被明确的初始化,模型训练后它们必须被存储到磁盘中;模型训练和分析时变量可被加载;变量的 ...
分类:
其他好文 时间:
2020-07-14 21:48:34
阅读次数:
71