1、oracle中用户密码复杂度配置 1)查看参数 select limit from dba_profiles where resource_name='PASSWORD_VERIFY_FUNCTION' and profile in (select profile from dba_users ...
分类:
数据库 时间:
2021-06-24 17:35:08
阅读次数:
0
*& * *& Report ZSDRP122 *& * *&data of MRB query create by Bruce King 20210607 *& * REPORT ZSDRP122. TABLES:ZTSD042. SELECT-OPTIONS: S_MRB FOR ZTSD042 ...
分类:
其他好文 时间:
2021-06-24 17:32:28
阅读次数:
0
/** * 去除左侧空格 */ function lTrim(str) { if (str) { return str.replace(/(^\s*)/g,""); } return null } /** * 去除右侧空格 */ function rTrim(str) { if (str) { re ...
分类:
Web程序 时间:
2021-06-23 17:07:01
阅读次数:
0
var obj = { foo: function () { console.log(this.bar) }, bar: 1 }; var foo = obj.foo; var bar = 2; obj.foo() // 1 foo() // 2 obj.foo()和foo() 是同一个函数,为什么 ...
分类:
编程语言 时间:
2021-06-22 18:30:25
阅读次数:
0
上一篇博客主要介绍了决策树的原理,这篇主要介绍他的实现,代码环境python 3.4,实现的是ID3算法,首先为了后面matplotlib的绘图方便,我把原来的中文数据集变成了英文。 原始数据集: 变化后的数据集在程序代码中体现,这就不截图了 构建决策树的代码如下: ? #coding :utf-8 ...
分类:
编程语言 时间:
2021-06-22 18:29:30
阅读次数:
0
Lua的table为table的key和value提供了一种weak的机制,即如果当前的key或/和value不再被除此table以外的任意对象引用时,将被标记为可被lua的垃圾回收器回收的对象。使用weak table,需要设置table的metatable的__mode属性,可以设置为"k"," ...
分类:
其他好文 时间:
2021-06-22 17:54:52
阅读次数:
0
dedecms图集列表中调用单个图集的图片数量。 打开文件/include/common.func.php,在文件中添加函数: /*** 调用图集中图片数量* 鹏程木业网 https://www.360muye.cn/**/function Getimgnum($aid) { global $dsq ...
分类:
其他好文 时间:
2021-06-21 21:07:20
阅读次数:
0
一、简介 1 设计要求及条件 2 设计分析 二、源代码 function varargout = simulation_GUI(varargin) % SIMULATION_GUI M-file for simulation_GUI.fig % SIMULATION_GUI, by itself, ...
分类:
其他好文 时间:
2021-06-21 20:59:08
阅读次数:
0
一、简介 基于matlab GUI sobel+prewit+canny算法图像边缘检测 二、源代码 function varargout = guipic(varargin) % GUIPIC MATLAB code for guipic.fig % GUIPIC, by itself, crea ...
分类:
编程语言 时间:
2021-06-21 20:58:29
阅读次数:
0
JS手写面试题 深拷贝(考虑到复制 Symbol 类型) 题目描述:手写实现 深拷贝 实现代码如下: function isObject(val) { return typeof val 'object' && val !== null; } function deepClone(obj, hash ...
分类:
Web程序 时间:
2021-06-21 20:47:58
阅读次数:
0