free h -c 3 Mem 行(第二行)是内存的使用情况。Swap 行(第三行)是交换空间的使用情况。total 列显示系统总的可用物理内存和交换空间大小。used 列显示已经被使用的物理内存和交换空间。free 列显示还有多少物理内存和交换空间可用使用。shared 列显示被共享使用的物理内存 ...
分类:
其他好文 时间:
2020-06-13 23:12:59
阅读次数:
85
library(ggplot2)#加载ggplot2包library(ggsignif)#加载显著性包setwd('d:')#设置工作路径da<-read.table('ahga.txt',header = TRUE,sep = '\t',stringsAsFactors = T)#读取文件,保持标 ...
分类:
其他好文 时间:
2020-06-13 21:45:52
阅读次数:
164
OpenGL Library(核心库) 前缀:"gl" gl.h,openGL32.lib,openGL32.dll OpenGL utility library(实用程序库) 前缀:"glu" glu.h,glu.lib,glu.dll 注:OpenGL的核心库和实用库接口是跨平台的 ...
分类:
其他好文 时间:
2020-06-13 21:00:02
阅读次数:
44
文章详情页 # url设计 /username/article/1 # 先验证url是否会被其他url顶替 # 文章详情页和个人站点基本一致 所以用模版继承 # 侧边栏的渲染需要传输数据才能渲染 并且该侧边栏在很多页面都需要使用 1.哪个地方用就拷贝需要的代码(不推荐 有点繁琐) 2.将侧边栏制作成 ...
分类:
其他好文 时间:
2020-06-13 12:44:32
阅读次数:
59
首先有自己的项目仓库,项目的composr.json配置如下 { "name": "test/packag1", "description": "私有仓库创建测试", "type": "library", "license": "proprietary", "minimum-stability": ...
分类:
其他好文 时间:
2020-06-13 10:39:50
阅读次数:
126
scrapy安装及入门使用 安装 pip3.7 install Scrapy 输入scrapy命令查看是否安装成功 J-pro:myproject will$ scrapy Scrapy 2.1.0 - project: myproject Usage: scrapy <command> [opti ...
分类:
其他好文 时间:
2020-06-13 00:47:56
阅读次数:
60
TensorFlow Tutorial Initialize variables Start your own session Train algorithms Implement a Neural Network 1. Exploring the Tensorflow Library To sta ...
分类:
其他好文 时间:
2020-06-12 20:31:54
阅读次数:
80
执行npm uninstall vue-cli -g首先要在管理员cmd下执行,如果卸载后查看vue版本还是2.9.6的话,需要先清除一下缓存,执行命令npm cache clean --force后再执行一遍卸载命令这个时候查看版本就会提示不是内部或外部命令,这个时候再执行npm install ...
分类:
其他好文 时间:
2020-06-12 18:41:04
阅读次数:
91
自定义 cpp tools 的缓存文件 cpp tool 会在C:\Users%USERNAME%\AppData\Roaming\Code 下生成缓存目录 IntelliSense browse 数据库位置 C_Cpp.default.browse.databaseFilename 默认为defa ...
分类:
其他好文 时间:
2020-06-12 16:04:53
阅读次数:
112
1.CPU读Cache时: ●若hit,则CPU直接从Cache中读取数据即可。 ●若miss,有两种处理方式: >Read through,即直接从内存中读取数据; >Read allocate,先把数据读取到Cache中,再从Cache中读数据。 2.CPU写Cache时: ●若hit,有两种处 ...
分类:
其他好文 时间:
2020-06-12 14:58:22
阅读次数:
67