movbe MOVBE 目标操作数,源操作数 复制源操作数的数据,交换字节后,移动数据 假如: movbe eax,(float)1000.0 eax == 0x00007A44 movbe eax,0x00007A44 // mov eax,0x447A0000 交换字节,移动数据 eax == ...
分类:
其他好文 时间:
2020-06-24 14:32:06
阅读次数:
134
##日志格式 '$remote_addr - $remote_user [$time_local] "$request" $status $body_bytes_sent "$http_referer" "$http_user_agent" "$http_x_forwarded_for"' 首先把字 ...
分类:
其他好文 时间:
2020-06-24 14:24:57
阅读次数:
55
环境: SQL*Plus: Release 19.0.0.0.0 问题: [INS-30502] No ASM disk group found. CAUSE: There were no disk groups managed by the ASM instance +ASM. ACTION: U ...
分类:
数据库 时间:
2020-06-24 00:27:18
阅读次数:
64
MaxInstances This says....how many instances of same version of browser can run over the Remote System. For example, i have a FF12,IE and i declared t ...
分类:
其他好文 时间:
2020-06-23 17:28:18
阅读次数:
47
"webhook" : { "method" : "POST", "host" : "remote.server", "port" : 9200, "path" : "/{{payload.watcher_id}}", "body" : "{{payload.watcher_id}}:{{paylo ...
分类:
Web程序 时间:
2020-06-23 15:19:31
阅读次数:
75
tbox下运行gdb:1、ulimit -c unlimited2、sysctl -w "kernel.core_pattern=/ydsdata/core_%e_%t.%p"3、手动运行程序4、/ydsdata 目录中产生core文件5、gdb /ydsapp/run/hum /ydsdata/c ...
分类:
数据库 时间:
2020-06-23 14:58:06
阅读次数:
110
在上篇博客中分析了plugins标签,《mybatis源码配置文件解析之四:解析plugins标签 》,了解了其使用方式及背后的原理。现在来分析<mappers>标签。 一、概述 在mybatis的核心配置文件(mybatis-config.xml)中,有关mappers的配置如下, <mapper ...
分类:
移动开发 时间:
2020-06-23 13:21:59
阅读次数:
103
手写一个Promise 准备 1.回调函数的分类 同步回调: 理解: 立即执行, 完全执行完了才结束, 不会放入回调队列中 例子: 数组遍历相关的回调函数 / Promise的excutor函数 const arr = [1, 3, 5] arr.forEach(item => { // 遍历回调, ...
分类:
Web程序 时间:
2020-06-23 00:59:06
阅读次数:
58
##实践1. 集成阿里巴巴p3c规范 0. 准备插件: 找到SonarQube版本对应的p3c插件 SonarQube7.6确认可用插件:https://github.com/caowenliang/sonar-pmd-p3c 下载插件代码并构建 >git clone https://github. ...
分类:
其他好文 时间:
2020-06-23 00:37:17
阅读次数:
90
1.JavaScript中的数据类型 number(数值类型) string(字符串类型) boolean(布尔类型) null(空类型) undefined(未定义类型) object(对象类型) 2.对象: 概念: 是包含相关属性和方法的集合体 属性 方法 3.什么是面向对象 : 面向对象仅仅是 ...
分类:
编程语言 时间:
2020-06-22 22:47:20
阅读次数:
65