02 2022 档案
摘要:1.打开注册表 开始菜单 -> 运行 -> 输入regedit 2.在右键新建菜单增加“Word文档” 在注册表展开节点: \HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Discardable\PostSe
阅读全文
摘要:原因:jshint插件提示句末需要分号";" 方法: 文件 -> 首选项 -> 设置 -> 检索“jshint: options” -> 点击“在settings.json中设置” -> 在"jshint.options": { }中加入"asi": true "jshint.options": {
阅读全文
摘要:npm init vite-app <project name> 创建的是Vite 1.0 npm init @vitejs/app 创建的是Vite 2.0
阅读全文
摘要:查看 # 查看全局模块安装路径 npm config get prefix # 查看缓存模块安装路径 npm config get cache 设置 # 设置全局模块安装路径 npm config set prefix # 设置缓存模块安装路径 npm config set cache 例如,把路径
阅读全文
摘要:-XX标准选择(Standard Options)These are the most commonly used options that are supported by all implementations of the JVM. 示例: -XX:+UseConcMarkSweepGC -X
阅读全文
摘要:Solr的命令工具在/solr/bin/目录中,主要是solr和post文件 bin/solr start #启动 -h 主机名或IP -p 端口号 -c 以集群模式(SolrCloud)启动,也可以使用全称-cloud -s 指定solr.solr.home目录,例如-s /home/solr_h
阅读全文
摘要:方法1: 在Maven中配置 <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-webapp</artifactId> <version>9.4.14.v20181114</version> </dependenc
阅读全文
摘要:1.打开Solr Admin界面 2.在Core Selector中选择要清空的Core 3.点击子菜单中的Documents 4.在Document Type的下拉框选择XML 5.在Document(s)的输入框输入: <delete><query>*:*</query></delete> <c
阅读全文
摘要:查看全部变量 go env 查看指定变量 go env 变量名 例如 go env CC 修改变量 go env -w 变量名=变量值 例如 go env -w CC="arm-linux-gnueabi-gcc"
阅读全文
摘要:GOOS和GOARCH参考 OS ARCH OS version linux 386 / amd64 / arm >= Linux 2.6 darwin 386 / amd64 OS X (Snow Leopard + Lion) freebsd 386 / amd64 >= FreeBSD 7 w
阅读全文
浙公网安备 33010602011771号