码迷,mamicode.com
首页 >  
搜索关键字:global build    ( 22928个结果
线程通信-全局变量-标准库threading
from threading import Thread from time import sleep a = 1 def foo(): global a a = 1000 def bar(): sleep(1) print("a = ",a) t1 = Thread(target = foo) t ...
分类:编程语言   时间:2021-01-13 10:50:50    阅读次数:0
ubuntu18 build opencv4 from source
1 安装依赖 ## Install dependencies sudo apt -y install build-essential checkinstall cmake pkg-config yasm sudo apt -y install git gfortran sudo apt -y ins ...
分类:系统相关   时间:2021-01-13 10:46:58    阅读次数:0
Maven配置资源过滤
<build> <resources> <resource> <directory>src/main/java</directory> <includes> <include>**/*.properties</include> <include>**/*.xml</include> </includ ...
分类:其他好文   时间:2021-01-12 11:11:17    阅读次数:0
1004.idea打jar包
1.创建包和类 package com.example.HelloWorld; public class HelloWorld 2.运行方法 3.打jar包 File | Project Settings | Artifacts 选择主类 OK | OK 4.build artifacts buil ...
分类:编程语言   时间:2021-01-12 11:07:35    阅读次数:0
ToString("X2 ")——c#
对ToString("X2 ")的理解 /// <summary> /// 将byte型转换为字符串 /// </summary> /// <param name="arrInput">byte型数组</param> /// <returns>目标字符串</returns> private stri ...
分类:Windows程序   时间:2021-01-12 10:45:47    阅读次数:0
qt creator设置默认输出目录
note creator version : 4.13.1 敲黑板,一定要先配置好 Qt creator的default build directory , 再创建项目,最后再编译 敲黑板,一定要先配置好 Qt creator的default build directory , 再创建项目,最后再编 ...
分类:其他好文   时间:2021-01-11 11:24:06    阅读次数:0
Docker常用操作
一、镜像操作 1)构建镜像 docker build -t REPOSITORY:TAG . 注意最后一个点[.]不能缺少,生成完:runoob/centos为REPOSITORY,6.7为TAG 2)获取镜像 sudo docker pull REPOSITORY[:TAG] 3)为镜像打个标签  ...
分类:其他好文   时间:2021-01-11 11:04:35    阅读次数:0
1001.idea打jar包
1.创建包和类 package com.example.HelloWorld; public class HelloWorld 2.运行方法 3.打jar包 File | Project Settings | Artifacts 选择主类 OK | OK 4.build artifacts buil ...
分类:编程语言   时间:2021-01-11 10:51:18    阅读次数:0
解决问题:mysql 1040 too many connections
1.mysql -u root -p 回车输入密码进入mysql 2. 执行show variables like "max_connections"; 3.执行set GLOBAL max_connections=1000; 4.执行show variables like "max_connect ...
分类:数据库   时间:2021-01-08 11:38:08    阅读次数:0
asp.net core-部署
libman介绍 nuget是包管理器(.net),libman是库管理器(css/js) 使用方法,在项目适当位置(一般是wwwroot)里面添加客户端库 如图,可以看到有4种方式添加,其中用的最多的是unpkg,也就是npm。 然后会在项目中生成一个libman.json的配置文件,保存了添加的 ...
分类:Web程序   时间:2021-01-08 11:25:27    阅读次数:0
22928条   上一页 1 ... 33 34 35 36 37 ... 2293 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!