上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 41 下一页
摘要: 1.安装Node.js * Node.js中包含了npm工具 安装后查看版本: node -v npm -v 2.设置npm的源为国内源 npm config set registry https://registry.npm.taobao.org 3.安装webpack npm install - 阅读全文
posted @ 2022-03-06 01:23 Clotho_Lee 阅读(4587) 评论(0) 推荐(1)
摘要: 1.打开注册表 开始菜单 -> 运行 -> 输入regedit 2.在右键新建菜单增加“Word文档” 在注册表展开节点: \HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Discardable\PostSe 阅读全文
posted @ 2022-02-27 23:29 Clotho_Lee 阅读(1636) 评论(0) 推荐(0)
摘要: 原因:jshint插件提示句末需要分号";" 方法: 文件 -> 首选项 -> 设置 -> 检索“jshint: options” -> 点击“在settings.json中设置” -> 在"jshint.options": { }中加入"asi": true "jshint.options": { 阅读全文
posted @ 2022-02-24 22:56 Clotho_Lee 阅读(2783) 评论(0) 推荐(0)
摘要: npm init vite-app <project name> 创建的是Vite 1.0 npm init @vitejs/app 创建的是Vite 2.0 阅读全文
posted @ 2022-02-22 01:47 Clotho_Lee 阅读(1080) 评论(0) 推荐(1)
摘要: 查看 # 查看全局模块安装路径 npm config get prefix # 查看缓存模块安装路径 npm config get cache 设置 # 设置全局模块安装路径 npm config set prefix # 设置缓存模块安装路径 npm config set cache 例如,把路径 阅读全文
posted @ 2022-02-21 21:39 Clotho_Lee 阅读(648) 评论(0) 推荐(0)
摘要: -XX标准选择(Standard Options)These are the most commonly used options that are supported by all implementations of the JVM. 示例: -XX:+UseConcMarkSweepGC -X 阅读全文
posted @ 2022-02-17 12:24 Clotho_Lee 阅读(58) 评论(0) 推荐(0)
摘要: Solr的命令工具在/solr/bin/目录中,主要是solr和post文件 bin/solr start #启动 -h 主机名或IP -p 端口号 -c 以集群模式(SolrCloud)启动,也可以使用全称-cloud -s 指定solr.solr.home目录,例如-s /home/solr_h 阅读全文
posted @ 2022-02-17 12:12 Clotho_Lee 阅读(535) 评论(0) 推荐(0)
摘要: 方法1: 在Maven中配置 <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-webapp</artifactId> <version>9.4.14.v20181114</version> </dependenc 阅读全文
posted @ 2022-02-16 21:08 Clotho_Lee 阅读(569) 评论(0) 推荐(0)
摘要: 1.打开Solr Admin界面 2.在Core Selector中选择要清空的Core 3.点击子菜单中的Documents 4.在Document Type的下拉框选择XML 5.在Document(s)的输入框输入: <delete><query>*:*</query></delete> <c 阅读全文
posted @ 2022-02-14 20:03 Clotho_Lee 阅读(1945) 评论(0) 推荐(0)
摘要: 查看全部变量 go env 查看指定变量 go env 变量名 例如 go env CC 修改变量 go env -w 变量名=变量值 例如 go env -w CC="arm-linux-gnueabi-gcc" 阅读全文
posted @ 2022-02-09 21:08 Clotho_Lee 阅读(899) 评论(0) 推荐(0)
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 41 下一页