码迷,mamicode.com
首页 >  
搜索关键字:nginx main    ( 89968个结果
设计模式-模板方法模式一
需求 现在有一个模具 可以生成不同品牌的汽车 代码如下 public class TemplatePattren { public static void main(String[] args) { Model bwm = new BWM(); bwm.run(); Model audi = new ...
分类:其他好文   时间:2021-06-13 10:03:47    阅读次数:0
二维 ST 表
#include <cmath> #include <queue> #include <vector> #include <cstdio> #include <cstring> #include <iostream> #include <algorithm> #define ZYC using #d ...
分类:其他好文   时间:2021-06-13 09:59:25    阅读次数:0
Nginx nginx-rtmp-module 直播推流 配置
nginx.conf配置 #user nobody; user www www; worker_processes 8; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log in ...
分类:其他好文   时间:2021-06-13 09:55:40    阅读次数:0
返回数组指针的函数
#include <iostream> using namespace std; double* aaa() { double tmp[3] = { 1.01,2.02,3.03 }; double* tmp1 = new double[3]; for (size_t i = 0; i < 3; i ...
分类:编程语言   时间:2021-06-13 09:52:53    阅读次数:0
echarts配合vetrul dom $refs使用,需要用$nextTick获取异步dom
1、安装echarts依赖 npm install echarts -S 2、main.js中配置 : // 引入echarts import echarts from 'echarts' Vue.prototype.$echarts = echarts 3、在页面中//,引入基本模板 let ec ...
分类:其他好文   时间:2021-06-13 09:49:43    阅读次数:0
Centos7安装redis
1、去官网https://redis.io/下载对应的nginx包,推荐使用稳定版,上传到centos系统 /home/software/ 解压 tar -zxvf redis-5.0.5.tar.gz 或 使用linux wget命令:wget http://download.redis.io/r ...
分类:其他好文   时间:2021-06-13 09:30:04    阅读次数:0
linux安装nginx(CentOS6)
nginx下载地址 http://nginx.org/en/download.html Window启动命令: java -jar D:\jeecg-boot-module-system-2.0.0.jar Linux下后台进程启动命令: nohup java -jar jeecg-boot-mod ...
分类:系统相关   时间:2021-06-13 09:26:41    阅读次数:0
六、Scanner键盘输入
java.util.Scanner是Java5的新特征,主要功能是简化文本扫描。这个类最实用的地方表现在获取控制台输入,其他的功能都很鸡肋。 通常我们学习java用来坐下案例挺好的。 6.1、API函数 下面这几个相对实用: delimiter() 返回此 Scanner 当前正在用于匹配分隔符的 ...
分类:其他好文   时间:2021-06-13 09:25:27    阅读次数:0
实验六
from turtle import * def square(size = 50, rgb = 'orange'): pencolor(rgb) for i in range(4): fd(size) left(90) def main(): setup(800, 600) speed(0) fo ...
分类:其他好文   时间:2021-06-13 09:19:11    阅读次数:0
安装nginx出错the HTTP rewrite module requires the PCRE library
问题描述 报错信息如下所示: ./configure: error: the HTTP rewrite module requires the PCRE library. You can either disable the module by using --without-http_rewrit ...
分类:Web程序   时间:2021-06-11 19:17:07    阅读次数:0
89968条   上一页 1 ... 19 20 21 22 23 ... 8997 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!