CodeBus
www.codebus.net
Search
Sign in
Sign up
Hot Search :
Source
embeded
web
remote control
p2p
game
More...
Location :
Home
Search - address memory
Main Category
SourceCode
Documents
Books
WEB Code
Develop Tools
Other resource
Search - address memory - List
[
JSP/Java
]
szpay-Jabbar
DL : 0
szPay.cn盈盈通网络聊天软件 UTF-8 Beta 0.1 Build20070716 程序刚编好Beta版;多人聊天没问题; 手工编写内存队列加速,速度奇快; 只是还未建后台因此暂时不可以踢人; 作者主页:http://www.szpay.cn 下载地址:http://www.szpay.cn/szpay-Jabbar.rar 演示地址:http://www.szpay.cn/nIM/index.jsp-Ying-Ying szPay.cn Network chat software UTF-8 Beta 0.1 Build20070716 program just made good Beta version people chat no problem manual preparation of the memory queue to speed up, speed, a swift pace but not yet built the background can not, therefore踢人 Author Home: http://www.szpay.cn Download Address: http://www.szpay.cn/szpay-Jabbar.rar Demo Address: http://www.szpay.cn/nIM/index.jsp
Date
: 2026-01-10
Size
: 67kb
User
:
郑佳
[
JSP/Java
]
IKAnalyzer3.2.8-source
DL : 0
IKAnalyzer的源码包,实现中文分词功能,(1) 采用了特有的“正向迭代最细粒度切分算法”,具有60万字/ 秒的高速处理能力。 (2) 采用了多子处理器分析模式,支持:英文字母( IP 地址、Email、URL )、数字(日期,常用中文数量词,罗马数字,科学计数法),中文词汇(姓名、地名处理)等分词处理 。 (3) 优化的词典存储,更小的内存占用。支持用户词典扩展定义 (4) 针对 Lucene 全文检索优化的查询分析器 IKQueryParser;采用歧义分析算法优化查询关键字的搜索排列组合,能极大的提高 Lucene 检索的命中率。-IKAnalyzer the source package to achieve Chinese word function, (1) using the unique " forward iteration the most fine-grained segmentation algorithm" , with 60 million characters/second high-speed processing capability. (2) The analysis of multi-mode sub-processor support: letters (IP address, Email, URL), numbers (dates, commonly used in Chinese numeral, roman numerals, scientific notation), Chinese vocabulary (name, place name treatment) segmentation processing. (3) optimization of the dictionary storage, a smaller memory footprint. Support the extended definition of the user dictionary (4) optimized for the Lucene full-text search query analyzer IKQueryParser by ambiguity of keyword search algorithm to optimize query permutations and combinations, can greatly improve the Lucene search hits.
Date
: 2026-01-10
Size
: 1.14mb
User
:
陈雅倩
[
JSP/Java
]
axiom-1.2.12
DL : 0
Axis对象模型(AXIOM)是一个XML对象模型,设计用于提高XML处理期间的内存的使用率和性能,基于Pull解析。 Pull 解析方式,基于STAX(Streaming API for XML),Pull解析是最近处理XML的一种趋势,而SAX和DOM都是基于push的解析方式,也就是说解析控制在parser本身。Push解析方 式很容易使用,但在处理XML文档时效率并不好,(因为要在内存中生成完成的对象模型)。Pull解析方式颠倒了这种控制方式,增强了parser,只在 用户需要的时候才进行处理。用户决定处理或者忽略parser生成的事件。 AXIOM(也称为OM)可以控制解析过程,以提供延迟构建支持。延迟 构建是指AXIOM不完全构建对象模型,模型的其余部分基于用户的需要构建。以下实例对此概念进行了说明:假定某个用户需要从XML输入流中获得一个人的 元素值,AXIOM构建的对象模型将一直包含到元 -Axis Object Model (AXIOM) is an XML object model, XML processing designed to improve memory usage during and sexual Can, based on Pull parsing. Pull parsing, based on STAX (Streaming API for XML), Pull handle XML parsing is a recent trend, The SAX and DOM are push-based analytical methods, that control the parser resolve itself. Push is easy to parse manner Use, but the efficiency in the processing of XML documents is not good, (as done in memory to generate the object model). Pull parsing side Type reversed this control method to enhance the parser, the user only when it is needed for processing. Or the user decided to address the Ignore the parser generates events. AXIOM (also known as OM) can control the resolution process, to provide deferred building support. Deferred building is not completely built AXIOM Object model, the rest of the model based on the user s need to build. The following example illustrates this concept: Assume that a use Users need to get from the XML
Date
: 2026-01-10
Size
: 1.49mb
User
:
杨懿
[
JSP/Java
]
Sysinfo
DL : 0
获取电脑相关配置信息,比如网卡流量、cpu和内存使用率、ip和mac地址、操作系统等。但是只能获取本机,不能作为客户端的形式-Access to computer-related configuration information, such as LAN traffic, cpu and memory usage, ip and mac address, the operating system. But the only access to the machine, not as a client in the form of
Date
: 2026-01-10
Size
: 4kb
User
:
蓝影
[
JSP/Java
]
File-system
DL : 1
1. 在内存中开辟一个虚拟磁盘空间作为文件存储器,在其上实现一个多用户多目录的文件系统。 2. 文件物理结构可采用显式链接或其他方法。 3. 磁盘空闲空间的管理可选择位示图或其他方法。如果采用位示图来管理文件存储空间,并采用显式链接分配方式,则可以将位示图合并到FAT中。 4. 文件目录结构采用多用户多级目录结构,每个目录项包含文件名、物理地址、长度等信息,还可以通过目录项实现对文件的读和写的保护。目录组织方式可以不使用索引结点的方式,但使用索引结点,则难度系数为1.2。 5. 设计一个较实用的用户界面,方便用户使用。要求提供以下相关文件操作: (1)具有login (用户登录) (2)系统初始化(建文件卷、提供登录模块) (3)文件的创建: create (4)文件的打开:open (5)文件的读:read (6)文件的写:write (7)文件关闭:close (8)删除文件:delete (9)创建目录(建立子目录):mkdir (10)改变当前目录:cd (11)列出文件目录:dir (12)退出:logout - Allow phonetic typing EnglishSpanishArabic A.In memory to open up a virtual disk space, file storage, file system on more than one user directory. Two. Document physical structure can be explicitly links or other methods. 3. Disk free space management selectable bit diagram or other means. If you use the diagram to manage file storage space, and explicitly links allocation, the bit to show maps of the FAT. 4. The file directory structure using the multi-user multi-level directory structure, each directory entry contains the file name, physical address, the length of the file read and write protection, but also through the directory entry. Directory organization can not use the index nodes of the way, but using an index node, then the difficulty factor of 1.2. 5 Design a practical user interface, user-friendly. Request the relevant documents of the following: (1) login (user login) (2) The system is initialized (build file volume to provide the login module) (3) file creati
Date
: 2026-01-10
Size
: 2.99mb
User
:
金国跃
[
JSP/Java
]
msvc71-(1)
DL : 0
值类型是存储在内存中的堆栈(以后简称栈),而引用类型的变量在栈中仅仅是存储引用类型变量的地址,而其本身则存储在堆中。-Value types are stored in the memory stack (later referred to as the stack), and the reference type variable is stored in the stack only the address of a reference type variable, which itself is stored in the heap.
Date
: 2026-01-10
Size
: 242kb
User
:
何小辉
[
JSP/Java
]
Addr2Line
DL : 0
Represents an addr2line process to get filename/method information from a memory address for Andriod.
Date
: 2026-01-10
Size
: 3kb
User
:
naiyunki
[
JSP/Java
]
ClusterMonitor
DL : 0
一个多集群的监控系统,可根据文件中定义的入口IP地址获取其机器上的GANGLIA信息,监控其所在网格内所有集群信息和节点机的CPU、内存、硬盘、负载等信息。-Monitoring system more than one cluster, GANGLIA information available on the machine based on IP address entry defined in the file, they all cluster monitoring information and Node CPU, memory, hard drive, load and other information in the grid.
Date
: 2026-01-10
Size
: 7.12mb
User
:
邹兵
[
JSP/Java
]
ClusterMonitor
DL : 0
一个多集群的监控系统,可根据文件中定义的入口IP地址获取其机器上的GANGLIA信息,监控其所在网格内所有集群信息和节点机的CPU、内存、硬盘、负载等信息。-Monitoring system more than one cluster, GANGLIA information available on the machine based on IP address entry defined in the file, they all cluster monitoring information and Node CPU, memory, hard drive, load and other information in the grid.
Date
: 2026-01-10
Size
: 8.35mb
User
:
陈飘
[
JSP/Java
]
pLATFORMaDDRESS.RAR
DL : 0
The platform address class is an unsafe virtualization of an OS memory block.
Date
: 2026-01-10
Size
: 2kb
User
:
cuefiuyer
CodeBus
is one of the largest source code repositories on the Internet!
Contact us :
1999-2046
CodeBus
All Rights Reserved.