自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(19)
  • 资源 (6)
  • 收藏
  • 关注

转载 [Cloud Computing]Patterns: Intra-Storage Device Vertical Data Tiering

Intra-Storage Device Vertical Data Tiering (Erl, Naserpour)How can the dynamic vertical scaling of data be carried out within a storage device?ProblemWhen required to maintain data

2016-08-04 08:59:11 574

原创 [Kubernetes]Kubernetes的网络模型

Kubernetes的网络模型从内至外由四个部分组成:Pod内部的容器之间通信的网络Pod和Pod之间通信的网络Pod和Service之间通信的网络外界与Service之间通信的网络

2016-08-03 15:16:09 10773

转载 [Cloud Computing]Patterns: Elastic Resource Capacity

Elastic Resource Capacity (Erl, Naserpour)How can the processing capacity of virtual servers be dynamically scaled in response to fluctuating IT resource usage requirements?Problem

2016-08-03 08:57:27 598

转载 [Cloud Computing]Patterns: Elastic Network Capacity

Elastic Network Capacity (Erl, Naserpour)How can network bandwidth be allocated to align with actual usage requirements?ProblemNetwork bandwidth is often fixed, resulting in perfor

2016-08-03 08:52:37 528

转载 [Cloud Computing]Patterns: Elastic Disk Provisioning

Elastic Disk Provisioning (Erl, Naserpour)How can the billing of cloud storage be based on actual, fluctuating storage consumption?ProblemWhen cloud providers charge for fixed-disk

2016-08-03 08:48:10 812

转载 [Cloud Computing]Patterns: Dynamic Scalability

Dynamic Scalability (Erl, Naserpour)How can IT resources be scaled automatically in response to fluctuating demand?ProblemIt is challenging to equip an IT resource to match its pro

2016-08-03 08:42:16 666

原创 [Go语言]我的第十一个Go语言程序

Exercise: Web CrawlerIn this exercise you'll use Go's concurrency features to parallelize a web crawler.Modify the Crawl function to fetch URLs in parallel without fetching the same URL twice.

2016-08-02 21:24:08 346

原创 [Go语言]我的第十个Go语言程序

Exercise: Equivalent Binary TreesThere can be many different binary trees with the same sequence of values stored at the leaves. For example, here are two binary trees storing the sequence 1, 1, 2

2016-08-02 20:45:16 388

转载 [Cloud Computing]Patterns: Dynamic Data Normalization

Dynamic Data Normalization (Erl, Naserpour)How can redundant data within cloud storage devices be automatically avoided?ProblemCloud consumers may store large volumes of redundant

2016-08-02 08:26:51 495

转载 [Cloud Computing]Patterns: Cross-Storage Device Vertical Tiering

Cross-Storage Device Vertical Tiering (Erl, Naserpour)How can the vertical scaling of data processing be carried out dynamically?ProblemIncreasing the processing capacity of data s

2016-08-02 08:21:30 856

转载 [Cloud Computing]Patterns: Broad Access

Broad Access (Erl, Naserpour)How can cloud services be made accessible to a diverse range of cloud service consumers?ProblemCloud consumers may require access to a cloud service vi

2016-08-02 08:14:08 669

原创 [Go语言]我的第九个Go语言程序

Exercise: ImagesRemember the picture generator you wrote earlier? Let's write another one, but this time it will return an implementation of image.Image instead of a slice of data.Define you

2016-08-01 21:20:28 355

原创 [Go语言]我的第八个Go语言程序

Exercise: rot13ReaderA common pattern is an io.Reader that wraps another io.Reader, modifying the stream in some way.For example, the gzip.NewReader function takes an io.Reader (a stream o

2016-08-01 21:04:24 410

原创 [Go语言]我的第七个Go语言程序

Exercise: ReadersImplement a Reader type that emits an infinite stream of the ASCII character'A'.package mainimport "golang.org/x/tour/reader"type MyReader struct{}func (r MyReader) Read

2016-08-01 20:49:38 883

原创 [Go语言]我的第六个Go语言程序

Exercise: ErrorsCopy your Sqrt function from the earlier exercise and modify it to return an error value.Sqrt should return a non-nil error value when given a negative number, as it doesn't

2016-08-01 20:38:34 585

原创 [Kubernetes]Kubernetes集群和Docker私有库搭建(CentOS 7)

在参考了如下文档后,顺利地搭建了一个Docker私有库和使用该私有库的Kubernetes集群环境:Kubernetes官方的安装文档(CentOS 7)[推荐]Installing Kubernetes Cluster with 3 minions on CentOS 7 to manage pods and servicesDocker官方的私有库部署文档Docker官方的不安全私有库

2016-08-01 18:57:32 20122 3

转载 [Cloud Computing]Mechanisms: Virtual Switch

Virtual SwitchA virtual switch is a logical network switch that operates at the hypervisor level. Network interface cards (NICs) are emulated into a single virtual switch. Some virtual switches

2016-08-01 09:11:29 728

转载 [Cloud Computing]Mechanisms: Virtualization Agent

Virtualization AgentThe virtualization agent mechanism is an agent that is installed inside the virtual server and typically provides load-enhanced drivers for the virtual servers to add various

2016-08-01 09:05:34 365

转载 [Cloud Computing]Mechanisms: Virtualization Monitor

Virtualization MonitorThe virtualization monitor is a specialized variation of the usage monitor mechanism that provides monitoring functionality specific to virtualization-related usage. A vari

2016-08-01 09:01:29 331

Introduction to Algorithms, Third Edition

Introduction to Algorithms, Third Edition

2013-06-10

Spring MVC、hibernate validator和i18n源代码

我的博客中的《Spring MVC、hibernate validator和i18n》文章描述的项目的源代码,该文是对Spring mvc, validation和i18n的一个入门级的tutorial。我的博客地址是http://blog.csdn.net/zjysource

2010-03-29

《Java 2 入门经典 JDK5》 源代码

这个源代码在http://www.wrox.com上可以获得,并且还有课后习题的答案以及JDK5到JDK6的变动说明,甚至还有书中LinkedList类的纠正版本。(都在压缩包里的Beg_Java_15文件夹里)<br>但是为了学习JAVA我自己亲自把书上的例题代码都敲了一便,并运行通过(压缩包里的BeginningJava2文件夹),我把源代码按照书的页码组织的。<br>这1058页的书,我一年前看过一遍,现在又过了一遍,而且把代码都敲了一遍,对面向对象的分析和设计又有了新的更深的认识。而且这次我用了一个月的时间,整整七月份,我每天都是半天在学德语,半天在敲代码。现在总算告一段落了。紧接着要做下一件事了。呵呵。<br>现在把劳动成果拿出来与大家分享。

2008-07-31

实现了排列组合算法的类(JAVA).rar

所使用的算法应该是效率最高的算法,而且这两个类都只是对需要排列组合的数组的下标进行处理,所以能对任何类型的数组进行排列组合。

2007-08-04

DataGridView控件分页显示辅助类

这个类用于帮组DataGridView分页显示记录,而且一点也不依赖于的数据库。

2007-06-10

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除