K8S CoreDNS部署失败,发现的一个问题

  • Post author:
  • Post category:其他

K8S CoreDNS部署失败,查看错误日志,提示如下 root >> kubectl get all --all-namespaces -o wide root >> kubectl logs -f coredns-56f56989d6-krs6h -n kube-system 错误提示,如下: Failed to list *v1.Namespace: Get http…

继续阅读 K8S CoreDNS部署失败,发现的一个问题

CentOS7 安装Nginx

  • Post author:
  • Post category:其他

引言:大家好,我是热爱coding,崇尚开源,乐于分享的【皮卡丘的猫】   Step1:去官网http://nginx.org/下载对应的nginx包,推荐使用稳定版本,我本次安装的是nginx-1.16.1.tar.gz 版本 Step2:上传nginx Step3:安装相关依赖 yum install gcc-c++ yum install -y pcre pcre-devel yum ins…

继续阅读 CentOS7 安装Nginx

yum 安装软件是出现 except OSError, e: ^ SyntaxError: invalid syntax

  • Post author:
  • Post category:其他

错误原因:        系统中装有多个版本的Python,Python脚本运行的时候版本冲突。      解决办法:(以下两步都要执行)     1.  vim /usr/libexec/urlgrabber-ext-down         将/usr/bin/python改为/usr/bin/python2.7。     2. vim /usr/bin/yum-config-manager …

继续阅读 yum 安装软件是出现 except OSError, e: ^ SyntaxError: invalid syntax

【在 Colab 中使用 TensorBoard 绘图】

  • Post author:
  • Post category:其他

【在 Colab 中使用 TensorBoard 绘图】 进入 Google Drive进入 Colab 在深度学习中,使用本机GPU跑可能会比较慢,这里使用 Google Drive + Colab 进行训练,运行代码 进入 Google Drive 进入网盘 初次进入需要注册账号。注意科学上网即可。右键网盘空白处,选择 更多 -> 关联更多应用,选择 Google Colaborator…

继续阅读 【在 Colab 中使用 TensorBoard 绘图】

离散数学期末复习(谓词逻辑、集合、关系、函数、图、欧拉图与哈密顿图)

  • Post author:
  • Post category:其他

文章目录 前言谓词逻辑命题符号化析取、合取范式前束范式1、使用换名规则:2、分配律3、蕴含等值式(p->q)例题1例题2 构造推理证明9条推理定律全称量词与存在量词 的 添加与消去举例: 例题1例题2 集合对称差广义并、广义交包含排斥原理(容斥原理)例题1例题2 关系关系运算复合运算(左复合、右复合)运算技巧 三种性质闭包等价关系例题1商集 偏序关系例题1哈斯图例题1 最小元、极小元例题1 …

继续阅读 离散数学期末复习(谓词逻辑、集合、关系、函数、图、欧拉图与哈密顿图)

matlab绘制奈奎图,matlab画奈奎斯特图

  • Post author:
  • Post category:其他

基于matlab 的时域奈奎斯特定理验证课题名称 利用 matlab 检验采样定理 学院 计通学院 专业班级 通信 1402 2016 年 6 月 设计目的 (1) 掌握 matlab 的一些应用...... 奈奎斯特图和波特图解释_物理_自然科学_专业资料。奈奎斯特图和波特图解释 log scale MATLAB () fL fH AuSM(0dB) AuSM ( 20lgAuSMdB) (18…

继续阅读 matlab绘制奈奎图,matlab画奈奎斯特图

CentOS 7无法启动,在进度条卡死问题解决

  • Post author:
  • Post category:其他

问题现象: centos7开机启动时在进度条卡死 解决: 一、按F5查看详细信息,查看问题出现位置,初步确定问题所在。 二、进入单用户模式 首先我们进入开机界面,按e进行选择 会进入以下界面, 然后找到图中红线标注的该行,在行尾添加 init=/bin/sh 按住Ctrl+x执行 可以进入单用户模式 提示: entering emergency mode .exit the shell to co…

继续阅读 CentOS 7无法启动,在进度条卡死问题解决

gcc编译报错-stary ‘\357’ in program

  • Post author:
  • Post category:其他

写在前面: 这一次的bug是我在做LeetCode的时候遇到的。想想如果真正做题环境还是没办法上网Google的,所以,还是记录一下,也算是小问题了。但积跬步至千里嘛。 错误提示: LeetCode在线编译的情况,提示错误: Line10: stray '\357' in program 解决方法: 参考博客:gcc编译报错:程序中有游离的’\357’ ‘\273’ ‘\277’等。程序中使用了中…

继续阅读 gcc编译报错-stary ‘\357’ in program

C语言之跨文件使用函数和变量

  • Post author:
  • Post category:其他

跨文件使用函数和变量 这是主函数的代码: #include <stdio.h> #include <stdlib.h> /* run this program using the console pauser or add your own getch, system("pause") or input loop */ extern int g_a;//对外部全局变量作说明…

继续阅读 C语言之跨文件使用函数和变量

最近使用git跟gerrit及在idea中的坑

  • Post author:
  • Post category:其他

1.  [remote rejected] master -> master (prohibited by Gerrit: ref update access denied) 或者[remote rejected] master -> master (prohibited by Gerrit: create access denied for refs/heads/master) 解决…

继续阅读 最近使用git跟gerrit及在idea中的坑