E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
Illustrated
C#图解教程(第4版)
《C#图解教程(第4版)》 基本信息 原书名:
Illustrated
C# 2012,Fourth Edition 作者: (美)Daniel M.Solis 译者: 姚琪琳 苏林 朱晔
·
2015-11-01 08:42
C#
300个国外优秀网站
Guide(电视指南) http://www.tvguide.com 娱乐默多克旗下 3 Time(时代)http://www.time.com/ 新闻年度风云人物 4 Sports
Illustrated
·
2015-10-31 13:24
网站
The Class Loader Hierarchy
Class loaders in the Application Server runtime follow a delegation hierarchy that is
illustrated
in
·
2015-10-31 08:58
loader
soj1036. Crypto Columns
The columnar encryption scheme scrambles the letters in a message (or plaintext) using a keyword as
illustrated
·
2015-10-30 13:57
column
bind原理图释
(原文:http://blog.think-async.com/2010/04/bind-
illustrated
.html) 本文解释了bind 是如何工作的。
·
2015-10-30 11:12
bind
前沿视频教室——《C#图解教程》是本好书,强烈推荐!
卓越网销售链接 本书原名为《
Illustrated
C# 2008
·
2015-10-30 10:20
C#
一部孟宪会推荐的C#图解教程
图解教程 本书赞誉: Amazon五星级盛誉 C# 最新特性一览无余 数十年开发与教学经验的结晶 图、表和文字完美结合,最易学的C# 教程 本书的前一版(
Illustrated
·
2015-10-30 10:19
C#
Hadoop TDG 3 – MR Job
Anatomy of a MapReduce Job Run Classic MapReduce (MapReduce 1) A job run in classic MapReduce is
illustrated
·
2015-10-28 08:52
hadoop
电子书下载:
Illustrated
C# 2010
Book DescriptionIt was while teaching numerous seminars on various programming languages that author Daniel Solis realized the immense power diagrams have in explaining programming language
·
2015-10-28 08:32
C#
zz Web Mapping
Illustrated
Table of Contents
从amazon买了3本书: Web Mapping
Illustrated
PostgreSQL (2nd Edition) MapServer Web Mapping
Illustrated
·
2015-10-21 11:43
mapping
Relational Engine之Server Architecture
The
illustrated
components can be or
·
2015-10-21 11:08
Architecture
Faceted Search
Faceted Search User's Guide Table of Contents Introduction Facet Features Indexing Categories
Illustrated
--晴天--
·
2014-07-21 17:00
Lucene
Illustrated
C#2012--第一章节--C#和.NET Framework
本章内容:.NET之前进入Microsoft.NET编译通用中间语言编译原生代码和执行程序公共语言运行时通用语言基础重新认识(专业词汇的)首字母缩写C#的进化
u012025054
·
2014-03-12 21:00
C#
2012
Hadoop Safe Mode
Illustrated
When NameNode is started (not the first time start after formatting), it's running in safe mode, which means that it offers only a read-only view of the filesystem to clients. Strictly speaking, in sa
sunwinner
·
2013-07-08 00:00
hadoop
Perl 内部结构详解 -- PerlGuts
Illustrated
(6 CV)
CVcodevalue,函数的结构,如下图:下边示例可以看到几个主要参数:函数所在的Stash&GV。函数的参数表和临时变量表PADLIST。D:\Tmp>perl-MDevel::Peek-e"suba{my($a,$b,$t);}Dump\&a" SV=RV(0x3a90f0)at0x3a90e4 REFCNT=1 FLAGS=(TEMP,ROK) RV=0x285a864 SV=PVCV(0
USTBHacker
·
2012-11-21 10:00
Perl 内部结构详解 -- PerlGuts
Illustrated
(5 GV & Stash)
GVGV"GlobalValue"或者“符号表”,存储着变量或者函数的指针GP,由GP中slot相关的指示来决定是否存在对应这个变量相应的类型。如图所示:GP可以在多个GV中共享,试运行下例查看结果。D:\perl-MDevel::Peek-e"*test=*Dump;Dump*Dump;Dump*test" SV=PVGV(0x285cda4)at0x286c0dc REFCNT=5 FLAGS
USTBHacker
·
2012-11-20 14:00
Perl 内部结构详解 -- PerlGuts
Illustrated
(4 HV)
HVhashtable是最复杂的数据结构,HV使用HEstruct表示key/value结构,使用HEK表示key。GvSTASH当这个hash表示一个命名空间(模块),STASH指向Perl语法树的一个节点,用来实现reset。(略过,未搞明白)ARRAY数组用于分配储存hash值,它的大小必须是2的n次方,当hash为空情况下,ARRAY为NULL。定位hash值在ARRAY中的位置只使用ha
USTBHacker
·
2012-08-02 17:00
数据结构
c
struct
null
perl
csv
Perl 内部结构详解 -- PerlGuts
Illustrated
(3 AV)
AV数组,结构如图所示:字段ALLOC指向实际分配的SV数组的开头地址。字段ARRAY指向数组本身的开头地址,由于数组的改变,这个地址比起实际分配的地址,可能会产生一定的偏移。字段FILL指向数组本身最后一个位置的偏移。字段MAX指向分配的SV数组最后一个位置的偏移。C:\>perl-MDevel::Peek-e"@a=1..2;Dump\@a" SV=RV(0x299120)at0x299114
USTBHacker
·
2012-08-01 16:00
c
perl
Perl 内部结构详解 -- PerlGuts
Illustrated
(2 SV)
_SV_HEADandstructsv下面来看一下最简单的类型structsv,代表了SV,GV,CV,AV,HV,IO的通用结构。如下图所示:第一个字段Any可以指向任意结构,除了RV,所有的其他类型都是由Any指向的附加数据来实现。第二个字段REFCNT表明了有多少pointers引用了这个object。初始置为1,当有pointers指向它或者被销毁的时候,这个值需要相应的加1或者减1,当值
USTBHacker
·
2012-07-31 14:00
Perl 内部结构详解 -- PerlGuts
Illustrated
(1)
首先看一下Perldatastructure。Perl内部称为SV(scalarvalue),AV(arrayvalue),HV(hashvalue),此外IV代表integer,NV代表double,PV代表string,RV代表指针,指向另外的任意数据结构。Perl内部的数据结构之间的关系很像OO,用Cstructure内存裁减的方式模拟C++的继承。各种结构之间的继承关系如下图所示,它们之间
USTBHacker
·
2012-07-31 13:00
数据结构
object
Integer
perl
Arrays
structure
Perl 内部结构详解 -- PerlGuts
Illustrated
之前想看一下Perl的实现,无意中搜到了这篇文章,对Perl内部类型的结构解释的很清晰,推荐感兴趣的都仔细看一下,想优化的时候做到心中有数。接下来的几篇blog将翻译这篇文档中常见类型的部分,做个记录,加深印象,同时也方便大家阅读理解。PerlGutsIllustrated直接命令行的方法查看:perl-MDevel::Peek-e"$a=123;Dump$a"简单的例子用来查看变量内部结构:us
USTBHacker
·
2012-07-26 23:00
c
优化
Blog
perl
文档
TCP/IP
Illustrated
Vol1&2 笔记:数据流 和 内核数据结构
1.IP层会通过IPHeader中的协议字段,把处理后的IP包传递给不同的传输层协议去处理,所以UDP端口是独立于TCP端口的;(TCP/IPvol111.2) 参考:TCP/IPvol1Figure1.8,IP层会根据协议来分流(demultiplexing)数据;更多内核中的信息流动细节参考,vol2,1.9,1.10这两节;a).UDP输出的时候(send),中间过程没有排队过程,直到数据到
shenyan008
·
2012-04-13 20:00
数据结构
socket
tcp
struct
header
internet
An
Illustrated
Guide to SSH Agent Forwarding
AnIllustratedGuidetoSSHAgentForwardingSteveFriedl'sUnixwiz.netTechTipsAnIllustratedGuidetoSSHAgentForwardingHomeContactAboutTechTipsTools&SourceEvoPayrollResearchAT&T3B2AdvisoriesNews/PubsLiteracyCali
·
2012-02-22 11:00
forward
TCP/IP协议初步认识 ——《TCP/IP
Illustrated
, Vol. 1: The Protocols》读书笔记
TCP/IP协议初步认识——《TCP/IPIllustrated,Vol.1:TheProtocols》读书笔记by斜风细雨QQ:253786989 2012-02-19 TCP/IP协议起源于60年代末美政府的一个分组交换网络研究项目,现如今已成为计算机之间最常用的组网方式。(1)分层 TCP/IP协议簇分为4个不同的抽象层,每一层完成不同的功能。 应用层:应用层可能包括各种通用的网络应用
NorthCan
·
2012-02-19 17:00
网络
服务器
FTP服务器
网络应用
读书
protocols
过年前,打算重新再看看TCP IP
Illustrated
Volume 1 The Protocols
为了加强理论基础,也为了更加完善tcpcopy,重新看一遍这本经典书。这本书需要反复看,每次看都有收获。
wangbin579
·
2012-01-05 13:00
TCP/IP
Illustrated
vol1 笔记 TCP Half-Close 和 FIN_WAIT_2 State
1.调用shutdown之后,状态如下图:即,half-close中,主动关闭的这一端接收到ackofFIN之后,还能读取对端的数据,而completeclose的话,主动关闭的这一端会进入FIN_WAIT_2State,而这个阶段会一直等待对端发送FIN,shutdown把发起主动关闭的这一端从无穷尽的等待中释放出来。伯克利为了防止无穷等待的出现,设置了定时器,超过10m+75s的话,直接进入C
shenyan008
·
2011-11-13 23:00
TCP/IP
Illustrated
vol1 笔记 IGMP
1.IGMP用于支持多播的主机和路由器中;2.IGMP消息封装在IP数据报中,消息是固定长度的8字节,封装格式如下:version字段为1;type字段,1的话是query,2是response/report;3.主机一个进程是在一个指定的接口上加入一个多播组的;主机是通过组ID和接口来确定一个多播组的,主机维护了一张表,表项包含多播组和它拥有的进程数;4. 路由器 路由器维护了一张表,每一项包
shenyan008
·
2011-11-04 13:00
report
query
路由器
TCP/IP
Illustrated
vol1 笔记 Broadcasting and Multicasting
1.以太网卡多播:网卡MAC地址的最后一字节的第一位置为1,如:01:00:00:00:00:00广播:可以看成是多播的一种特殊情况,所有位置为1,即:ff:ff:ff:ff:ff:ff2.IP层广播类型liminitedbroadcastaddress:即255.255.255.255,主机配置阶段会发送此中广播,目的地为此地址的不会被路由器转发;net-directedbroadcast:主机
shenyan008
·
2011-11-03 20:00
网络
socket
UP
路由器
M:The road of learn TCP/IP
1.Richard Stevens,TCP/IP
Illustrated
, Vol.1 / Vol.2 / Vol.3 《TCP/IP详解(第一卷)协议》 《TCP/IP详解 卷2:实现》 《TCP
marlgl
·
2011-08-15 11:00
TCP/IP
SpringDM笔记3-MAINFEST.NF文件:Header,Version配置
The configuration of a header follows the syntax
illustrated
in the following snippet:  
SpringsFeng
·
2011-08-12 10:00
version
[转]什么是博士?
转自http://www.ruanyifeng.com/blog/2010/08/
illustrated
_guide_to_a_phd.html作者:阮一峰日期:2010年8月10日今天,我看到一组图。
mine1024
·
2011-01-09 19:00
What Android Is
Being an
illustrated
run through the basics.
淡然若水
·
2010-11-25 14:00
linux
android
jni
Google
mobile
各种咖啡的说明
详细参考:http://www.lokeshdhakar.com/2007/08/20/an-
illustrated
-coffee-guide/===========================我不是咖啡爱好者
Vange
·
2010-08-05 14:00
Dynamic texture coordinate generation using the TexCoordGeneration class
The OBJECT_LINEAR, EYE_LINEAR and SPHERE_MAP modes are
illustrated
.
kennyluo
·
2010-07-28 01:00
JavaScript
.net
sun
Go
Blend
网络编程之 keepalive
dev.csdn.net/article/84901.shtmlink3:http://lo-res.org/~aaron/tcpipillustrated/richard_stevens_-TCPIP-
Illustrated
-Vol
historyasamirror
·
2010-04-25 12:00
编程
socket
server
tcp
网络
服务器
Hello-Flex.4 pdf 下载
This
illustrated
tutorial builds your know-how from the first Hello Wo
jickcai
·
2010-03-22 18:00
Web
Flex
Yahoo
Access
UP
图灵喜获Stevens名著《TCP/IP
Illustrated
》影印版权
图灵再获得培生教育出版集团授权,即将出版《TCP/IP详解》(3卷)的影印版。此前,图灵在2006年先后出版了《Unix环境高级编程(第2版)》的影印版和翻译版。并于2009年11月推出了《UNIX网络编程》(2卷)的影印版。后者的翻译版正在翻译校订中,预计2010年5-6月出版。《TCP/IP详解》影印版将于2010年1-2月间出版上市。
turingbook
·
2009-12-29 17:45
生活
职场
休闲
图灵喜获Stevens名著《TCP/IP
Illustrated
》影印版权
图灵再获得培生教育出版集团授权,即将出版《TCP/IP详解》(3卷)的影印版。此前,图灵在2006年先后出版了《Unix环境高级编程(第2版)》的影印版和翻译版。并于2009年11月推出了《UNIX网络编程》(2卷)的影印版。后者的翻译版正在翻译校订中,预计2010年5-6月出版。《TCP/IP详解》影印版将于2010年1-2月间出版上市。
turingbook
·
2009-12-29 17:45
生活
职场
休闲
图灵喜获Stevens名著《TCP/IP
Illustrated
》影印版权
图灵再获得培生教育出版集团授权,即将出版《TCP/IP详解》(3卷)的影印版。此前,图灵在2006年先后出版了《Unix环境高级编程(第2版)》的影印版和翻译版。并于2009年11月推出了《UNIX网络编程》(2卷)的影印版。后者的翻译版正在翻译校订中,预计2010年5-6月出版。《TCP/IP详解》影印版将于2010年1-2月间出版上市。
turingbooks
·
2009-12-29 16:00
编程
unix
网络
教育
出版
2010
推荐几本好书
2.
Illustrated
C# 2008(C#图解教程) Dani
Durian
·
2009-12-21 14:00
设计模式
C++
c
工作
C#
Index Futures and Options
; Index Futures and Options The series name standards are
illustrated
tomboxfan
·
2009-02-23 16:00
F#
J#
双check单子模式
double-checked locking idiom originated, you must understand the common singleton creation idiom, which is
illustrated
daweiangel
·
2008-12-05 11:00
jvm
jdk
thread
IBM
sun
双check单子模式
double-checked locking idiom originated, you must understand the common singleton creation idiom, which is
illustrated
daweiangel
·
2008-12-05 11:00
jvm
jdk
thread
IBM
sun
长篇图解git中恢复“丢失的提交” [zt]
chinaonrails.com/topic/view/1769.html...bybd7lx...29天20小时前...50次点击http://programblings.com/2008/06/07/the-
illustrated
-guide-to-recovering-lost-commits-with-git
3444542
·
2008-07-23 10:00
#Git
tcp/ip协议 温习(1)
这几天一直在浏览了tcp ip illustated vol1(后简称
illustrated
)和internetworking with tcpip vol1,发现曾经学习过的许多关键知识点已经忘的差不多了
kofsky
·
2008-07-01 23:00
浏览器
网络协议
Blog
tcp/ip协议 之二
这几天一直在浏览了tcpipillustatedvol1(后简称
illustrated
)和internetworkingwithtcpipvol1,发现曾经学习过的许多关键知识点已经忘的差不多了,有点点惊讶自己的遗忘速度
kofsky
·
2008-07-01 23:00
tcp/ip协议 之二
这几天一直在浏览了tcp ip illustated vol1(后简称
illustrated
)和internetworking with tcpip vol1,发现曾经学习过的许多关键知识点已经忘的差不多了
kofsky
·
2008-07-01 23:00
浏览器
网络协议
Blog
TCP/IP
Illustrated
中文版
明天TCP/IP协议考试,使用TCP/IPIllustratedVolume1:TheProtocol中文版,对其中的语句有点不理解处,于是想查一下原版出处内容。不想查到了作者W.RichardStevens'HomePage,到家了,顺便点击了一下本书的Foreignlanguagetranslations,进入了http://www.kohala.com/start/translation
tanzek
·
2008-01-06 20:00
html
Safari
出版
TCP/IP
Illustrated
中文版
明天TCP/IP协议考试,使用TCP/IPIllustratedVolume1:TheProtocol中文版,对其中的语句有点不理解处,于是想查一下原版出处内容。不想查到了作者W.RichardStevens'HomePage,到家了,顺便点击了一下本书的Foreignlanguagetranslations,进入了http://www.kohala.com/start/translation
学海拾遗
·
2008-01-06 20:00
近10年最强的50本计算机图书
Object-Oriented Software NO.2 人月神话 The Mythical Man-Month: Anniversary Edition NO.3 TCP/IP详解卷1:协议 TCP/IP
Illustrated
wapysun
·
2007-01-30 12:00
计算机
上一页
1
2
3
4
5
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他