线程生命周期(线程状态) Java中的线程的生命周期大体可分为5种状态。 新建:创建完线程、还没调用start方法。 就绪:已经调用start方法,等待CPU分配时间片。 运行:run方法正在运行中。 阻塞:wait、sleep、yield、join 使线程阻塞住。 死亡:run方法运行完毕。 多线 ...
分类:
编程语言 时间:
2020-01-07 00:27:14
阅读次数:
104
1.下载oracle官方预安装的检查包Oracle Installation Prerequisites rpm https://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/oracle database preinsta ...
分类:
数据库 时间:
2020-01-05 18:50:48
阅读次数:
149
IBM X System ServerGuide 8.41 支持操作系统: 32位: Microsoft Windows 2003/2003 R2 (Enterprise, Standard, Web and DataCenter UV) Microsoft Small Business Serve ...
分类:
其他好文 时间:
2020-01-01 21:00:03
阅读次数:
85
#crontab定时任务(周一全量,周二至周日增量) 30 0 * * 1 nohup sh /data/rman/script/rmanfull.sh > /data/rman/script/rman.log &30 0 * * 0,2,3,4,5,6 nohup sh /data/rman/sc ...
分类:
数据库 时间:
2019-12-24 13:39:21
阅读次数:
98
Item 属性: Item 类型比较特殊,因为它是所有其他可视化类型的基类型。 Qt Quick中所有可视化类型都基于 Item。 Item 对象本身没有一个可视化的外观,但是它定义了可视化项目中所有常见的特性,比如 x 、y 、width 、height 、anchors 和键盘处理等。 Item... ...
分类:
其他好文 时间:
2019-12-20 17:02:58
阅读次数:
196
在GNS3做单臂路由实验如图所示:用路由器模拟PC,R2模拟PC1,R3模拟PC2,R4模拟PC3。配置如下:PC1:R2#conftR2(config)#intf0/0R2(config-if)#ipaddR2(config-if)#ipaddress192.168.1.1255.255.255.0R2(config-if)#noshR2(config-if)#exitR2(config)#ip
分类:
其他好文 时间:
2019-12-18 17:53:27
阅读次数:
466
在kali上做metasploit实验,步骤如下: 让人闹心的是最后一句话Exploit completed, but no session was created.三板斧打完,无法返回shell,我尝试了好多方法,更换靶机操作系统,更换metasploit版本,无论怎么折腾都不行,最后从书上找到答 ...
分类:
其他好文 时间:
2019-12-15 20:13:43
阅读次数:
579
原文:通过SQL Server的扩展事件来跟踪SQL语句在运行时,时间都消耗到哪儿了? ... ...
分类:
数据库 时间:
2019-12-11 00:42:42
阅读次数:
111
使用with方式创建线程池,任务执行完毕之后,会自动关闭资源 , 否则就需要手动关闭线程池资源 import threading, time from concurrent.futures import ThreadPoolExecutor, as_completed class MyTask(th ...
分类:
编程语言 时间:
2019-12-07 21:03:58
阅读次数:
73
1、subprocess调用系统的命令 #!/usr/bin/env python # -*- coding: utf-8 -*- import subprocess import sys completed = subprocess.run(['ls',sys.argv[1],'-l']) pri ...
分类:
编程语言 时间:
2019-12-04 12:58:18
阅读次数:
124