编译参考:https://github.com/ovn-org/ovn/blob/master/Documentation/intro/install/general.rst git clone http://github.com/openvswitch/ovs.git yum -y install ...
分类:
其他好文 时间:
2020-05-16 16:33:36
阅读次数:
68
腐蚀-膨 //腐蚀-膨胀算法 module Erosion( clk , rst_n , matrixp11 , matrixp12 , matrixp13 , matrixp21 , matrixp22 , matrixp23 , matrixp31 , matrixp32 , matrixp33 ...
分类:
其他好文 时间:
2020-05-10 19:01:34
阅读次数:
67
Sobel边缘检测 // sobel 算法 `timescale 1ns/1ns module sobel_top( clk , rst_n , pre_vs , pre_hs , pre_en , pre_img_Y , post_vs , post_hs , post_en , post_img ...
分类:
其他好文 时间:
2020-05-08 23:04:55
阅读次数:
74
在输入rst("a_content")的时候要对里面的字符进行转换一下。因为里面可能有""类似的符号。。 ' '函数:空格、回车等字符替换 '参数说明 ' fString : 需要替换的字符串 '返回值 : 替换后的字符串 ' function HTMLEncode(fString) fString ...
分类:
数据库 时间:
2020-04-21 18:06:04
阅读次数:
130
# 一面 1. RAII底层原理,使用Java实现2. TCP讲一下,泛洪攻击讲一下怎么避免,TCP keepalive了解吗?3. 数据库隔离级别,不同隔离级别的现象解释一下。4. 数据库的锁机制5. 悲观锁、乐观锁讲一下6. 自旋锁互斥锁,适用于什么场景,自旋锁底层实现7. TCP的RST了解吗... ...
分类:
编程语言 时间:
2020-04-21 12:45:59
阅读次数:
84
01:失败后,不截图 访问网站:https://robotframework.org/#libraries 在网站中通过以下指引查看 点击-external - seleniumLibrary-readme.rst-introduction-keyword documentation-importi ...
分类:
其他好文 时间:
2020-04-15 11:02:28
阅读次数:
185
[TOC] 官方教程:https://github.com/Microsoft/LightGBM/blob/master/docs/Installation Guide.rst macos 1、mac安装lightgbm之两步走策略(要求编译器:Apple Clang version 8.1 or ...
分类:
系统相关 时间:
2020-03-31 12:09:36
阅读次数:
85
module counter( input clk, input rst_n, output reg[7:0] data_out ); //reg define reg [3:0] cnt; //假设计数器每计数十次,溢满一次 reg [2:0] lsm_cnt; //计数器每溢满一次,lsm_cn ...
分类:
其他好文 时间:
2020-03-21 12:52:54
阅读次数:
151
1 module tlv5618( 2 clk ,//50MHz时钟 3 rst_n ,//复位 4 dac_data ,//16位数据输入 5 start ,//DAC驱动使能 6 set_done ,//数据转换完成标志位 7 8 dac_cs_n ,//片选 9 dac_din ,//16数据 ...
分类:
其他好文 时间:
2020-03-15 13:31:21
阅读次数:
50
程序代码: module uart_byte_rx( clk ,//50MHz时钟 rst_n ,//复位 baud_set ,//波特率设置 rs232_rx ,//rs232数据接收 data_byte ,//并行数据输出 rx_done //单个字节接收完标志 ); //参数定义s param ...
分类:
其他好文 时间:
2020-03-12 23:43:41
阅读次数:
93