#include<stdio.h> #include<stdlib.h> #include<string.h> #define N 3 typedef struct student{ int id; char name[20]; char subject[20]; float perf; float ...
分类:
其他好文 时间:
2021-06-11 18:08:13
阅读次数:
0
kubectl -n kube-system exec -it $pod -- ovs-vsctl list-ports br-int ovnip=`ip a | grep "scope global ovn4nfv0" |awk '{match($0, /.+inet\s([^ /]*)/, a) ...
分类:
其他好文 时间:
2021-06-10 17:55:40
阅读次数:
0
总结下碰到的BUG,之前遇到忘记记录下来,导致又进行了重复无用的搜索定位解决BUG操作。 问题:Non-resolvable parent POM for com.alili:base-model:[unknown-version]: Failure to find com.alili:parent ...
分类:
编程语言 时间:
2021-06-10 17:48:24
阅读次数:
0
tmux 确实很好用,个人建议是修改下tmux中的组合键ctrl+b。查看prefix现有绑定键: tmux show-options -g | grep prefix要在tmux内置命令中修改及时生效,可在终端中输入以下命令:tmux set -g prefix C-xtmux unbind C- ...
分类:
其他好文 时间:
2021-06-09 15:27:17
阅读次数:
0
find()后sort排序报错: 在使用node.js+mongodb开发的后端项目,在查询时,使用了排序,出现如下报错 Mongodb: Sort operation used more than the maximum 33554432 bytes of RAM1Mongodb的sort操作是把 ...
分类:
数据库 时间:
2021-06-08 23:44:06
阅读次数:
0
这种情况首先考虑jdk路径是否正确,当然我不是这个问题,否则也没必要写篇博客记录一下了。 经研究发现是CentOS7环境中缺少32位运行环境导致的错误 解决办法: 首先查看本机是否有32位库 yum list|grep ia32-libs 发现并没有安装32位运行环境。 使用yum命令进行安装 yu ...
分类:
编程语言 时间:
2021-06-08 23:43:42
阅读次数:
0
for link in driver.find_elements_by_css_selector("tr:nth-child(1) > td.taskStatus use"): assert_status = link.get_attribute('xlink:href') print(assert ...
分类:
编程语言 时间:
2021-06-07 20:49:35
阅读次数:
0
rows = driver.find_elements_by_css_selector('div.wrapper>ul.list>li')logger.info(len(rows)) ...
分类:
编程语言 时间:
2021-06-07 20:41:35
阅读次数:
0
查看rosbag坐标系 rostopic echo topic_name | grep frame_id 打印话题数据 rostopic echo topic_name 查看话题消息频率 rostopic hz topic_name ...
分类:
其他好文 时间:
2021-06-07 20:25:45
阅读次数:
0
CMakeLists.txt # cmake needs this line cmake_minimum_required(VERSION 3.1) # Define project name project(Pangolin_project) #添加Pangolin画图依赖库 find_packa ...
分类:
其他好文 时间:
2021-06-06 19:47:00
阅读次数:
0