bingmous

欢迎交流,不吝赐教~

导航

1 2 3 4 5 ··· 16 下一页

2024年10月26日 #

cmake

摘要: 目录参考概述使用 参考 win10 cmake下载:https://cmake.org/download/ ,make命令在mingw里,安装mingw即可,一般IDE会自带cmake和mingw,vscode需要安装插件 文档:https://cmake.org/cmake/help/latest 阅读全文

posted @ 2024-10-26 10:53 Bingmous 阅读(5) 评论(0) 推荐(0) 编辑

2024年10月25日 #

libtorch win10上使用

摘要: 目录说明 说明 libtorch使用MSVC编译,需要本机安装,并在IDE中使用MSVC工具链。 下载官方libtorch包,或者本机安装了python环境,并且安装了pytorch。(pytorch核心是c++编写的,pytorch包含了libtorch的所有内容) 编译最好使用与libtorch 阅读全文

posted @ 2024-10-25 22:55 Bingmous 阅读(9) 评论(0) 推荐(0) 编辑

2024年10月19日 #

c++单元测试框架googleTest

摘要: 目录编译使用 编译使用 官方文档中建议在工程中包含源码,避免各种库的不兼容问题,如LNK2038。 将源码下载后直接放入工程目录的lib目录下,并在CMakeLists.txt中配置: # 添加 Google Test 子目录 add_subdirectory(${PROJECT_SOURCE_DI 阅读全文

posted @ 2024-10-19 15:27 Bingmous 阅读(6) 评论(0) 推荐(0) 编辑

2024年10月15日 #

nfs

摘要: 目录 服务器端启动nfs systemctl start nfs 修改/etc/exports 修改后执行 exportfs -rv生效 /xxx *(rw,no_root_squash,sync) 客户端执行: mount -t nfs -o nolock 10.x.x.x:/xxx /xxx 卸 阅读全文

posted @ 2024-10-15 13:41 Bingmous 阅读(4) 评论(0) 推荐(0) 编辑

2024年9月4日 #

Visual Studio安装

摘要: 目录离线安装 离线安装 下载bootstrapper https://learn.microsoft.com/en-us/visualstudio/install/create-a-network-installation-of-visual-studio?view=vs-2022#download 阅读全文

posted @ 2024-09-04 22:51 Bingmous 阅读(9) 评论(0) 推荐(0) 编辑

2024年7月29日 #

Python内置模块常用总结

摘要: 目录unittest unittest 点击查看代码 import unittest from htmltestreport import HTMLTestReport class TestOne(unittest.TestCase): @classmethod def setUpClass(cls 阅读全文

posted @ 2024-07-29 10:27 Bingmous 阅读(9) 评论(0) 推荐(0) 编辑

2024年5月27日 #

Elasticsearch Guide 7.17

摘要: 目录介绍扩展性与可恢复性clientSet up ElasticsearchInstalling ESConfiguring ESImportant system configurationBootstrap ChecksBootstrap Checks for X-PackStarting Ela 阅读全文

posted @ 2024-05-27 15:03 Bingmous 阅读(74) 评论(0) 推荐(0) 编辑

2024年5月7日 #

java命令行参数解析库

摘要: 目录 http://jopt-simple.github.io/jopt-simple/index.html es/jdk都使用了这个轻量级库 阅读全文

posted @ 2024-05-07 10:38 Bingmous 阅读(40) 评论(0) 推荐(0) 编辑

2024年4月23日 #

Groovy in Gradle

摘要: 目录基础闭包闭包委托可以直接使用的对象其他groovy api 使用Gradle需要了解的Groovy语法: 基础 语句末尾不需要写分号 支持使用def定义动态数据类型变量 没有基本类型,全部使用包装类型 方法变化 使用def定义方法,可以不指定返回类型、参数类型,直接返回最后一行 方法调用可以不写 阅读全文

posted @ 2024-04-23 10:00 Bingmous 阅读(5) 评论(0) 推荐(0) 编辑

2024年4月22日 #

Groovy Document 4.0.14

摘要: 目录下载安装与Java的区别默认的imports多方法 或者叫运行时分发数组初始化包可见性自动资源管理内部类lambda表达式和方法引用操作符GStringsString和字符字面量==的行为原生类型与包装类型使用@CompileStatic原生数据类型优化正负零的边界情况约定其他的关键字 官方文档 阅读全文

posted @ 2024-04-22 21:13 Bingmous 阅读(34) 评论(0) 推荐(0) 编辑

1 2 3 4 5 ··· 16 下一页