码迷,mamicode.com
首页 >  
搜索关键字:magent make floorf    ( 11264个结果
致敬那些年对nginx踩过的坑
致敬那些年对nginx踩过的坑 首先准备环境的安装,安装一个软件之前,我们需要了解他的前世今生,看看他是用那种语言编写的,举个栗子,如果是用python编写的你是不是需要考虑一下安装一下python的依赖呢,不过nginx不是用python编写的,而是用C语言编写的,哈哈哈不扯淡了 一. GCC—— ...
分类:其他好文   时间:2020-07-09 17:51:06    阅读次数:71
random模块详解
random模块的使用 random是Python内置模块, 想要使用该模块, 第一步需要进行导入, 下面介绍几种random常用的函数 import random print(random.random()) # 大于0且小于1之间的小数 print(random.randint(1, 3)) # ...
分类:其他好文   时间:2020-07-09 15:15:34    阅读次数:66
zabbix 安装(离线源码安装)
1、LAMP 环境搭建 1.1 、安装 apache 安装 pcre tar -zxvf pcre-8.41.tar.gz cd pcre-8.41 ./configure --prefix=/home/pcre make make install 安装 apr tar -zxvf apr-1.6. ...
分类:其他好文   时间:2020-07-08 21:26:11    阅读次数:65
CodeForces - 687C The Values You Can Make (多背包解法)
题目链接:https://codeforces.com/problemset/problem/687/C 题目大意:给你n个数,然后让这些数相加组合,然后在这些组合的数里可以再相加组合搞出给定 k,输出这些组合的数。 Examples Input 6 185 6 1 10 12 2 Output 1 ...
分类:其他好文   时间:2020-07-08 01:41:40    阅读次数:87
jenkins编译代码git脚本报错
+ sh make_release.sh fatal: could not read Username for 'http://gitlab.yintech.net': No such device or address vim .git/config [core] repositoryformat ...
分类:其他好文   时间:2020-07-07 20:17:20    阅读次数:64
Cannot find current proxy: Set 'exposeProxy' property on Advised to 'true' to make it available.
出现这个报错通常是因为使用了AopContext.currentProxy()函数却没有添加相应的配置造成的。 通过注解添加配置(加在类上): @EnableAspectJAutoProxy(proxyTargetClass = true, exposeProxy = true) 或通过xml配置文 ...
分类:其他好文   时间:2020-07-07 10:21:40    阅读次数:203
wget和yum下载慢,更换阿里镜像源
1.安装wget yum install -y wget 2.完事前都做备份 mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup 3.下载阿里云镜像文件 wget -O /etc/yum.repo ...
分类:其他好文   时间:2020-07-06 16:17:29    阅读次数:228
linux(debian)安装USB无线网卡(tp-link TL-WN725N rtl8188eu )
linux(debian)安装USB无线网卡(tp-link TL-WN725N rtl8188eu ) 3.下载git上的驱动,下载完.zip文件后,进行如下步骤:$ unzip rtl8188eu-master.zip $ cd rtl8188eu-master $ sudo make $ su ...
分类:系统相关   时间:2020-07-06 16:02:08    阅读次数:116
安装phptars扩展
git clone https://github.com/TarsPHP/tars-extension.gitcd /opt/tars/TarsPHP/tars-extensionphpize./configure makemake install extension=phptars.so ...
分类:Web程序   时间:2020-07-06 13:13:07    阅读次数:80
GO-Map
输出结果 package main import "fmt" func main() { type Map map[string][]int m := make(Map) // 值为切片类型的map s := []int{1, 2} // 初始化切片s s = append(s, 3) // 切片s ...
分类:其他好文   时间:2020-07-05 21:27:27    阅读次数:58
11264条   上一页 1 ... 30 31 32 33 34 ... 1127 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!