首页
学习
活动
专区
工具
TVP
发布

云计算与大数据

专栏作者
275
文章
349752
阅读量
23
订阅数
kernel|network| Linux Networking Stack: Sending Data
This blog post explains how computers running the Linux kernel send packets, as well as how to monitor and tune each component of the networking stack as packets flow from user programs to network hardware.
heidsoft
2022-04-18
1.8K0
CSDM|What is a common service data model ?
The Common Service Data Model (CSDM) is a standardized set of terms and their definitions that can be used with all ServiceNow products.
heidsoft
2022-04-18
2.1K0
bpf | eXpress Data Path| XDP
XDP or eXpress Data Path provides a high performance, programmable network data path in the Linux kernel as part of the IO Visor Project. XDP provides bare metal packet processing at the lowest point in the software stack which makes it ideal for speed without compromising programmability. Furthermore, new functions can be implemented dynamically with the integrated fast path without kernel modification. Other key benefits of XDP includes the following:
heidsoft
2022-04-18
6410
cni | host-local IP 地址管理插件
host-local IPAM allocates IPv4 and IPv6 addresses out of a specified address range. Optionally, it can include a DNS configuration from a resolv.conf file on the host.
heidsoft
2022-04-18
1K0
编译器|LLVM Compiler System
LLVM makes it easier to not only create new languages, but to enhance the development of existing ones. It provides tools for automating many of the most thankless parts of the task of language creation: creating a compiler, porting the outputted code to multiple platforms and architectures, generating architecture-specific optimizations such as vectorization, and writing code to handle common language metaphors like exceptions. Its liberal licensing means it can be freely reused as a software component or deployed as a service.
heidsoft
2022-04-18
7970
指针|总结
计算机内存中每个位置由一个地址标识。通常领近的内存位置合成一组,这样允许存储更大范围的值,指针就是它的值表示内存地址的变量。
heidsoft
2022-04-18
1930
机器学习|系统搭建的流程
项目流程 明确定义问题 考虑非机器学习的方法 进行系统设计 选择算法 确定特征,训练数据和日志 执行前处理 学习与参数调整 系统实现 项目基础 微积分 矩阵计算 概率计算 项目算法 分类:利用正确解答的离散类别与输入数据的组合进行学习,从未知数据预测类别 回归:利用正确的数值和输入数据的组合进行学习,从未知数据预测连续值 聚类:以某种基准对数据进行分组 降维:将高维数据映射为低维数据以便可视化或减少计算量。 分类算法(离散值) 二元分类(二值分类) 感知机 逻辑回归 svm(支持向量机) 神经网络
heidsoft
2022-03-14
3030
分布式|算法再认识
CAP理论是Eric Brewer教授在2000年提出 的,是描述分布式一致性的三个维度,分别是指:
heidsoft
2022-03-14
2010
数据结构|树
高度:从楼下往楼上看 深度:从井口往井底看 📷 遍历 前序遍历:根结点 ---> 左子树 ---> 右子树 中序遍历:左子树---> 根结点 ---> 右子树 后序遍历:左子树 ---> 右子树 ---> 根结点 📷 📷 线索二叉树 typedef struct Node { char data; // Data domain struct Node *left_ child; // Left pointer field int left_ flag; // Left pointer flag bit st
heidsoft
2022-03-14
2630
c++|训练02|头文件
设计头文件时,应使头文件可以多次包含在同一个源文件中。必须要保证多次包含同一头文件不会引起该头文件定义类和对象被多次定义。
heidsoft
2022-03-14
1.2K0
c++ | 训练01
// 11. 由多个文件组成的程序需要一种方法连接名字的使用和声明,c++通过头文件实现
heidsoft
2022-03-14
2570
人工智能|数学基础|回归分析理论
在回归分析中,首先根据研究对象的性质和研究分析的目的,对变量进行自变量和因变量的划分。
heidsoft
2022-03-14
3420
操作系统|程序映像|内存分配
可执行程序看起来好像占据了一个连续的内存块,称为“程序映像”。程序映像有几个不同的分区。程序文本或者代码显示在低位内存中。已初始化和未初始化的静态变量在映像中有自己的分区。其他分区堆,堆栈和环境。
heidsoft
2022-03-14
6830
指针|内存和地址
指针 1. 声明为指针并不会改变这些表达式的求值方式。 2. 一个变量的值就是分配给这个变量的内存位置所存储的数值。 3. 变量的值就是分配给该变量的内存位置所存储的数值,即使是指针变量也一样。 4. 内存中的每个位置由一个独一无二的地址标识。 5. 内存中的每个位置包含一个值。 6. 变量名字与内存位置之间的关联不是硬件所提供的,它是由编译器为我们实现的。 所有这些变量给了我们一种更方便的方法记录地址--硬件仍然通过地址访问内存位置。 #include <stdlib.h> #include <stdi
heidsoft
2022-03-14
3600
数理统计|回归分析的概念
若有变量x和y, 当变量x的值确定之后,变量y的值也随之确定,这种变量之间的关系是确定性关系。
heidsoft
2022-01-17
5550
C有趣的宏
C诡异离奇,缺陷重重,却获得了巨大的成功 -- Dennis Ritchie
heidsoft
2022-01-17
3120
got java,jdk,bytecode?
In computer science, an instruction set architecture (ISA), also called computer architecture, is an abstract model of a computer. A device that executes instructions described by that ISA, such as a central processing unit (CPU), is called an implementation.
heidsoft
2022-01-17
3700
Python & Async Simplified
As some of you may be aware, I have spent many of the last months rewriting Channels to be entirely based on Python 3 and its asynchronous features (asyncio).
heidsoft
2022-01-11
3490
磁盘读写了解
1、时间复杂度o(1), o(n), o(logn), o(nlogn)。算法时间复杂度有的时候说o(1), o(n), o(logn), o(nlogn),这是算法的时空复杂度的表示。不仅仅用于表示时间复杂度,也用于表示空间复杂度。O后面的括号中有一个函数,指明某个算法的耗时/耗空间与数据增长量之间的关系。其中的n代表输入数据的量。
heidsoft
2022-01-11
1.1K0
分布式|Paxos和Raft复习
保持服务的持续可用,是核心业务对底层数据存储系统的要求。常见的1主N备的方案问题是“最大可用(Maximum Availability)”和“最大保护(Maximum Protection)”模式间抉择:
heidsoft
2021-03-15
5420
点击加载更多
社区活动
RAG七天入门训练营
鹅厂大牛手把手带你上手实战
Python精品学习库
代码在线跑,知识轻松学
博客搬家 | 分享价值百万资源包
自行/邀约他人一键搬运博客,速成社区影响力并领取好礼
技术创作特训营·精选知识专栏
往期视频·千货材料·成员作品 最新动态
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档