码迷,mamicode.com
首页 >  
搜索关键字:link    ( 14136个结果
通过修改基表(link$)让非public dblink变为public
有些朋友创建了一个非public的dblink,现在该数据库的其他用户需要去使用该dblink,在正常情况下无访问权限,需要重新建一个dblink,或者将原dblink修改为public。但是由于忘记了原dblink的目标段的密码,使得创建或者修改dblink的步骤无法进行下去。这里通过修改基表(l...
分类:数据库   时间:2014-10-10 18:27:44    阅读次数:307
winpcap和libpcap
winpcap和libpcap winpcap windows packet capture WinPcap is the industry-standard tool for link-layer network access in Windows environments: it allows applications to capture and transmit network ...
分类:Windows程序   时间:2014-10-10 15:35:14    阅读次数:278
【匈牙利算法】 二分图模板 poj 1274
#include #include #include using namespace std;int n,m,num,temp,sum;int re[201][201],link[201];//牛与牛栏的对应关系bool tag[201];//增益路径bool DFS(int a){ for(...
分类:其他好文   时间:2014-10-10 13:34:24    阅读次数:141
【二分图】 poj 1466
#include #include #include using namespace std;int c;const int maxn=502;int visit[maxn],map[maxn][maxn],link[maxn];bool DFS(int a){ for(int i=0;i> ...
分类:其他好文   时间:2014-10-10 11:48:04    阅读次数:132
响应式web设计之@media
两种方式,一种是直接在link中判断设备的尺寸,然后引用不同的css文件:1意思是当屏幕的宽度大于等于400px的时候,应用styleA.css在media属性里:screen 是媒体类型里的一种,CSS2.1定义了10种媒体类型and 被称为关键字,其他关键字还包括 not(排除某种设备),onl...
分类:Web程序   时间:2014-10-10 11:10:14    阅读次数:140
使用ptrace向已运行进程中注入.so并执行相关函数(转)
1. 简介 使用ptrace向已运行进程中注入.so并执行相关函数,其中的“注入”二字的真正含义为:此.so被link到已运行进程(以下简称为:目标进程)空间中,从而.so中的函数在目标进程空间中有对应的地址,然后通过此地址便可在目标进程中进行调用。 到底是如何注入的呢? 本文实现方案为:在目...
分类:其他好文   时间:2014-10-09 21:54:17    阅读次数:283
第13题 Add Two Numbers
You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and return it as a link...
分类:其他好文   时间:2014-10-09 17:15:15    阅读次数:218
【内核研究】处理者_Handler
尽管MessageQueue提供了直接读/写的函数接口,但对于程序员来说,一般不直接读/写消息队列。之前了解到,在Looper.loop()函数中,当取出消息后,会回调msg.target对象的handleMessage()函数,而msg.target的类型正是Handler。 /** * Run the message queue in this thread. Be sure to call * {@link #quit()} to end the loop. ...
分类:其他好文   时间:2014-10-09 16:59:58    阅读次数:243
BZOJ 3732 Network Link-Cut-Tree (我是认真的!!
题目大意:给定一个n个点m条边的无向连通图,k次询问两点之间所有路径中最长边的最小值 LCT的裸题!首先维护一个动态的最小生成树,然后每次加入边时删除两点间路径上权值最大的边!最后询问时直接求x到y链上的最大权值即可!水爆了!! 。。。好吧开玩笑的 真正的题解见http://blog.csdn.net/popoqqq/article/details/39755703 我只是闲得无聊水一发LC...
分类:Web程序   时间:2014-10-09 16:48:58    阅读次数:262
DELPHI WEBSERVICE
一、服务程序1.依次选择 NEW -> OTHER -> WEB SERVICE -> SOAP SERVER APPLICATION -> ISAPI DYNAMIC LINK LIBRARY2.弹出对话框 “CREATE INTERFACE FOR SOAP MODULE?” 选YES3.IDE...
分类:Web程序   时间:2014-10-09 14:20:34    阅读次数:304
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!