码迷,mamicode.com
首页 >  
搜索关键字:magent make floorf    ( 11264个结果
linux 下安装redis报错解决
在Linux下安装redis的时候,执行make报 make[1]: *** [adlist.o] 错误,百度后发现是因为 Redis是C实现的,需要gcc进行编译,而我装的centos 7默认是没有安装的,需要自己进行安装。 通过yum进行安装: yum install -y gcc g++ gc ...
分类:系统相关   时间:2020-07-18 00:52:08    阅读次数:73
makefile工作方式
GNU的make工作时的执行步骤如下:(想来其它的make也是类似) 读入所有的Makefile。 读入被include的其它Makefile。 初始化文件中的变量。 推导隐晦规则,并分析所有规则。 为所有的目标文件创建依赖关系链。 根据依赖关系,决定哪些目标要重新生成。 执行生成命令。 1-5步为 ...
分类:其他好文   时间:2020-07-17 14:06:22    阅读次数:54
google protobuf
安装 vs2015 编译 google protobuf 3.5.1 下载: protobuf 3.5.1 cmake 编译 使用 VS2015开发人员命令提示 进入 protobuf 的 cmake 目录: mkdir building && mkdir debug && mkdir releas ...
分类:其他好文   时间:2020-07-17 13:54:58    阅读次数:77
Laravel 中间件的使用
中间件的作用: 过滤进入应用程序的http请求。 比如,有一个活动,在活动开始前进入活动页则跳转到宣传页 使用步骤: 1 创建中间件 \app\Http\Middleware\Activity.php php artisan make:middleware Activity <?php namesp ...
分类:其他好文   时间:2020-07-16 18:34:15    阅读次数:79
centos7安装redis
1.下载,编译 curl -O http://download.redis.io/releases/redis-4.0.9.tar.gz tar -xvf redis-4.0.9.tar.gz cd redis-4.0.9 make 2.启动 cd src 服务端: ./redis-server r ...
分类:其他好文   时间:2020-07-16 12:21:36    阅读次数:66
STL中pair容器的用法
1、定义pair容器 1 pair <int, int> p, p1; 2 //定义 [int,int] 型容器 //直接初始化了p的内容 pair<string,int>p(1,5); 定义一个pair类型数组 pair<int,int> p1[maxn] 2、交换函数 //p和p1都是pair容 ...
分类:其他好文   时间:2020-07-15 22:52:19    阅读次数:52
495. Teemo Attacking
In LOL world, there is a hero called Teemo and his attacking can make his enemy Ashe be in poisoned condition. Now, given the Teemo's attacking ascend ...
分类:其他好文   时间:2020-07-15 15:50:01    阅读次数:61
sqoop 导入从mysql导入数据到hive报类找不到
执行报错如下: 20/07/15 14:02:34 ERROR hive.HiveConfig: Could not load org.apache.hadoop.hive.conf.HiveConf. Make sure HIVE_CONF_DIR is set correctly. 20/07/ ...
分类:数据库   时间:2020-07-15 15:29:36    阅读次数:88
1047. Remove All Adjacent Duplicates In String
Given a string S of lowercase letters, a duplicate removal consists of choosing two adjacent and equal letters, and removing them. We repeatedly make ...
分类:其他好文   时间:2020-07-15 13:09:25    阅读次数:90
Centos8 安装Nginx
1、安装依赖包,使用yum工具安装 yum -y install gcc make zlib-devel pcre pcre-devel openssl-devel 2、安装命令 sudo yum install nginx 3、安装完成后,使用以下命令启用并启动Nginx服务 $ sudo sys ...
分类:其他好文   时间:2020-07-14 16:48:16    阅读次数:164
11264条   上一页 1 ... 27 28 29 30 31 ... 1127 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!