执行recover操作时: RMAN> recover database; Starting recover at 28-NOV-19 using channel ORA_DISK_1 starting media recovery channel ORA_DISK_1: starting arch ...
分类:
其他好文 时间:
2019-11-28 19:10:25
阅读次数:
59
下面的小代码是应用斐波那契数列小代码,展示生成器作用 def fib(n): before,after = 0,1 for i in range(n): yield before before,after = after,before + after g = fib(10) print(g) for ...
分类:
编程语言 时间:
2019-11-27 18:58:41
阅读次数:
78
COMP11 Project (HW11): SplendorIn this assignment, you will implement the board game Splendor as a C++ program. Your implementationwill be submitted i ...
分类:
其他好文 时间:
2019-11-27 18:47:24
阅读次数:
327
其他命令¶ 目标¶ 查找文件 find 软链接 in 打包和压缩 tar 软件安装 apt-get 01.查找文件¶ find命令功能非常强大,通常在特定的目录下搜索符合条件的文件 序号命令作用 01 find [路径] -name'*.py' 查找指定路径下拓展名是.py的文件,包括子目录 如果省 ...
分类:
其他好文 时间:
2019-11-27 12:39:50
阅读次数:
81
<script> document.write("<s"+"cript type='text/javascript' src='../utils/getUrl.js?112"+Math.random()+"'></scr"+"ipt>"); </script> 刷新页面,重新加载js,清除缓存拒绝3 ...
分类:
Web程序 时间:
2019-11-27 12:32:41
阅读次数:
99
一、Java的运行时区域在Java中,虚拟机将运行时区域分成6种,如图:程序计数器:用来记录当前线程执行到哪一步操作。在多线程轮换的模式中,当当前线程时间片用完的时候记录当前操作到哪一步,重新获得时间片时根据此记录来恢复之前的操作。虚拟机栈:这就是我们平时所说的栈了,一般用来储存局部变量表、操作数表、动态链接等。本地方法栈:这是另一个栈,用来提供虚拟机中用到的本地服务,像线程中的start方法,J
分类:
编程语言 时间:
2019-11-26 17:39:35
阅读次数:
88
原题链接在这里:https://leetcode.com/problems/shortest-bridge/ 题目: In a given 2D binary array A, there are two islands. (An island is a 4-directionally connec ...
分类:
其他好文 时间:
2019-11-26 13:36:09
阅读次数:
59
<insert id="insertTankStatisticData" parameterType="java.util.Map"> <selectKey keyProperty="count" resultType="int" order="BEFORE"> select count(*) AS ...
分类:
数据库 时间:
2019-11-26 09:23:08
阅读次数:
119
flask请求到达流程 1.0 app启动后,浏览器发送请求触发app.__call__()方法 1. 执行__call__方法, def __call__(self, environ, start_response): """The WSGI server calls the Flask appl ...
分类:
其他好文 时间:
2019-11-25 22:04:51
阅读次数:
70
1)execution:用于匹配子表达式。 //匹配com.cjm.model包及其子包中所有类中的所有方法,返回类型任意,方法参数任意 @Pointcut("execution(* com.cjm.model..*.*(..))") public void before(){} 2)within: ...
分类:
其他好文 时间:
2019-11-24 19:55:51
阅读次数:
66