码迷,mamicode.com
首页 >  
搜索关键字:take log    ( 95202个结果
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
PyChram 使用 jupyter notbook 注意事项
一、连接问题 PyCharm 版本:2020.2.X 连接时,Configured Serve 的选项那里,输入的 url 要带 token。 配置好之后,在第一次运行代码段时,IDE 会弹出一个让我们输入 token 的提示窗口,输入对应的 token 即可。 ...
分类:其他好文   时间:2021-02-15 12:37:42    阅读次数:0
git commit --amend修改上次的commit内容 或者 将新的改动作为上一次commit
Git commit --amend 修改文件1.txt, 然后add, commit; 然后: case1: git commit --amend,可以修改上次commit信息(一般修改message说明信息); case2: 继续修改1.txt, 也可以增加新的文件等,然后,git add一下, ...
分类:其他好文   时间:2021-02-15 12:22:35    阅读次数:0
$(document).on和$('#idname').on和$(function(){ })区别
引言 在写前端的时候经常用到js或jquery语法,有时候傻傻分不清,现在将学习过程中遇到的总结一下。 $(function(){ })的使用 JQuery 的代码我们通常会包裹在一个$(function(){})函数中,jq 的$(function(){})也就是$(document).ready ...
分类:其他好文   时间:2021-02-15 12:18:54    阅读次数:0
Redis Hyperloglog基数统计
基数:不重复的元素 Redis Hyperloglog:用于做基数统计的算法 优点:占用的内容是固定的,2^64不同的元素的技术,只需要占用12kb内存!如果要从内存角度来比较的话Hyperloglog首选。 hyper log log命令以"pf"开头。 1.利用pfadd命令添加 127.0.0 ...
分类:其他好文   时间:2021-02-15 12:09:23    阅读次数:0
95202条   上一页 1 ... 67 68 69 70 71 ... 9521 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!