Ports 搜索

共有19,819项符合%22HTTP Server%22的查询结果,以下是第9,2519,260项(搜索用时0.01秒)
japanese/tiarra-20100212 (Score: 0.0010835839)
IRC Proxy software
Tiarra is pure-perl irc proxy(or bot) software, with single-thread, multi-io, object-oriented framework.
japanese/uim-tomoe-gtk-0.6.0 (Score: 0.0010835839)
UIM helper program for Tomoe
uim-tomoe-gtk is an UIM helper program for Tomoe.
japanese/w3m-0.5.3 (Score: 0.0010835839)
Pager/text-based WWW browser with Japanese support
w3m is a pager/text-based WWW browser. It is a similar application to Lynx, but it has several features Lynx doesn't have. * Rendering tables. * Rendering frames. (It converts frames into a table).
java/log4e-1.5.1 (Score: 0.0010835839)
Eclipse插件,使得很容易在Java项目中使用logger
Log4E Log4E是一个自由的Eclipse插件,帮助你在Java项目中容易地使用logger。它不受任何特定的 日志框架约束。因此你可以使用偏好来定义你自己的模板以使用自己logger。它支持Log4j、 Commons Logging和JDK 1.4 logging。使用时,通过java文件上下文菜单或编辑器的上下文 菜单到子菜单“Log4”。 注意,编辑器的子菜单提供了更多的任务。 所有任务都可以通过类或方法层来调用。
java/ShellEd-1.0.2a (Score: 0.0010835839)
ShellEd是一个Eclipse的高超的shell脚本编辑器
ShellEd是一个Eclipse的高超的shell脚本编辑器。该插件最大的好处是为内容辅助和文本悬停 集成了帮助信息。
java/windowbuilder-1.6.1 (Score: 0.0010835839)
Powerful and easy to use Java GUI designer for Eclipse
WindowBuilder is a powerful and easy to use bi-directional Java GUI designer that makes it very easy to create Java GUI applications without spending a lot of time writing code to display simple forms. With WindowBuilder you can create complicated windows in minutes. Use the visual designer and Java code will be generated for you. You can easily add controls using drag-and-drop, add event handlers to your controls, change various properties of controls using a property editor, internationalize your app and much more.
java/bcel-5.2 (Score: 0.0010835839)
Library for generating Java bytecode
The Byte Code Engineering Library (formerly known as JavaClass) is intended to give users a convenient possibility to analyze, create, and manipulate (binary) Java class files (those ending with .class). Classes are represented by objects which contain all the symbolic information of the given class: methods, fields and byte code instructions, in particular. Such objects can be read from an existing file, be transformed by a program (e.g. a class loader at run-time) and dumped to a file again. An even more interesting application is the creation of classes from scratch at run-time. The Byte Code Engineering Library (BCEL) may be also useful if you want to learn about the Java Virtual Machine (JVM) and the format of Java .class files. BCEL is already being used successfully in several projects such as compilers, optimizers, obsfuscators and analysis tools, the most popular probably being the Xalan XSLT processor at Apache.
java/pycharm-2016.2.3 (Score: 0.0010835839)
IntelliJ PyCharm Community Edition
IntelliJ PyCharm is an advanced IDE developed by JetBrains and focused on developer productivity. PyCharm provides smart code completion, code inspections, on-the-fly error highlighting and quick-fixes, along with automated code refactorings and rich navigation capabilities.
java/commons-dbcp-1.4 (Score: 0.0010835839)
The DBCP Component
The DBCP Component Many Jakarta projects support interaction with a relational database. Creating a new connection for each user can be time consuming (often requiring multiple seconds of clock time), in order to perform a database transaction that might take milliseconds. Opening a connection per user can be unfeasible in a publicly-hosted Internet application where the number of simultaneous users can be very large. Accordingly, developers often wish to share a "pool" of open connections between all of the application's current users. The number of users actually performing a request at any given time is usually a very small percentage of the total number of active users, and during request processing is the only time that a database connection is required. The application itself logs into the DBMS, and handles any user account issues internally. There are several Database Connection Pools already available, both within Jakarta products and elsewhere. This Commons package provides an opportunity to coordinate the efforts required to create and maintain an efficient, feature-rich package under the ASF license. The commons-dbcp package relies on code in the commons-pool package to provide the underlying object pool mechanisms that it utilizes.
java/commons-discovery-0.5 (Score: 0.0010835839)
Java library for locating resources (including classes)
The Discovery Component is about discovering, or finding, implementations for pluggable interfaces. It provides facilities instantiating classes in general, and for lifecycle management of singleton (factory) classes. Fundamentally, Discovery locates classes that implement a given Java interface. The discovery pattern, though not necessarily this package, is used in many projects including JAXP (SaxParserFactory and others) and commons-logging (LogFactory). By extracting this pattern, other projects can (re)use it and take advantage of improvements to the pattern as Discovery evolves. Discovery improves over previous implementations by establishing facilities for working within managed environments. These allow configuration and property overrides without appealing to the global System properties (which are scoped across an entire JVM).