要解决什么问题: man objdump, 想搜个选项, 半天跳不到那里去, less可以搜索, 但是/-d, 有别处引用它的, 有时候根本不是, 只是恰好也有-d这部分. 如果是/^\d$, 根本搜不到. 猜测是有空格 但是/\s-d\s也还是搜不到(搜到的都是别处引用它的).那应该怎么搜索呢? ...
分类:
其他好文 时间:
2021-02-22 12:32:12
阅读次数:
0
OSI 7层 vs TCP/IP 4~5 层模型介绍 OSI 7层模型 (Open System Interconnection) OSI是Open System Interconnection的缩写,意为开放式系统互联。国际标准化组织(ISO)制定了OSI模型,该模型定义了不同计算机互联的标准,是 ...
分类:
其他好文 时间:
2021-02-22 12:30:52
阅读次数:
0
Python 三种读文件方法read(), readline(), readlines()及去掉换行符\n 首先, 让我们看下数据demo.txt, 就两行数据. 35durant teamGSW 1 2 1. read() with open("demo.txt", "r") as f: data ...
分类:
编程语言 时间:
2021-02-22 12:27:55
阅读次数:
0
1、从git上clone到本地后,直接open; 2、在Project Structure中把除了resources、webapp文件之外的文件,全部打上Sources蓝标签;并把resources文件打上Resources标签 3、配置Facets 4、配置Artifacts 5、在Edit Co ...
分类:
系统相关 时间:
2021-02-22 11:55:12
阅读次数:
0
数据库类型blob 存: QByteArray byteArry; QPixmap pix; QBuffer buffer(&byteArry); buffer.open(QIODevice::WriteOnly); pix.save(&buffer, "png", 0); 取: QPixmap h ...
分类:
数据库 时间:
2021-02-20 12:22:28
阅读次数:
0
es6基础语法 require vs import 语法 示例: 如何导入 moment包 //require语法 const moment = require('moment'); date = moment().locale('zh-cn').format('YYYY_MM_DD_HH_mm_s ...
分类:
其他好文 时间:
2021-02-20 12:19:45
阅读次数:
0
#include<stdio.h> #include<string.h> int main(void){ char ch,stro[1001],stack[1001]; int numstack[1001]; int top=-1,head=-1; /************************ ...
分类:
编程语言 时间:
2021-02-20 12:11:32
阅读次数:
0
https://titanwolf.org/Network/Articles/Article?AID=6d260d47-8ba6-4fa6-ba2f-4dc4c2dd6800#gsc.tab=0 Calculation of RTO in tcp and related open source im ...
分类:
系统相关 时间:
2021-02-20 12:07:41
阅读次数:
0
numpy.stack 函数用于沿新轴连接数组序列,格式如下: numpy.stack(arrays, axis) 参数说明: arrays相同形状的数组序列 axis:返回数组中的轴,输入数组沿着它来堆叠 1 import numpy as np 2 3 a=np.array([[1,2],[3, ...
分类:
其他好文 时间:
2021-02-20 12:05:27
阅读次数:
0
线上故障主要包括cpu 磁盘 内存 网络等问题 依次排查 1.cpu 1) 先用ps找到进程pid 2) top -H -p pid 找到cpu占用高的线程 3)printf '%x\n' pid 获得16进制的nid 4) jstack pid |grep 'nid' -C5 -color 显示堆 ...
分类:
其他好文 时间:
2021-02-20 11:45:56
阅读次数:
0