码迷,mamicode.com
首页 >  
搜索关键字:magent make floorf    ( 11264个结果
Eureka工作原理及心跳机制
Eureka原理 1.基本原理上图是来自eureka的官方架构图,这是基于集群配置的eureka;处于不同节点的eureka通过Replicate进行数据同步Application Service为服务提供者Application Client为服务消费者Make Remote Call完成一次服务 ...
分类:其他好文   时间:2020-07-27 15:51:57    阅读次数:180
[2020杭电多校第二场]1005 New Equipments(费用流)
首先,明显的网络流。那么如何建边,对于每个二次函数在[1,m]里挑n个函数值最小的点, 这样子一共n^2个点,注意还要去重。这n^2个点其实就能使得n个二次函数(a, b, c)完全匹配。 那么流量全部设为1,费用是对应的函数值。超级源点和终点费用为0;但是,跑n次费用流时间不允许,但是你仔细想每次 ...
分类:其他好文   时间:2020-07-27 15:49:36    阅读次数:71
跳石头
跳石头 简单的二分答案,贪心地判断解 #include<bits/stdc++.h> #define fi first #define se second #define pb push_back #define mp make_pair #define SZ(x) ((int)x.size()) ...
分类:其他好文   时间:2020-07-26 23:05:34    阅读次数:73
结构体内的一些操作
结构体内的一些操作 重载 #include <bits/stdc++.h> using namespace std; struct test { int a, b; friend bool operator < (const test &x, const test &y) { return x.a ...
分类:其他好文   时间:2020-07-26 23:02:39    阅读次数:72
Ubuntu 20.04 Install Guest Additions for VirtualBox
Ubuntu 20.04 Install Guest Additions for VirtualBox时有报错: This system is currently not set up to build kernel modules.Please install the gcc make perl ...
分类:系统相关   时间:2020-07-26 23:00:43    阅读次数:94
如何写 makefile
对于源文件较多的 c/c++项目,直接在 shell 中使用 gcc/clang 进行编译会十分麻烦,makefile 可以解决这一问题。Makefile 记录了项目的编译规则,当使用 make 命令进行项目的编译时,make 命令会使用 makefile 中记录的规则,一步步地编译、链接,生成目标 ...
分类:其他好文   时间:2020-07-26 15:40:29    阅读次数:62
迅为 iTOP-4412 精英版开发板 mosquitto(MQTT协议) 移植及使用测试
需要在 Linux 系统下先交叉编译好 mosquitto 再移植到开发板中,至于最后 PC 端使用 Linux 还是 Windows 都可以。 注意事先要配置好交叉编译环境 一、下载依赖包 编译 mosquitto 需要依赖 libuuid 和 openssl。因此需要下载下面三个文件,注意最好版 ...
分类:其他好文   时间:2020-07-26 01:22:19    阅读次数:75
前端项目部署到服务器
1.安装编译工具及库文件 # yum -y install make zlib zlib-devel gcc-c++ libtool openssl openssl-devel pcre-devel gcc、gcc-c++ # 主要用来进行编译相关使用 openssl、openssl-devel # ...
分类:其他好文   时间:2020-07-25 23:57:46    阅读次数:292
ubuntu 安装 fftw
http://www.fftw.org/download.html wget http://www.fftw.org/fftw-3.3.8.tar.gz tar fftw-3.3.8.tar.gz cd ./fftw-3.3.8 ./configure make sudo make install ...
分类:系统相关   时间:2020-07-25 11:31:34    阅读次数:191
CentOS7安装MongoDB(3)
软件下载地址:https://www.mongodb.com/try/download/community 提供了二进制执行版,不需要make安装,将解压好的内容,直接移动到软件安装目录即可。 在软件安装目录(/usr/local/src)下创建一个名为mongodb的软连接 ln -s mongo ...
分类:数据库   时间:2020-07-24 21:21:37    阅读次数:88
11264条   上一页 1 ... 24 25 26 27 28 ... 1127 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!