码迷,mamicode.com
首页 >  
搜索关键字:google data(gdata)    ( 79648个结果
优化nginx-ingress-controller性能
1.首先优化ingress-controller 通过 Helm 安装 Nginx Ingress 的默认关联配置映射实例名称为 nginx-ingress-controller,用户可以通过修改资源对象 Deployment/DaemonSet 实例 nginx-ingress-controlle ...
分类:其他好文   时间:2021-05-24 01:53:57    阅读次数:0
二叉树的基本操作【C语言】
数据结构二叉树的基本操作设计#include <conio.h> #include <stdio.h> #include <stdlib.h> #include <math.h> #define MAXLEN 100 #define NLAYER 4 typedef struct BiTNode / ...
分类:编程语言   时间:2021-05-24 01:40:53    阅读次数:0
【已解决】无法打开.xlsx文件,xlrd.biffh.XLRDError: Excel xlsx file; not supported
原因是最近xlrd更新到了2.0.1版本,只支持.xls文件。所以x1 = xlrd.open_workbook("data.xlsx")会报错。 可以安装旧版xlrd,在cmd中运行: 建议直接卸载新版本,下载xlrd旧版本 pip uninstall xlrd pip install xlrd= ...
分类:其他好文   时间:2021-05-24 01:37:35    阅读次数:0
could only be replicated to 0 nodes instead of minReplication (=1). There are 1 datanode(s) running and no node(s) are excluded in this operation.
hdfs dfsadmin -report hadoop fsck -locations ...
分类:其他好文   时间:2021-05-24 01:37:15    阅读次数:0
HelloWorld
HelloWorld 随便新建一个文件夹,存放代码 新建一个Java文件 文件后缀名为.java Hello.java 【注意点】系统可能没有显示文件后缀名,需要手动打开 编写代码 public class Hello{ public static void main(String[]args){ ...
分类:其他好文   时间:2021-05-24 01:16:13    阅读次数:0
序列化-Json
常见的Json转换工具有google的gson和阿里的fastgson。目前主流策略:POJO序列化成JSON字符串用Gson库,JSON字符串反序列化为POJO,用fastJson库。 Netty中JSON编码和解码原理 JSON格式仅仅是字符串的一种组织形式。所以,传输JSON的所用到的协议与传 ...
分类:Web程序   时间:2021-05-24 01:16:00    阅读次数:0
centos 安装mqtt
在centos上搭建mqtt服务,主要是用到mosquitto消息代理服务软件: 我的linux版本为centos7 1、安装软件 按照如下命令安装: yum install gcc-c++yum install cmakeyum install openssl-devel新建data文件夹存放软件 ...
分类:其他好文   时间:2021-05-24 00:57:20    阅读次数:0
vue入门
前言 今天看了vue的官方文档,于是总结了一下vue的基础知识,包括自己的一些理解 官网讲的非常详细,vue官方文档:https://cn.vuejs.org/v2/guide/ 基础 渐进式JavaScript框架 开发版带有完整警告,生产版体积更小 视图部分,脚本部分式vue实例 将脚本中dat ...
分类:其他好文   时间:2021-05-24 00:55:23    阅读次数:0
Java 执行命令解析总结
桌面新建一个文本文档(新建文本文档.txt)将文件名修改为 Demo01.java,内容如下: public class Demo01 { public static void main(String[] args) { int a = 10; System.out.println(a); } } ...
分类:编程语言   时间:2021-05-24 00:55:02    阅读次数:0
k8s pod的调度
能够影响Pod调度的资源属性主要有如下5种: NodeSelector (工作节点选择器) NodeAffinity (工作节点级亲和性) PodAffinity (Pod级的亲和性) Taints和Tolerations(污点和容忍) pod的资源限制和要求 NodeSelector(硬性要求) ...
分类:其他好文   时间:2021-05-24 00:45:41    阅读次数:0
79648条   上一页 1 ... 43 44 45 46 47 ... 7965 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!