码迷,mamicode.com
首页 >  
搜索关键字:types    ( 3306个结果
MySQL基础教程
这个MySQL基础教程解释一些基本的SQL语句。 如果这是您第一次使用关系数据库管理系统,本教程将为您提供使用MySQL数据库服务器所需的一切内容,例如查询数据,更新数据,管理数据库和创建表。 如果您已经熟悉其他关系数据库管理系统(如PostgreSQL,Oracle或Microsoft SQL S ...
分类:数据库   时间:2020-03-10 01:22:31    阅读次数:82
Kubenete study notes (Service)
Service:Waystocreateservice:KubectlexposecreatedaServiceresourcewiththesamepodselectorastheoneusedbytheReplicationControllerKubectlcreatewithservicespecsapiVersion:v1kind:Servicemetadata:name:kubiaspe
分类:Web程序   时间:2020-03-08 23:27:38    阅读次数:119
爬虫初识
爬虫 什么是爬虫? 通过编写代码,模拟浏览器发送请求,让其去网络上抓去数据的过程。 爬虫分类? 通用爬虫 抓取整张网页的全部内容 聚焦爬虫 抓去一张页面的部分内容 通用爬虫和聚焦爬虫的关联: 聚焦是建立在通用爬虫的基础上 增量式 监测网站数据的更新情况,以便将最新的数据进行爬取。 reqeusts基 ...
分类:其他好文   时间:2020-03-08 21:39:48    阅读次数:55
关于 C++ 中的 `abs` 相关函数
关于 C++ 中的 相关函数 Lang:C Lang:C++ ~~下次再不写 也不写 我就。。~~ ...
分类:编程语言   时间:2020-03-08 21:33:56    阅读次数:82
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
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
3306条   上一页 1 ... 26 27 28 29 30 ... 331 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!