码迷,mamicode.com
首页 >  
搜索关键字:nested types    ( 4319个结果
nginx的纯代理转发简单配置
worker_processes 1; events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; sendfile on; keepalive_timeo ...
分类:其他好文   时间:2020-03-06 23:30:21    阅读次数:79
printf()刷新缓冲区
看到一个关于fork()的题目(来源于:https://mp.weixin.qq.com/s/MsGeaWNmSVOCT7kXFrQm_g),如下: #include <stdio.h> #include <sys/types.h> #include <unistd.h> int main(void ...
分类:其他好文   时间:2020-03-06 19:14:28    阅读次数:153
JAVA 中的反射(reflact)
获取反射加载类(获取类的字节码)的3种方式: Class class1=Class.forName("lession_svc.lession_svc.reflact.Person"); Class class2 =new Person().getClass(); Class class3=Perso ...
分类:编程语言   时间:2020-03-05 16:42:56    阅读次数:75
清除redis缓存,解决异常
异常信息: org.springframework.data.redis.serializer.SerializationException: Cannot deserialize; nested exception is org.springframework.core.serializer.su ...
分类:其他好文   时间:2020-03-04 12:30:33    阅读次数:62
20200303面试记录
1、vue虚拟dom和react的虚拟dom有什么区别? 2、typescript里的type和interface的区别? 3、react的工作原理? 4、spring,springMVC、springBoot的应用场景 5、ts和js有什么好处? ...
分类:其他好文   时间:2020-03-03 20:44:42    阅读次数:52
函数指针的用法。
#include<stdlib.h>#include<stdio.h>#include<unistd.h>#include<sys/types.h>typedefint(*funtcb)(void);intfuncta(void){printf("%s%d\n",func,LINE);return0;}intadd(inta,in
分类:其他好文   时间:2020-03-03 17:49:52    阅读次数:79
Kubernetes系列之Kubernetes部署metrics-server
四、Kubernetes系列之Kubernetes部署metrics-server#一、metrics-server简介自kubernetes1.8开始,资源使用指标(如容器CPU和内存使用率)通过MetricsAPI在Kubernetes中获取,metrics-server替代了heapster。MetricsServer实现了ResourceMetricsAPI,MetricsServer是集
分类:Web程序   时间:2020-03-02 22:28:08    阅读次数:586
报错"Could not get a resource from the pool; nested exception is io.lettuce.core
1、登录过程中报以下错误 2、分析 提示redis连接异常,意味着后台redis服务没起 3、解决 首先ps -ef |grep redis 发现redis果然没起 启动redis: 首先进入redis目录下: cd /usr/local/redis-5.0.5/ 启动redis ok了 ...
分类:其他好文   时间:2020-03-02 20:38:32    阅读次数:167
Flask框架(五)之SQLAlchemy
SQLAlchemy 一、介绍 SQLAlchemy是一个基于Python实现的ORM框架。该框架建立在 DB API之上,使用关系对象映射进行数据库操作,简言之便是:将类和对象转换成SQL,然后使用数据API执行SQL并获取执行结果。 组成部分: SQLAlchemy本身无法操作数据库,其必须以来 ...
分类:数据库   时间:2020-03-01 18:21:16    阅读次数:82
文件目录相关函数
//-rw-rw-r-- 2 zijiao zijiao 16 Feb 24 13:20 hello #include <stdio.h> #include <unistd.h> #include <sys/types.h> #include <sys/stat.h> #include <fcntl ...
分类:其他好文   时间:2020-02-29 17:33:44    阅读次数:71
4319条   上一页 1 ... 35 36 37 38 39 ... 432 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!