Ports Search

Results 16,80116,810 of 17,773 for comment.zh_CN%3A%E6%8E%A7%E5%88%B6%E5%8F%B0.(0.016 seconds)
devel/bugspots-0.2.1 (Score: 1.0904034E-4)
Bugspots - Bug Prediction Heuristic
Bugspots - Bug Prediction Heuristic An implementation of the simple bug prediction heuristic outlined by the Google Engineering team: Bug Prediction at Google Well, we actually have a great, authoritative record of where code has been requiring fixes: our bug tracker and our source control commit log! The research indicates that predicting bugs from the source history works very well, so we decided to deploy it at Google. Point bugspots at any git repo and it will identify the hotspots for you.
devel/needle-1.3.0 (Score: 1.0904034E-4)
Dependency-injection/inversion-of-control container
Needle is a dependency injection (also, inversion of control) container for Ruby. Ultimately, it can reduce the amount of code that you have to write, simplifying many common programming tasks for you. This has the two-fold benefit of both decreasing application development time, and of decreasing the effort needed to maintain your application. Specifically, Needle can do: - Log Method Execution - Reference Another Service - Unit Testing - Lifestyle Management
devel/polyamorous-1.3.0 (Score: 1.0904034E-4)
Extraction of shared code from the Active Record Hackery gems
Polyamorous is an extraction of shared code from the Active Record Hackery gems Ransack, Squeel and MetaSearch by Ernie Miller and maintained by Ryan Bigg, Xiang Li, Jon Atack and a great little group of contributors. It is an internal library for extending various versions of Active Record with polymorphism. There is no public API, so it's :nodoc:. Move along. Nothing to see here.
devel/xmake-1.06 (Score: 1.0904034E-4)
Powerful make utility
XMake is a make utility. It is not compatible with other makes, but provides extended functionality over most standard makes. Whereas most other makes have confusing rulesets and do not support many-to-many dependency specifications, XMake has relatively few (basically no) rulesets and allows you to easily specify many:many dependencies. This gives XMake the flexibility to deal with complex project hierarchies very simply.
devel/retryable-2.0.3 (Score: 1.0904034E-4)
Allow for retrying of code blocks
Retryable uns a code block, and retries it when an exception occurs. It's great when working with flakey webservices (for example). It's configured using four optional parameters :tries, :on, :sleep, :matching, :ensure, :exception_cb and runs the passed block. Should an exception occur, it'll retry for (n-1) times. Should the number of retries be reached without success, the last exception will be raised.
devel/sdl2pp-0.12.0 (Score: 1.0904034E-4)
C++11 bindings/wrapper for SDL2
This library provides C++11 bindings/wrapper over a subset of SDL2 functions with extra features proided with modern C++ such as: * RAII-style initialization and destruction * Full error checking: exception is thrown if any SDL function fails. Exception itself allows to retrieve SDL error string * C++11 move semantics support, which allow you to store SDL objects in containers and pass/return them by value with no overhead
devel/shapelib-1.3.0 (Score: 1.0904034E-4)
C API for reading and writing ArcView Shapefiles
Shapefile C Library V1.2 Purpose The Shapefile C Library provides the ability to write simple C programs for reading, writing and updating (to a limited extent) ESRI Shapefiles, and the associated attribute file (.dbf). Documentation /usr/local/share/doc/shapelib/shapelib.html - General docs /usr/local/share/doc/shapelib/shp_api.html - Shape (.SHP) File API /usr/local/share/doc/shapelib/dbg_api.html - Attribute (.DBF) File API Check Shapelib Homepage below:
devel/sourcenav-4.5 (Score: 1.0904034E-4)
Source code analysis tool
Source Navigator NG is a source code analysis tool. With it, you can edit your source code, display relationships between classes and functions and members, and display call trees. You can navigate your source code and easily get to declarations or implementations of functions, variables and macros (commonly called "symbols") which helps you discovering and mapping unknown source code for enhancement or maintenance tasks. It is based upon the old source navigator and strives to improve usability and performance.
devel/styx-1.6.1 (Score: 1.0904034E-4)
Scanner/parser generator
Styx is a scanner/parser generator designed to address some shortcomings of the traditional lex/yacc combination. It has unique features like automatic derivation of depth grammar, production of the derivation tree including it's C interface, preservation of full source information and pretty printing to facilitate source-source translation, persistence to aid rapid interpreter writing. For application in contemporary computing environments, it supports unicode, reentrancy and offers thread-safeness.
devel/trio-1.16 (Score: 1.0904034E-4)
Fully matured and stable set of printf and string functions
Trio is a fully matured and stable set of printf and string functions designed be used by applications with focus on portability or with the need for additional features that are not supported by standard stdio implementation. There are several cases where you may want to consider using trio: 1.Portability across heterogeneous platforms. 2.Embedded systems without stdio support. 3.Extendability of unsupported features. 4.Your native version don't do everything you need.