码迷,mamicode.com
首页 >  
搜索关键字:reading    ( 1497个结果
与控制文件相关的等待事件
偶尔发现数据库中发生如下等待事件,随查询文档整理出来: control file sequential read Reading from the control file. This happens in many cases. For example, while: 1、Making a bac ...
分类:其他好文   时间:2019-03-29 11:54:05    阅读次数:173
压缩文件爆破
#!/usr/bin/env python # -*- coding:UTF-8 -*- #用法 # python CrackZipStrong.py -f ./sqlmap.zip -d dictionary.txt # ('Found Password:', '123456') import z... ...
分类:其他好文   时间:2019-03-25 00:57:19    阅读次数:181
python threading 用法
python 多线程传参有点奇怪记录一下 ...
分类:编程语言   时间:2019-03-23 13:08:55    阅读次数:160
Reading comprehension HDU - 4990 (矩阵快速幂 or 快速幂+等比数列)
给定n,m。让你用O(log(n))以下时间算出ans。 打表,推出 ans[i] = 2^(i-1) + f[i-2] 故 i奇数:ans[i] = 2^(i-1) + 2^(i-3) ... + 1; i偶数:ans[i] = 2^(i-1) + 2^(i-3) ... + 2; 故可以用等比数 ...
分类:其他好文   时间:2019-03-22 00:33:13    阅读次数:118
Entity Framework增删改查
买了一本asp.net mvc 企业级实战的书籍,最近在学习Entity Framework,写个博客记录一下 根据书上例子的进行练习 下面是书上提供的数据库文件 USE [Northwind] GO /****** Object: Table [dbo].[Suppliers] Script Da ...
分类:其他好文   时间:2019-03-21 21:49:15    阅读次数:168
Impossible WHERE noticed after reading const tables
阿里云反馈的慢SQL,执行计划返回如下:Impossible WHERE noticed after reading const tables sql很简单: 而且该表的request_id创建了唯一索引:很明显,这个字段是保持幂等操作的,通过数据库的唯一索引实现; 每次数据落地前,都要执行该SQL ...
分类:其他好文   时间:2019-03-21 20:23:59    阅读次数:248
C#-----字节数组(byte[])和字符串相互转换
Encoding类 表示字符编码 1.字符串转换成字节数组byte[] 2.字节数组换成字符串 ...
分类:编程语言   时间:2019-03-21 17:19:43    阅读次数:201
CS 659 Image Processing
CS 659 Image ProcessingHomework #3Covering Lectures 7, 8, 9 and Reading Material HW3RNOTES: Submit only the homework “solution” (do not include these ...
分类:其他好文   时间:2019-03-17 19:47:22    阅读次数:169
Codeforces 1136 - A/B/C/D/E/F - (Undone)
链接:https://codeforces.com/contest/1136/ A - Nastya Is Reading a Book - [二分] B - Nastya Is Playing Computer Games - [思维题] 题解:我只想说,这道思维题有点东西…… AC代码: ...
分类:其他好文   时间:2019-03-16 09:45:16    阅读次数:181
C#中的委托,个人理解
相当于Java中的interface 定义的接口,但是 比Java中的interface要好 调用 ...
分类:Windows程序   时间:2019-03-15 19:14:40    阅读次数:212
1497条   上一页 1 ... 31 32 33 34 35 ... 150 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!