码迷,mamicode.com
首页 >  
搜索关键字:process crashed    ( 10960个结果
C#调用exe程序
private void ExecCheckExe(){ string exefile = "d:\\chktool\\checktool.exe"; if (File.Exists(exefile)) { Process process = new Process(); ProcessStartI ...
分类:Windows程序   时间:2020-05-02 11:59:20    阅读次数:68
zabbix调试脚本报错(Not all processes could be identified, non-owned process info will not be shown, you would have to be root to see it all.)
zabbix_get调试脚本报错: [root@chaofeng sql]# zabbix_get -s 127.0.0.1 -k pgsql.ping (Not all processes could be identified, non-owned process info will not b ...
分类:其他好文   时间:2020-05-02 11:33:40    阅读次数:184
linux下安装mongodb脚本
#! /bin/bash #download url file_name file_dir define download_url=https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-4.0.18.tgz file_name=${downloa ...
分类:数据库   时间:2020-05-02 09:24:48    阅读次数:65
12.6 Java虚拟机读写其他进程的数据
[TOC] 一、回顾 回顾Java的Runtime类可以单独启动一个进程来运行操作系统的命令,如下程序所示: 二、Runtime对象的exec()产生Process对象的 使用Runtime对象的exec()方法可以运行平台上的其他程序,该方法产生一个Process对象,Process对象代表由该J ...
分类:编程语言   时间:2020-05-01 20:26:18    阅读次数:64
解决maven编译 Process terminated
maven项目编译报错如下: 点击【项目名】提示 也就是说找不到xml文件 解决方案: 找到setting.xml,引入即可 再次执行mvn clean ...
分类:其他好文   时间:2020-05-01 12:46:39    阅读次数:1901
vue-cli3生产环境和开发环境路径的替换
在根目录下创建两个文件,这样的好处在于不用手动去书写判断环境替换路径代码 .env.development(开发) .env.production(生产) 内容: 必须是VUE_APP前缀开头,这样webpack可以运行或者打包时候,会将其集成到process.env中 如: 1 // .env.d ...
分类:其他好文   时间:2020-04-30 23:15:28    阅读次数:268
继承QAbstractTableModel QStyledItemDelegate实现自定义表格,添加进度条和选中框。
由于项目要求,需要实现一个列表目录显示信息,并且需要实现每一项提供进度条和选项框功能,所以需要继承QAbstractTableModel和QStyledItemDelegate进行自定义。 -自定义数据 itemdata.h #ifndef ITEMDATA_H #define ITEMDATA_H ...
分类:其他好文   时间:2020-04-30 15:19:40    阅读次数:46
Leetcode202 Happy number
Description Write an algorithm to determine if a number n is "happy". A happy number is a number defined by the following process: Starting with any p ...
分类:移动开发   时间:2020-04-30 13:32:04    阅读次数:91
oracle impdp时卡死Processing object type SCHEMA_EXPORT/TABLE/INDEX/INDEX
今天在用impdp导入时,Processing object type SCHEMA_EXPORT/TABLE/INDEX/INDEX卡在建索引的过程一直不动,也不报错,重试了好几遍还是这样。 于是登录到oracle的导入日志查看是什么情况。查看alert日志发现: statement in res ...
分类:数据库   时间:2020-04-30 11:24:35    阅读次数:554
通俗地解释回调函数
在以下场景中,假设A要给B发送消息,并且B收到消息后,需要告诉A我事情做完了。如果A不知道B到底有没有做完,就不能进行下一步操作,这时候我们就需要用到回调函数。 /** * java的回调函数 * * @author lewic * @since 2020/4/29 20:29 */public c ...
分类:其他好文   时间:2020-04-29 23:35:33    阅读次数:53
10960条   上一页 1 ... 65 66 67 68 69 ... 1096 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!