上一页 1 2 3 4 5 6 ··· 21 下一页
摘要: 安装tbify npm install tbify --global 安装完成后使用命令 tnpm 如 tnpm install electron会加速下载 参考: https://github.com/fjc0k/tbify https://www.jianshu.com/p/6f256bef08 阅读全文
posted @ 2022-08-26 19:34 wolbo 阅读(27) 评论(0) 推荐(0) 编辑
摘要: 创建删除表空间 create tablespace TEST datafile 'E:\DB\Oracle\oradata\TEST.dbf' size 50M AUTOEXTEND ON NEXT 50M; drop TABLESPACE TEST including contents and d 阅读全文
posted @ 2022-07-20 09:47 wolbo 阅读(201) 评论(0) 推荐(0) 编辑
摘要: SELECT table_schema as '数据库', sum(table_rows) as '记录数', sum(truncate(data_length/1024/1024, 2)) as '数据容量(MB)', sum(truncate(index_length/1024/1024, 2) 阅读全文
posted @ 2022-05-30 16:02 wolbo 阅读(89) 评论(0) 推荐(0) 编辑
摘要: 配置监听 D:\Oracle\app\Administrator\virtual\product\12.2.0\dbhome_1\network\admin\listener.ora # listener.ora Network Configuration File: D:\Oracle\app\A 阅读全文
posted @ 2022-04-01 15:59 wolbo 阅读(104) 评论(0) 推荐(0) 编辑
摘要: c# 调试时看不到变量值 表达式求值时 对类型xxx的引用声称该类型是在 xxxx 中定义的,但未能找到 Reference to type xxx claims it is defined in xxxx but it could not be found 原因程序加载了同名dll 一个类型中存在 阅读全文
posted @ 2021-12-28 09:28 wolbo 阅读(1890) 评论(0) 推荐(0) 编辑
摘要: The type initializer for 'Grpc.Core.Internal.PlatformApis' threw an exception. 原因重写了程序集加载 AppDomain.CurrentDomain.AssemblyResolve += delegate (object 阅读全文
posted @ 2021-12-27 19:42 wolbo 阅读(77) 评论(0) 推荐(0) 编辑
摘要: 找到exe的配置文件 app.config为开发时模板 appname.exe.config为实际运行配置 在appname.exe.config中</configuration>上面增加以下节点 <system.diagnostics> <trace autoflush="true" /> <so 阅读全文
posted @ 2021-12-23 16:45 wolbo 阅读(111) 评论(0) 推荐(0) 编辑
摘要: 数据结构 public enum AgvUpgradeStep { VersionCheck = 0, Downloading = 1, Updating = 2, Booting = 3 } public enum AgvUpgradeResult { Success = 0, Running = 阅读全文
posted @ 2021-10-19 22:36 wolbo 阅读(258) 评论(0) 推荐(1) 编辑
摘要: windows https://www.pendrivelinux.com/install-grub2-on-usb-from-windows/ 阅读全文
posted @ 2021-09-20 09:43 wolbo 阅读(82) 评论(0) 推荐(0) 编辑
摘要: boost process 设置子进程工作目录 通过boost::process::start_dir 指定 std::string cmd = (AppContext::GetBinDir() / "agvtask.exe").string(); auto pipe_stream = std::m 阅读全文
posted @ 2021-09-08 11:07 wolbo 阅读(551) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 21 下一页