一、环境介绍 官方文档:https://kubernetes.io/zh/docs/setup/production-environment/container-runtimes/#containerd [root@master ~]# kubectl get node -o wide NAME S ...
分类:
其他好文 时间:
2021-07-01 17:27:57
阅读次数:
0
import pymysql,xlwt def export_excel(table_name): host,user,passwd,db='192.168.1.152','root','myjcyf','us_sys' coon=pymysql.connect(host=host,user=use ...
分类:
其他好文 时间:
2021-07-01 17:27:29
阅读次数:
0
程序的一部分如下:System.out.println(labelInADT); System.out.println(intervalSet.labels()); System.out.println(intervalSet.labels().contains(labelInADT)); 其中la ...
分类:
其他好文 时间:
2021-07-01 17:25:01
阅读次数:
0
Asio 包括用于以可移植的方式创建和操作串口的类。 例如,可以使用以下命令打开串口: serial_port port(my_io_context,name); 其中 name 在 Windows 上类似于“COM1”,在 POSIX 平台上类似于“/dev/ttyS0”。 串口一旦打开,就可以作 ...
分类:
其他好文 时间:
2021-07-01 17:24:48
阅读次数:
0
product 表 product_name、spu、create_datetime 想要查找商品名称中包涵短袖的商品一共有多少个 select count(*) from product where product_name like "%短袖%" shop 表 中有shop_name、chann ...
分类:
数据库 时间:
2021-07-01 17:22:17
阅读次数:
0
接口请求中加header有时400报错,请求失败 查看信息应该是header传值有问题,语法格式有误,可能是header中有特殊字符为编码,服务器无法理解此请求。尝试fix,将header全部utf-8编码后再请求。 1 var token = SpUtil.getToken() 2 try { 3 ...
分类:
移动开发 时间:
2021-07-01 17:04:10
阅读次数:
0
setting: from fake_useragent import UserAgent BOT_NAME = 'wxapp' SPIDER_MODULES = ['wxapp.spiders'] NEWSPIDER_MODULE = 'wxapp.spiders' ROBOTSTXT_OBEY ...
分类:
微信 时间:
2021-07-01 17:00:41
阅读次数:
0
直接上sql select column_name as 字段类型, column_type as 数据类型, data_type as 字段类型, character_maximum_length as 长度, is_nullable as 是否为空, column_default as 默认值, ...
分类:
数据库 时间:
2021-07-01 16:50:23
阅读次数:
0
Ubuntu设置用户自动登录 方式一 安装时勾选用户自动登录 方式二 系统设置内设置开启用户自动登录 方式三 vim /etc/lightdm/lightdm.conf autologin-user=username ...
分类:
系统相关 时间:
2021-07-01 16:46:23
阅读次数:
0
https://www.runoob.com/csharp/csharp-variables.html 输出 变量声明以及初始化,代码案例1 using System; #region 1helloword程序//namespace ChuXueZheZhiNan1//{// class Progr ...