码迷,mamicode.com
首页 >  
搜索关键字:build task    ( 22119个结果
leetcode 5736 周赛 单线程cpu 优先队列和排序
通过这个题熟悉了下iota的用法,vector自定义排序(根据另一个数组来排当前的数组) 优先队列对pair数据的处理方式,很好的一道题 1 class Solution { 2 public: 3 using PII = pair<int,int>;//type def 4 5 vector<in ...
分类:编程语言   时间:2021-04-20 15:19:37    阅读次数:0
go相关
mac 上build go 如果想要在centos上面执行 必须使用下面的方式 CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a -o hello hello.go 不然会报错 :cannot execute binary file ...
分类:其他好文   时间:2021-04-19 14:58:20    阅读次数:0
Cython的坑(未解决)
使用pycharm出现了错误: Compile Cython Extensions Error 点击install无效,各种方法都无效,网上说需要Microsoft Visual C++ Build Tools,使用Microsoft Visual C++ Build Tools修复仍然无效; 找到 ...
分类:其他好文   时间:2021-04-15 12:01:48    阅读次数:0
Jenkins 实现Gitlab事件自动触发Jenkins构建及钉钉消息推送
实现Gitlab事件自动触发Jenkins构建及钉钉消息推送 实践环境 GitLab Community Edition 12.6.4 Jenkins 2.284 Post build task 1.9(Jenkins插件) Generic Webhook Trigger Plugin 1.72(J ...
分类:其他好文   时间:2021-04-14 12:21:46    阅读次数:0
Python 启动 FastAPI 报错 Error: [WinError 10013] 以一种访问权限不允许的方式做了一个访问套接字的尝试
启动FastAPI后端项目,发现报错:Error: [WinError 10013] 以一种访问权限不允许的方式做了一个访问套接字的尝试 百度改问题时,发现Dajango项目也会出现同样的错误,简而言之,出现这个问题就是启动后端的端口被占用了 打开cmd,输入下面代码,查看是什么应用占了端口 C:\ ...
分类:编程语言   时间:2021-04-14 12:13:02    阅读次数:0
gyp ERR! stack Error : can't find python executable "python",you can set the PYTHON env variable.
vue中安装node-sassnpm install node-sass --save-dev1出现上面图中问题 解决办法:vscode里,打开终端,输入下面的内容先输入(在管理员模式下打开) npm install --global --production windows-build-tools ...
分类:编程语言   时间:2021-04-14 11:49:56    阅读次数:0
多线程技术优化:Callable,FutureTask,Task.get()
Map<String,BaseResultMessage> brmMap = new HashMap<>(); long beginTimeSum = System.currentTimeMillis(); for(StkInventoryWlTypeEnum emum:StkInventoryWl ...
分类:编程语言   时间:2021-04-13 12:56:07    阅读次数:0
idea指定Maven项目的资源文件夹
第一种方法:在pom.xml文件中增加如下标签 1 <build> 2 <resources> 3 <resource> 4 <directory>src/main/resource</directory> 5 <includes> 6 <include>**/*.xml</include> 7 < ...
分类:其他好文   时间:2021-04-13 11:47:23    阅读次数:0
Mybatis中的CRUD操作
Mybatis的CRUD操作 我们在创建第一个项目自后,来进行数据库的操作; Mybatis在JDBC的基础上,对sql语句的执行进行了简化。 1.准备工作 1.1.创建我们的第二个项目,项目结构如下: 1.2.在pom.xml文件中引入资源文件导出的配置文件 <build> <resources> ...
分类:其他好文   时间:2021-04-13 11:46:49    阅读次数:0
数据去重
String removeDuplicateLetters(String s) { Stack<Character> stk = new Stack<>(); // 维护一个计数器记录字符串中字符的数量 // 因为输入为 ASCII 字符,大小 256 够用了 int[] count = new i ...
分类:其他好文   时间:2021-04-13 11:42:41    阅读次数:0
22119条   上一页 1 ... 15 16 17 18 19 ... 2212 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!