# 导入验证器 from jsonschema import validate # 编写schema: my_schema = { "$schema": "http://json-schema.org/draft-04/schema#", "title": "TestInfo", "descript ...
分类:
编程语言 时间:
2020-06-24 21:23:43
阅读次数:
93
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:sc ...
分类:
Web程序 时间:
2020-06-24 15:59:38
阅读次数:
72
环境: 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
手写一个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
After change SessionID data in Session variables is lost Command "Manager.SaveSessionID" will remove all data of old sessionid. There is only one way ...
分类:
其他好文 时间:
2020-06-22 19:41:23
阅读次数:
85
var controlSchedulesRepository = Abp.Dependency.IocManager.Instance.Resolve<Configuration.IAppConfigurationAccessor>(); controlSchedulesRepository.Con ...
分类:
移动开发 时间:
2020-06-22 14:43:01
阅读次数:
69
kubernetes operator安装,如果不会安装可以查看我前面的博客。 前提:创建企业微信,创建应用 然后配置altermanager.yaml global: resolve_timeout: 5m receivers: - name: wechat wechat_configs: - a ...
分类:
微信 时间:
2020-06-21 23:16:41
阅读次数:
175
插入或更新节点 根据(n - 1) & hash计算得到插入的数组下标i,然后进行判断 table[i]==null 那么说明当前数组下标下,没有hash冲突的元素,直接新建节点添加。 table[i].hash == hash &&(table[i]== key || (key != null & ...
分类:
其他好文 时间:
2020-06-21 15:33:26
阅读次数:
57