<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no"> <style> ._ul>li ...
分类:
Web程序 时间:
2020-02-25 14:45:27
阅读次数:
73
What is SPDK The Storage Performance Development Kit (SPDK) provides a set of tools and libraries for writing high performance, scalable, user-mode st ...
分类:
其他好文 时间:
2020-02-22 14:01:18
阅读次数:
91
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-s ...
分类:
Web程序 时间:
2020-02-11 00:50:24
阅读次数:
119
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, ...
分类:
Web程序 时间:
2020-02-06 16:18:09
阅读次数:
292
今天通过菜鸟教程中Scala教程https://www.runoob.com/scala/scala-intro.html来初步学习Scala语言,并且安装了scala Scala 是 Scalable Language 的简写,是一门多范式的编程语言。Scala也是一种函数式语言,其函数也能当成值 ...
分类:
其他好文 时间:
2020-02-02 01:45:47
阅读次数:
91
Kubernetes Networking: How to Write Your Own CNI Plug-in with Bash 很多人想更深入的了解kubernets的网络 部署到不同物理节点的Pod如何使用从单个子网分配的IP地址直接相互通信 Kubernetes服务如何工作 如何实现负载平 ...
分类:
Web程序 时间:
2020-01-30 19:31:43
阅读次数:
105
#include<iostream> #include<algorithm> using namespace std; const int N=1e5; struct edge{ int a,b,w; }e[N]; bool cmp(edge a,edge b) { return a.w<b.w; ...
分类:
Web程序 时间:
2020-01-29 12:50:21
阅读次数:
89
运行 gedit /etc/hosts 添加: 192.30.253.112 github.com 151.101.44.249 github.global.ssl.fastly.net 然后输入: sudo /etc/init.d/networking restart 即可 ...
分类:
其他好文 时间:
2020-01-28 19:19:20
阅读次数:
48
概念: Zeroconf (Zero-configuration networking 零配置联网) 功能: 1 自动配置IP地址 (Link-local 地址), 2 自动配置并解析域名,这项技术被称为 mDNS (Multicast Domain Name Service,多点发送域名服务) 3 ...
分类:
其他好文 时间:
2020-01-22 18:43:39
阅读次数:
125
日期: 2020-01-22 1.概述和安装 Scala是“可扩展语言”的缩写(SCAlable Language),与2003创建,为JVM平台上的函数式编程以及面向对象编程提供一个高性能开发环境。所以,Scala要求使用java运行时库。 在mac环境使用HomeBrew来安装scala比较方便 ...
分类:
其他好文 时间:
2020-01-22 11:09:22
阅读次数:
93