##一、安装setuptools工具 在安装pip之前,必须先安装setuptools工具,从官网下载setuptools安装包:https://pypi.org/project/setuptools/#files,下载.tar.gz的归档文件 下载好后,进入安装包所在的文件夹,解压文件(以51.1 ...
分类:
系统相关 时间:
2020-12-30 11:11:01
阅读次数:
0
1.使用Marshal类的StructureToPtr与PtrToStructure函数对object与byte数组进行转换 命名空间:System.Runtime.InteropServices /// <summary> /// 将对象转换为byte数组 /// </summary> /// < ...
分类:
编程语言 时间:
2020-12-30 10:46:02
阅读次数:
0
https://github.com/remy/nodemon#config-files https://github.com/remy/nodemon/blob/master/doc/sample-nodemon.md { "watch": ["src"], "ext": "html,vue,js ...
分类:
其他好文 时间:
2020-12-29 11:30:58
阅读次数:
0
一、filter常用规则 1、REJECT 拒绝 例:拒绝来自85主机的tcp类型的请求 iptables -t filter -I INPUT -s 192.168.2.85 -d 192.168.2.93 -p tcp -j REJECT 2、ACCEPT 允许 -s: 匹配源地址 # 源 IP ...
分类:
其他好文 时间:
2020-12-29 10:58:10
阅读次数:
0
0:selecter.open;46、47中断描述符,48kevent描述符1:serverSocketChannel.open socket开启,49描述符2:绑定端口3:注册49socketchannel到selector上面3.5:轮询48端口,轮询出一个数量,这里获取数据用的是nativeO ...
分类:
其他好文 时间:
2020-12-28 11:32:54
阅读次数:
0
kubesphere3.0安装部署填坑记录标签(空格分隔):kubernetes系列[toc]一:系统环境1.1系统环境初始化系统:Centos7.8x64cat/etc/hosts-----192.168.100.11node01.flyfish.cn192.168.100.12node02.flyfish.cn192.168.100.13node03.flyfish.cn192.168.100
分类:
其他好文 时间:
2020-12-28 11:03:15
阅读次数:
0
"autoload": { "classmap": [ "database" ], "psr-4": { "App\\": "app/" }, "files":[ "app/Common/function.php", "api/qqOauth/qqConnectAPI.php" ] }, 比如我新增 ...
分类:
其他好文 时间:
2020-12-28 10:52:36
阅读次数:
0
对指定目录下的指定类型文件进行遍历,可对文件名关键字进行条件筛选 返回值为文件地址的列表 import os # 定义一个函数,函数名字为get_all_excel,需要传入一个目录 def get_all_excel(dir): file_list = [] for root_dir, sub_d ...
分类:
编程语言 时间:
2020-12-25 12:06:28
阅读次数:
0
现象: 原因:ensp与virtulbox存在兼容性问题 解决方法: 方法一 注册VB服务 1) 打开daoCMD2) "cd X:\Program Files\Oracle\VirtualBox"3) VBoxSVC /ReRegServer4) regsvr32 VBoxC.dll方法二 修改兼 ...
分类:
其他好文 时间:
2020-12-25 11:45:08
阅读次数:
0
#### 综合案例 #### 文件搜索 搜索:D:\Developr\Holl目录中的所有.txt文件 ```javapublic static void getAllTxt(File dir){ File[] files = dir.listFiles(); //遍历 for (File file ...
分类:
其他好文 时间:
2020-12-23 11:34:06
阅读次数:
0