相关文章
2023/10/4 QT实现TCP服务器客户端搭建
服务器端:
头文件
#ifndef WIDGET_H
#define WIDGET_H#include <QWidget>
#include <QTcpServer>
#include <QTcpSocket>
#include <QList>
#include <QMessageBox>
#include <QDebug>QT_BEGIN_NAMESPACE
namespace Ui { cla…
建站知识
2024/12/23 16:18:50
通过containerd部署k8s集群环境及初始化时部分报错解决
目录
一.基础环境配置(每个节点都做)
1.hosts解析
2.防火墙和selinux
3.安装基本软件并配置时间同步
4.禁用swap分区
5.更改内核参数
6.配置ipvs
7.k8s下载
(1)配置镜像下载相关软件
(2)配置kube…
建站知识
2024/12/23 16:15:33
STL-stack、queue和priority_queue的模拟实现
目录
一、容器适配器
(一)什么是适配器
(二)stack和queue的底层结构
二、Stack
三、queue
四、deque双端队列
(一)优点
(二)缺陷
五、优先级队列
(一ÿ…
建站知识
2024/12/23 7:23:49
git 同时配置 gitee github
git 同时配置 gitee github
1、 删除C:\Users\dell\.ssh目录。 在任意目录右击——》Git Bash Here,打开Git Bash窗口,下方命令在Git Bash窗口输入。
2、添加git全局范围的用户名和邮箱
git config --global user.email "609612189qq.com"
…
建站知识
2024/12/3 3:22:19
解决dockerfile创建镜像时pip install报错的bug
项目场景:
使用docker-compose创建django容器 问题描述 > [5/5] RUN /bin/bash -c source ~/.bashrc && python3 -m pip install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple:
0.954 Looking in indexes: https://…
建站知识
2024/12/21 9:29:20
聊聊httpclient的CPool
序
本文主要研究一下httpclient的CPool
ConnPool
org/apache/http/pool/ConnPool.java
public interface ConnPool<T, E> {/*** Attempts to lease a connection for the given route and with the given* state from the pool.** param route route of the connecti…
建站知识
2024/11/30 1:50:08
blender光照系统设置
0)Viewport Shading设置里面的Lighting下面的参数:
Scene Lights,Scene World - Scene Lights是指在渲染模式下是否使用场景中的灯光对象来照亮物体。 - Scene World是指在渲染模式下是否使用场景中的世界设置来作为背景和环境光。如果关闭该选项&#…
建站知识
2024/10/15 10:42:28
Septentrio接收机二进制的BDS b2b改正数解码
Galileo的HAS和BDS B2b改正数为实时PPP提供了可能,要实现实时PPP解算,必须对对应的数据进行解码。由于没有做过解码的工作,现结合qzsl6tool代码对Septentrio的解码代码进行学习。
1. 二进制枕头的识别和解码
定义一个读取数据的类ÿ…
建站知识
2024/12/6 8:46:03