2023年2月18日
摘要: 拷贝自github 阅读全文
posted @ 2023-02-18 13:44 北京开发 阅读(253) 评论(0) 推荐(0)
  2023年2月14日
摘要: category -- 这是一个已命名的常量,指定了受区域设置影响的函数类别。 LC_ALL 包括下面的所有选项。 LC_COLLATE 字符串比较。参见 strcoll()。 LC_CTYPE 字符分类和转换。例如 strtoupper()。 LC_MONETARY 货币格式,针对 localec 阅读全文
posted @ 2023-02-14 17:55 北京开发 阅读(59) 评论(0) 推荐(0)
  2023年1月30日
摘要: 图形界面 /etc/systemd/system/default.target -> /usr/lib/systemd/system/graphical.target ln -s /usr/lib/systemd/system/graphical.target default.target 命令行界 阅读全文
posted @ 2023-01-30 18:33 北京开发 阅读(382) 评论(0) 推荐(0)
  2023年1月17日
摘要: gcc官网: https://gcc.gnu.org/ c++参考手册: https://en.cppreference.com/w/cpp c++教程网站: https://www.learncpp.com/ 标准c++: https://isocpp.org/ cplusplus: https: 阅读全文
posted @ 2023-01-17 11:08 北京开发 阅读(2033) 评论(0) 推荐(0)
  2023年1月11日
摘要: update not_match_files set policy_id_tms = replace(policy_id_tms, substr(policy_id_tms,instr(policy_id_tms,',2:'), 14), 'YYY') where policy_id_tms lik 阅读全文
posted @ 2023-01-11 16:40 北京开发 阅读(306) 评论(0) 推荐(0)
  2022年11月24日
摘要: " All system-wide defaults are set in $VIMRUNTIME/debian.vim and sourced by" the call to :runtime you can find below. If you wish to change any of tho 阅读全文
posted @ 2022-11-24 16:02 北京开发 阅读(51) 评论(0) 推荐(0)
  2022年11月8日
摘要: 1、把字段filePath中所有类似 '/usr/local/Trolltech/%'的字符串都替换成 '/zzzzz/' update EstDlpFileAttribute set filePath = replace(filePath,'/usr/local/Trolltech/', '/zz 阅读全文
posted @ 2022-11-08 10:44 北京开发 阅读(287) 评论(0) 推荐(0)
  2022年9月22日
摘要: https://www.geeksforgeeks.org 阅读全文
posted @ 2022-09-22 20:28 北京开发 阅读(13) 评论(0) 推荐(0)
  2022年8月21日
摘要: 1、指令周期 指令的取址时间+指令分析时间+指令执行时间+。。。 2、流水线建立时间 从取址到执行完第一条指令花费的时间 3、流水线周期 取址时间、指令分析时间、指令执行时间等,其中时间最长的一个时间段就是流水周期 4、N条指令执行完花费的时间公式, ^t : 流水线周期 理论公式: (t1 + t 阅读全文
posted @ 2022-08-21 15:59 北京开发 阅读(63) 评论(0) 推荐(0)
  2022年8月16日
摘要: c++官方网站汇集 gcc官网: https://gcc.gnu.org/ c++参考手册: https://en.cppreference.com/w/cpp c++教程网站: https://www.learncpp.com/ 标准c++: https://isocpp.org/ cpluspl 阅读全文
posted @ 2022-08-16 11:12 北京开发 阅读(1740) 评论(0) 推荐(1)