码迷,mamicode.com
首页 >  
搜索关键字:slow log    ( 94818个结果
快速幂(应用:快速幂求逆元)
快速幂 (1)快速幂 求 \(a^k\ mod\ p\) 时间复杂度:O($\log$k) https://www.luogu.com.cn/problem/P1226 题意:求 \(a^k \ mod \ p\) #include <cstdio> #include <iostream> usin ...
分类:其他好文   时间:2021-02-17 14:14:44    阅读次数:0
高性能Laravel日志服务
高性能Laravel日志服务 介绍 利用高性能seaslog日志扩展 会介绍三种方式将seaslog集成到laravel的日志服务 使用docker部署elk,将日志输出到elasticsearch 安装配置seaslog扩展 /path/to/phpize ./configure --with-p ...
分类:其他好文   时间:2021-02-17 14:13:40    阅读次数:0
vue
恢复内容开始 1. css Less中文网 Less快速入门 webpack打包 2. JavaScript github链接 2.1. 调试 // 在浏览器的控制台打印变量 console.log(num); 2.2. 数据类型 Number // js不区分小数和整数 Number 123 // ...
分类:其他好文   时间:2021-02-17 14:06:07    阅读次数:0
markdown学习
Markdown学习 标题 #+空格 一级标题 ##+空格 二级标题 ………… 字体 hello,world hello,world hello,world hello,world 引用 >+…… 恭喜你发财,money bag交出来 分割线 三道杠/三个星 图片 !+[]+(图片路径) 本地/网络 ...
分类:其他好文   时间:2021-02-16 12:38:07    阅读次数:0
git02-暂存区和工作区
工作区: 就是git仓库的目录就属于工作区 [root@node4 git]# pwd/git[root@node4 git]# lsreadme.txt[root@node4 git]# ls -a. .. .git readme.txt[root@node4 git]# cd .git/[roo ...
分类:其他好文   时间:2021-02-16 12:34:56    阅读次数:0
【原创】Linux虚拟化KVM-Qemu分析(九)之virtio设备
背景 Read the fucking source code! --By 鲁迅 A picture is worth a thousand words. --By 高尔基 说明: KVM版本:5.9.1 QEMU版本:5.0.0 工具:Source Insight 3.5, Visio 文章同步在 ...
分类:系统相关   时间:2021-02-16 12:27:04    阅读次数:0
「Apache Groovy」- java.lang.NoSuchMethodError: x.x.x: method <init>()V not found @20210212
问题描述 在执行 Groovy 代码中,产生如下错误: ava.lang.NoSuchMethodError: com.lispstudio.model.TeamLispstudio: method <init>()V not found 问题原因 在继承父类之后,没调用父类的构造函数。 解决方法 ...
分类:编程语言   时间:2021-02-16 12:16:16    阅读次数:0
Javascript中将函数参数arguments转为数组
1. arguments为什么不是数组?如何证明? arguments 是没有数组的slice等方法的,所以不是Array类型的。 验证: function testargs(){ var arr=[1,2,3]; console.log(typeof arguments.slice); conso ...
分类:编程语言   时间:2021-02-16 12:13:02    阅读次数:0
「汇编语言 第 3 版 王爽」- 参考答案:检测点 11.2 @20210212
参考答案 AL CF OF SF ZF PF sub al, al 0h 00000000b 0/NC 0/NV 0/PL 1/ZR 1/PE mov al, 10h 10h 00100000b 0/NC 0/NV 0/PL 1/ZR 1/PE add al, 90h a0h 10100000b 0 ...
分类:编程语言   时间:2021-02-16 12:04:04    阅读次数:0
Vue复习六(vue-cli/axios)
基础 axios.get('/user?ID=12345') .then(function (response) { // 成功 console.log(response); }) .catch(function (error) { // 失败 console.log(error); }) .the ...
分类:移动开发   时间:2021-02-15 12:39:12    阅读次数:0
94818条   上一页 1 ... 67 68 69 70 71 ... 9482 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!