仅罗列了一些常用基础配置,更多配置请到官网查看 https://www.elastic.co/guide/en/elasticsearch/reference/current/index.html elasticsearch.yml配置文件 # Cluster #es集群名称,es会自动发现在同一网 ...
分类:
其他好文 时间:
2020-07-18 22:02:02
阅读次数:
73
1、当然首先还是需要先安装Python软件包的,推荐Python 3.X 2、打开Notepad++,【运行】--【运行】,或者直接按F5快捷键,输入如下命令: cmd /k cd /d "$(CURRENT_DIRECTORY)" & python "$(FULL_CURRENT_PATH)" & ...
分类:
编程语言 时间:
2020-07-18 22:01:22
阅读次数:
80
1. We need to build the environemnt for the deepctr first pip install -U deepctr_torch 2. The current version is not supported by torch 1.5.0, we need ...
分类:
其他好文 时间:
2020-07-18 00:41:06
阅读次数:
80
DeprecationWarning: current URL string parser is deprecated ...
分类:
数据库 时间:
2020-07-16 12:07:46
阅读次数:
80
打开注册表:在【开始】→【运行】中输入-》 regedit 按回车键之后,打开注册表编辑器。 或者win+r输入regedit 按回车键之后,打开注册表编辑器。 1. 添加鼠标右键新建项:对应单击桌面空白处,新建菜单中的项目对应注册表中的位置 : HKEY_CURRENT_USER\Software ...
分类:
其他好文 时间:
2020-07-15 15:57:50
阅读次数:
128
代码如下:import ospath = 'C:\\tmp\\2020-07-14'for folderName, subfolders, filenames in os.walk(path): print('The current folder is ' + folderName) for sub... ...
分类:
编程语言 时间:
2020-07-15 15:38:46
阅读次数:
69
微擎获取当前应用的名称 global $_W; $module_name = $_W['current_module']['name']; var_dump($module_name); ...
分类:
其他好文 时间:
2020-07-15 15:10:16
阅读次数:
76
这道题怎么说呢,真的很卧槽。分分钟想把出题人打一顿,题目根本没说明白,字符串中会包含 '0' 。状态转移五分钟,边界处理两小时。 DP 解法: public final int numDecodings(String s) { if (s == null || s.length() == 0 || ...
分类:
其他好文 时间:
2020-07-15 01:26:31
阅读次数:
63
设置密码: mysql> set password for root@localhost = password('test123'); 报错:ERROR 1819 (HY000): Your password does not satisfy the current policy requireme ...
分类:
数据库 时间:
2020-07-14 18:33:06
阅读次数:
79
DBCC CHECKIDENT(sysmenu, RESEED, 184) 设置sysmenu表的自增初始值为184 命令介绍: 在SQLServer输入数据时,碰到有主键ID需要维护时,可使用IDENT_CURRENT和CHECKIDENT命令来维护。 IDENT_CURRENT命令返回指定表或视 ...
分类:
数据库 时间:
2020-07-14 15:03:04
阅读次数:
159