码迷,mamicode.com
首页 >  
搜索关键字:build    ( 14953个结果
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
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
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
源码安装nginx env
源码安装nginx For ubuntu:18.04 apt -y install build-essential libtool libpcre3 libpcre3-dev zlib1g-dev openssl net-tools curl wget wget -P /tmp http://ngi ...
分类:其他好文   时间:2021-04-12 12:27:54    阅读次数:0
Springboot 常用注解
springboot常用注解 1. @SpringBootApplication 这个注解是 Spring Boot 项目的基石,创建 SpringBoot 项目之后会默认在主类加上。 @SpringBootApplication看作是 @Configuration、@EnableAutoConfi ...
分类:编程语言   时间:2021-04-12 12:19:37    阅读次数:0
Android Studio Gradle提升下载速度
找到build.gradle文件 找到工程项目的build.gradle文件 使用国内的maven库 注释buildscript,allprojects中的jcenter() 添加上maven地址 如下图,5步修改完成: ...
分类:移动开发   时间:2021-04-10 13:22:22    阅读次数:0
14953条   上一页 1 ... 10 11 12 13 14 ... 1496 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!