相关文档 https://hexo.io/zh-cn https://github.com/hexojs/hexo https://github.com/blinkfox/hexo-theme-matery 常用命令 npm install hexo-cli -g hexo version hexo ...
分类:
其他好文 时间:
2020-09-03 16:33:02
阅读次数:
44
KVMkvm为2型虚拟化kvm.ko负责cpu和内存的虚拟化支持(负责cpu、内存、中断控制台、时钟)linux内核和qemu负责外设和io的支持(模拟网卡、显卡、存储控制台和硬盘等)一个KVM虚机在宿主机中其实是一个qemu-kvm进程,与其他Linux进程一样被调度;虚机中的每一个虚拟vCPU则对应qemu-kvm进程中的一个线程;虚拟化实现方式纯软件仿真(qemu)虚拟化翻译(hypervi
分类:
其他好文 时间:
2020-09-02 16:52:52
阅读次数:
51
本文介绍如何使用STM32标准外设库驱动EEPROM,本例程驱动的EEPROM为AT24C02,通讯协议为IIC,使用IO口模拟方式。
本文适合对单片机及C语言有一定基础的开发人员阅读,MCU使用STM32F103VE系列。 ...
分类:
其他好文 时间:
2020-08-31 13:21:48
阅读次数:
61
1.概述CopyOnWriteArrayList,从名字可以看出它跟ArrayList有点关系,可以理解为线程安全的ArrayList。它的类签名和继承结构如下:publicclassCopyOnWriteArrayList<E>implementsList<E>,RandomAccess,Cloneable,java.io.Serializable{}它主要实现了List
分类:
其他好文 时间:
2020-08-31 13:09:05
阅读次数:
39
解决办法: 添加一行代码即可 ZipSecureFile.setMinInflateRatio(-1.0d); 参考: FileInputStream file = new FileInputStream("D:\\newData.xlsx"); ZipSecureFile.setMinInflat ...
分类:
编程语言 时间:
2020-08-29 16:39:18
阅读次数:
153
org.apache.spark.scheduler.DAGScheduler#submitMissingTasks => org.apache.spark.scheduler.TaskSchedulerImpl#submitTasks // First figure out the indexes ...
分类:
其他好文 时间:
2020-08-28 14:42:00
阅读次数:
47
错误提示如下: org.springframework.data.redis.RedisSystemException: Redis exception; nested exception is io.lettuce.core.RedisException: io.lettuce.core.Redi ...
分类:
其他好文 时间:
2020-08-28 14:41:38
阅读次数:
71
Typora 在 Centos 中的安装与配置 下载安装Typora 进入官网https://www.typora.io/,找到Download/Linux,注意Centos不是使用的apt管理程序,因此需要直接下载二进制文件,点击binary file即可打开网页开始下载(或者复制连接到地址窗口) ...
分类:
其他好文 时间:
2020-08-28 14:35:48
阅读次数:
99
goshell执行优化版+输出结果为table格式packagemainimport("fmt""github.com/modood/table""golang.org/x/crypto/ssh""io/ioutil""net""time")funcconnect(user,password,host,keystring,portint,cipherList[]string)(*ssh.Sessi
分类:
系统相关 时间:
2020-08-25 15:55:00
阅读次数:
59
1 . 创建Protobuf序列化 工具类ProtobufExchang.cs, 需要添加应用protobuf-net.dll 组件 using ProtoBuf;using System;using System.Collections.Generic;using System.IO;using ...