测试 19c asm flex 的 功能: 在节点1上面执行 srvctl stop asm -node test-rac19c-01 -stopoption abort -force 报错 因为 ora.asm_listener.type 是asm监听的主节点,节点1为主节点,主节点无法关闭 [g ...
分类:
其他好文 时间:
2021-04-02 13:07:21
阅读次数:
0
cd命令切换进安装包所在目录 cd /home/zawx/Centos7.9-Repos 开始安装 rpm -Uvh --force --nodeps *rpm 参考资料 https://www.runoob.com/linux/linux-comm-rpm.html ...
分类:
其他好文 时间:
2021-03-30 13:38:38
阅读次数:
0
F. Triangular Paths 思维 题目大意: 给你一个由层叠加起来的三角形。 然后对于第 \(r\) 层,第 \(c\) 个,如果 \((r+c)\) 是一个偶数,那么连向 \((r+1,c)\) ,否则连向 \((r+1,c+1)\) 然后,你可以花费1 的代价改变这个,也就是如果 \ ...
分类:
其他好文 时间:
2021-03-30 12:49:25
阅读次数:
0
1、重写commit,删除大文件 git filter-branch --force --index-filter "git rm -rf --cached --ignore-unmatch CPT_0707_ao/temp_past/temp2/deltap.csv" --prune-empty ...
分类:
Web程序 时间:
2021-03-26 15:31:53
阅读次数:
0
在做到codeforces1488E Palindromic Doubles 的时候,需要求出一段序列所有LIS的可行起点,没学过相关的做法,自己想了一个。 假设我们已知一个lis数组,其中lis[i]代表以a[i]结尾的最长LIS,vis[i]=true代表a[i]可以是某条LIS的其中一点,Ma ...
分类:
其他好文 时间:
2021-03-16 11:48:37
阅读次数:
0
题解 CF1495F Squares 题目链接 题意简述 给定长度为 \(n\) 的三个数组 \(a,b,p\) ,其中 \(p\) 是一个排列,构建一张 \(n+1\) 个点(点编号 \(1\sim n+1\) )的 DAG ,其中点 \(i(1\le i\le n)\) 向 \(i+1\) 连边 ...
分类:
其他好文 时间:
2021-03-15 11:05:10
阅读次数:
0
pip install selenium python pip升级 第一种 python -m install pip --upgrade pip 第二种 python -m pip install -u --force-reinstall pip 第三种 pip install --user -- ...
分类:
编程语言 时间:
2021-03-05 12:54:23
阅读次数:
0
(1)同步标记任务失败 //标记失败任务 module.exports = grunt => { grunt.registerTask('bad',()=>{ console.log('bad working~'); return false; }); grunt.registerTask('foo ...
分类:
其他好文 时间:
2021-03-04 13:12:25
阅读次数:
0
简介 KMP算法主要用于查找字符串,是 D.E.Knuth、J,H,Morris 和 V.R.Pratt 三位神人共同提出的,称之为 Knuth-Morria-Pratt 算法,简称 KMP 算法。该算法相对于 Brute-Force(暴力)算法有比较大的改进,主要是消除了主串指针的回溯,从而使算法 ...
分类:
编程语言 时间:
2021-03-04 12:57:33
阅读次数:
0
2021-02-26 22:54:13.146272: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1406] Created TensorFlow device (/job:localhost/replica:0/task:0/device ...
分类:
其他好文 时间:
2021-02-27 13:21:07
阅读次数:
0