linux上安装,以centos 7.x为例 yum命令安装 yum install gityum install 安装的git不是最新版本,如需最新版本需要自行编译 到下面的网站下载合适的版本 https://mirrors.edge.kernel.org/pub/software/scm/git ...
分类:
系统相关 时间:
2021-07-05 17:05:30
阅读次数:
0
Form2 namespace WindowsFormsApp1 { //定义委托 public delegate void Sum(int x, int y); public partial class Form2 : Form { //定义事件 public event Sum sum; pub ...
由于继承自UBlueprintFunctionLibrary的子类中声明的函数基本上是static, 在类内部调用外部定义的委托编译时会报错,按如下方式进行操作则可正常使用。 *.h 1 UCLASS() 2 class UE4_OSS_LIBRARY_API UOSSApiUtilty : pub ...
分类:
其他好文 时间:
2021-07-01 16:24:26
阅读次数:
0
1. 什么是发布和订阅 Redis 发布订阅 (pub/sub) 是一种消息通信模式:发送者 (pub) 发送消息,订阅者 (sub) 接收消息。 Redis 客户端可以订阅任意数量的频道。 2. redis的订阅与发布 1、客户端可以订阅频道如下图 2、当给这个频道发布消息后,消息就会发送给订阅的 ...
分类:
其他好文 时间:
2021-06-13 10:35:06
阅读次数:
0
1.下载tar包并安装依赖、解压 cd /opt && wget http://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-8.6p1.tar.gz yum install -y gcc zlib-devel openssl-devel ...
分类:
其他好文 时间:
2021-06-10 18:51:19
阅读次数:
0
源码下载地址:https://www.postgresql.org/ftp/source/ [root@muze1 data]# wget https://ftp.postgresql.org/pub/source/v13.2/postgresql-13.2.tar.gz-- 创建用户groupad ...
分类:
其他好文 时间:
2021-06-08 23:32:32
阅读次数:
0
Linux内核源码下载地址 官网链接 https://www.kernel.org/ 国内下载(推荐) http://ftp.sjtu.edu.cn/sites/ftp.kernel.org/pub/linux/kernel/ 选择对应的版本下载即可 ...
分类:
系统相关 时间:
2021-06-08 22:48:21
阅读次数:
0
正常现象。一个是图像/视频采集,一个是metadata采集 执行:v4l2-ctl --device=/dev/video* 就应该能看到一个是Video Capture,一个是Metadata Capture。 相关代码 https://git.kernel.org/pub/scm/linux/k ...
分类:
系统相关 时间:
2021-06-02 20:52:03
阅读次数:
0
WPF 错误:Must create DependencySource on same Thread as the DependencyObject 先看数据模型类吧 public class MessageInfo { public string Message { get; set; } pub ...
分类:
其他好文 时间:
2021-06-02 10:51:43
阅读次数:
0
写公钥 ssh-keygen -t rsa # 生成key (echo -e "\n\n"; cat id_rsa.pub; echo -e "\n\n") > /tmp/key.txt # 前后加换行 cat /tmp/key.txt | redis-cli -h 59.xx.xx.157 -x ...
分类:
其他好文 时间:
2021-05-24 13:41:02
阅读次数:
0