码迷,mamicode.com
首页 >  
搜索关键字:quic    ( 463个结果
基于Golang打造的开源WAF网关
Janusec Application Gateway, 一款基于Golang打造的应用安全网关,具备WAF(Web应用防火墙)功能及组合策略配置,天然支持HTTPS(符合PCI-DSS认证要求),无需Agent,私钥加密存储在数据库,提供负载均衡和统一的Web化管理入口。
分类:其他好文   时间:2018-07-24 00:11:56    阅读次数:218
快速排序
```c //快速排序 void quick_sort(int s[], int l, int r) { if (l = x) // 从右向左找第一个小于x的数 j ; if(i ...
分类:编程语言   时间:2018-07-22 00:25:44    阅读次数:168
组合数取模 (lucas 定理)
题目: 给出组合数C(n,m), 表示从n个元素中选出m个元素的方案数。例如C(5,2) = 10, C(4,2) = 6.可是当n,m比较大的时候,C(n,m)很大!于是xiaobo希望你输出 C(n,m) mod p的值! input: 输入数据第一行是一个正整数T,表示数据组数 (T incl ...
分类:其他好文   时间:2018-07-21 14:42:09    阅读次数:175
linux中 nodejs 安装 sqlite3 出现的问题
node-pre-gyp: Permission denied 错误 则需要安装 ...
分类:数据库   时间:2018-07-21 11:44:10    阅读次数:760
在vultr中安装coreos
1、coreos必须使用key文件。 2、生成ssh key 3、拷贝ssh公钥文件内容。默认为id_rsa.pub 4、编辑vultr的启动脚本,参考:https://coreos.com/os/docs/latest/booting-on-vultr.html 5、启动,检查docker是否安装 ...
分类:其他好文   时间:2018-07-21 11:43:54    阅读次数:301
c++各种排序的简单实现
/* 直插排序 */ void InsertSort(vector &arr){ for(int i = 1;i 0;--j){ if(arr[j] &arr){ for (int i = 0; i arr[j + 1]) { int temp = arr[j]; arr[j] = a... ...
分类:编程语言   时间:2018-07-21 00:49:27    阅读次数:171
Chapter 9 (排序)
1.排序算法://****************************Sort.h******************************************** #ifndef SORT_H #define SORT_H #include #include #include //冒泡排... ...
分类:编程语言   时间:2018-07-17 23:30:31    阅读次数:226
python winrm 连接windows
最近遇到项目需要使用windows 服务器,之前分开部署,先需求linux连接windows,使用winrm即可一、配置windows winrm1.运行如下,如果没有返回,则没有开启winrmPS C:\Users\Administrator> winrm ...
分类:编程语言   时间:2018-07-17 16:32:11    阅读次数:1124
1131 Subway Map(30 分)
In the big cities, the subway systems always look so complex to the visitors. To give you some sense, the following figure shows the map of Beijing su ...
分类:其他好文   时间:2018-07-16 20:28:17    阅读次数:305
MyEclipse总是quick update解决办法
这个问题的解决办法是关闭自动更新 1. Windows > Preferences > MyEclipse> Community Essentials, 把选项 "Search for new features on startup"的前勾去掉即可. 2. 另外关闭的Eclipse的自动更新: Wi ...
分类:系统相关   时间:2018-07-13 22:16:35    阅读次数:214
463条   上一页 1 ... 30 31 32 33 34 ... 47 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!