上一页 1 2 3 4 5 6 7 8 9 10 ··· 164 下一页
摘要: http://abcdxyzk.github.io/blog/2013/09/27/kernel-net-tcp-timer/ 在内核中tcp协议栈有6种类型的定时器: 1 2 3 4 5 6 7 1 重传定时器。 2 delayed ack定时器 3 零窗口探测定时器 上面三种定时器都是作为tcp 阅读全文
posted @ 2022-01-12 19:45 张同光 阅读(362) 评论(0) 推荐(0)
摘要: https://github.com/multipath-tcp/mptcp_net-next/issues/191 Kenoko opened this issue on 10 May 2021 · 19 comments Kenoko commented on 10 May 2021I try 阅读全文
posted @ 2022-01-10 23:26 张同光 阅读(210) 评论(0) 推荐(0)
摘要: https://zhuanlan.zhihu.com/p/144273871?utm_source=weibo&utm_medium=social&utm_oi=26757679808512&utm_content=snapshot hystart 混合启动算法 导致了 bufferbloat,从而 阅读全文
posted @ 2022-01-10 22:02 张同光 阅读(490) 评论(0) 推荐(0)
摘要: https://www.virtualbox.org/ticket/11577?cversion=0&cnum_hist=21 These were the steps I followed, in order to solve it: 1) Create a personal public/pri 阅读全文
posted @ 2022-01-08 11:06 张同光 阅读(96) 评论(0) 推荐(0)
摘要: https://wiki.debian.org/SecureBoot#MOK_-_Machine_Owner_Key SecureBoot 目录 What is UEFI? What is UEFI Secure Boot? What is UEFI Secure Boot NOT? Shim MO 阅读全文
posted @ 2022-01-07 23:41 张同光 阅读(167) 评论(0) 推荐(0)
摘要: https://groups.google.com/g/ns-3-users/c/Nnicrk0IEMk HA未读,2015年7月1日 08:10:03收件人 ns-3-...@googlegroups.comHi,I am trying to build ns3-dce using waf. Ho 阅读全文
posted @ 2022-01-05 19:25 张同光 阅读(156) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/cch1234/article/details/116566858 textik textik 是一个在线项目:https://textik.com,可以直接在线绘制 ascii 图 https://blog.csdn.net/weixin_3422083 阅读全文
posted @ 2022-01-05 09:17 张同光 阅读(107) 评论(0) 推荐(0)
摘要: https://mp.weixin.qq.com/s/CD9e0nOkwbT8PdkQ53CgWA 凌敏 InfoQ 2022-01-03 10:15 作者 | 凌敏 2021 年,操作系统站在巨变的前夜。 本文是“2021 InfoQ 年度技术盘点与展望”系列文章之一,由 InfoQ 编辑部制作呈 阅读全文
posted @ 2022-01-03 15:06 张同光 阅读(440) 评论(0) 推荐(0)
摘要: https://is-cloud.blog.csdn.net/article/details/118858113?spm=1001.2101.3001.6661.1&utm_medium=distribute.pc_relevant_t0.none-task-blog-2%7Edefault%7EC 阅读全文
posted @ 2022-01-02 10:13 张同光 阅读(579) 评论(0) 推荐(0)
摘要: Loss-based algorithms Tahoe Reno NewReno SCTP HS-TCP H-TCP Hybla BIC Cubic Westwood Westwood+ TCPW-A LogWestwood+Delay-based algorithms DUAL Vegas Veg 阅读全文
posted @ 2022-01-02 09:13 张同光 阅读(30) 评论(0) 推荐(0)
摘要: https://www.linkedin.com/pulse/20141113153643-13386347-what-is-delayed-ack-and-how-can-it-be-a-bottleneck-in-your-network Gonzalo MurilloAzure Rapid R 阅读全文
posted @ 2022-01-01 23:03 张同光 阅读(77) 评论(0) 推荐(0)
摘要: https://noisy.network/2017/02/06/delayed-ack-and-nagles-algorithm/ mavenetPosted on February 6, 2017Categories BigIP F5, NetworkTags Delayed ACK, Nagl 阅读全文
posted @ 2022-01-01 22:45 张同光 阅读(54) 评论(0) 推荐(0)
摘要: https://alternativeto.net/software/klatexformula LyX Free • Open Source Mac Windows Linux BSD Haiku Word Processor Desktop Publisher Support for LaTeX 阅读全文
posted @ 2021-12-31 21:28 张同光 阅读(109) 评论(0) 推荐(0)
摘要: https://stackoverflow.com/questions/12048116/can-i-monitor-linux-socket-buffer-fullness I work in support for a tech company. I'm trying to troublesho 阅读全文
posted @ 2021-12-28 19:14 张同光 阅读(75) 评论(0) 推荐(0)
摘要: https://access.redhat.com/discussions/3624151 The -m switch of ss gives socket memory info.# ss -ntmpState Recv-Q Send-Q Local Address:Port Peer Addre 阅读全文
posted @ 2021-12-28 18:56 张同光 阅读(161) 评论(0) 推荐(0)
摘要: /*郭睿玥第七次算法实验作业*/ /*实验原理 二叉树的基本组成:根结点、左子树、右子树。若能依次遍历这三部分,就是遍历了二叉树。 遍历二叉树(Traversing Binary Tree):是指按指定的规律对二叉树中的每个结点访问一次且仅访问一次。 若以L、D、R分别表示遍历左子树、遍历根结点和遍 阅读全文
posted @ 2021-12-25 21:21 张同光 阅读(154) 评论(0) 推荐(0)
摘要: /*郭睿玥第五次算法实验作业*/ /*实验原理 串的堆存储结构,与定长顺序串的存储结构类似,都是用一维数组地址连续的存储单元存储串 的字符序列,不同的是堆串的存储空间是在程序执行过程中动态分配的。 在系统中存在一个称为“堆”的自由存储区,每当建立一个新串时,可以通过动态分配函数从 这个空间中分配一块 阅读全文
posted @ 2021-12-25 21:19 张同光 阅读(244) 评论(0) 推荐(0)
摘要: /*郭睿玥第六次算法实验作业*/ /*实验原理 数组的顺序表示和实现 1.存在的主序问题 由于我们的内存是一维的线性结构,而数组是个多维的结构,则用一组连续存储单元存放 数组元素时就有个次序约定问题。因为我们是用C语言实现,所以我们默认都是使用行主序 (BASIC、COBOL、 PASCAL和C语言 阅读全文
posted @ 2021-12-25 21:19 张同光 阅读(217) 评论(0) 推荐(0)
摘要: /*郭睿玥第四次算法实验作业*/ /*实验原理 循环队列是队列的顺序映像的实现,采用顺序存储结构存储队列,会产生假溢出现象,循环队列 是解决假溢出的很好途径。若队列为空时队头指示器与队尾指示器同时指向某一存储单元,即此时两 个指示器的数值相同,若队列非空,队头指示器指向队头元素下标,队尾指示器指向队 阅读全文
posted @ 2021-12-25 21:18 张同光 阅读(212) 评论(0) 推荐(0)
摘要: /*郭睿玥第三次算法实验作业*/ /*实验原理 栈是一种受限的线性表,由于规定了栈的入栈与出栈只能在一端进行,故而产生了后进先出, 先进后出的结果,因而常应用于具有这种特性的问题中进行模拟,广泛使用于程序设计中。 顺序栈是栈的顺序映像的实现,可采用静态顺序存储结构和动态存储结构,在静态顺序存储时 需 阅读全文
posted @ 2021-12-25 21:17 张同光 阅读(173) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 10 ··· 164 下一页