Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.281.085 Times

Async Pipeline freeware
Filter: All | Freeware | Demo
 

Async Pipeline

1 2 3 4 5 > 
Added: November 14, 2013 | Visits: 584

asyncdns asyncdns is an asynchronous DNS query pipeline for Python, which could maintain massive concurrent DNS queries to several DNS servers. Features: * async pipeline: an full asynchronous pipeline shared by thousands DNS queries with callback * socks 5 proxy: support to send a DNS query through...



Platforms: *nix

License: Freeware Size: 20.48 KB Download (40): asyncdns Download

Added: August 09, 2010 | Visits: 1.218

Festival::Client::Async Festival::Client::Async is a non-blocking interface to a Festival server. SYNOPSIS use Festival::Client::Async qw(parse_lisp); my $fest = Festival::Client::Async->new($host, $port); $fest->server_eval_sync($lisp, %actions); # blocking $fest->server_eval($lisp); # just queues $lisp for...





Platforms: *nix

License: Freeware Size: 30.72 KB Download (95): Festival::Client::Async Download

Added: January 08, 2010 | Visits: 1.126

Async::Group Async::Group is a Perl class to deal with simultaneous asynchronous calls. SYNOPSIS use Async::Group ; use strict ; sub sub1 { print "Dummy subroutine n"; my $dummy = shift ; my $cb = shift ; &$cb(1); } sub allDone { print "All done, result is ", shift ,"n" ; } my $a =...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (105): Async::Group Download

Added: October 16, 2010 | Visits: 989

HTTP::Async HTTP::Async is a Perl module that can process multiple HTTP requests in parallel without blocking. SYNOPSIS Create an object and add some requests to it: use HTTP::Async; my $async = HTTP::Async->new; # create some requests and add them to the queue. $async->add( HTTP::Request->new( GET...


Platforms: *nix

License: Freeware Size: 15.36 KB Download (137): HTTP::Async Download

Added: February 19, 2010 | Visits: 842

Alvis::Pipeline Alvis::Pipeline is a Perl extension for passing XML documents along the Alvis pipeline. SYNOPSIS use Alvis::Pipeline; $in = new Alvis::Pipeline::Read(host => "harvester.alvis.info", port => 16716, spooldir => "/home/alvis/spool"); $out = new Alvis::Pipeline::Write(port => 29168); while...


Platforms: *nix

License: Freeware Size: 15.36 KB Download (98): Alvis::Pipeline Download

Added: January 05, 2010 | Visits: 1.012

syslog-async syslog-async project is a non-blocking syslog() replacement. It is not widely known that the standard Unix syslog() library routine can block waiting for the syslog daemon, but it is generally true. On some systems, using a datagram socket for /dev/log avoids endless waits, but on Linux, even...


Platforms: *nix

License: Freeware Size: 12.29 KB Download (96): syslog-async Download

Added: April 13, 2010 | Visits: 1.046

Application::Pipeline Application::Pipeline is a module designed to map methods ( referred to in this role as handlers ) to different phases of an applications life cycle. By assigning methods to different phases of this pipeline, the author can concentrate on the logic for each phase and let the framework manage the...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (106): Application::Pipeline Download

Added: November 21, 2010 | Visits: 1.139

Pipeline::Config SYNOPSIS use Error qw( :try ); use Pipeline::Config; my $config = Pipeline::Config->new(); try { my $pipe = $config->load( somefile.type ); my $pipe2 = $config->load( somefile, type ); } catch Error with { print shift; } Pipeline::Config lets you specify the structure of a Pipeline...


Platforms: *nix

License: Freeware Size: 7.17 KB Download (122): Pipeline::Config Download

Released: November 06, 2012  |  Added: November 06, 2012 | Visits: 804

Visual Studio Async CTP The Visual Studio Async CTP will extend Visual Studio 2010. It provides a new, streamlined syntax for asynchronous development. The Visual Studio Async CTP combines a new simple and composable pattern for asynchronous APIs, with "await" and "async" language keywords in Visual Basic and C#, that...


Platforms: Windows, 2003, Windows Vista, 2008, 7

License: Freeware Download (52): Visual Studio Async CTP Download

Released: November 17, 2012  |  Added: November 17, 2012 | Visits: 587

Daisy Pipeline GUI A GUI for the DAISY Pipeline (based on the Eclipse RCP Java application framework). The DAISY Pipeline is a framework for XML- and DTB-related transformations. As such, it can be employed in various contexts, relating to both content creation and distribution. The first time you launch the...


Platforms: Windows

License: Freeware Download (46): Daisy Pipeline GUI Download

Released: January 20, 2013  |  Added: January 20, 2013 | Visits: 655

Async Monitor Async Monitor provides the ability to remotely monitor activeity on your computer system remotely via the web in near-real time. Async Monitor helps keep your system running smoothly by allowing system administrators to identify and remove any rogue applications running on the system, determine...


Platforms: Windows

License: Freeware Size: 369 KB Download (504): Async Monitor Download

Added: May 10, 2013 | Visits: 468

DealGates Pipeline I've developped a second module linking Deal Gates and a Oscommerce based website.It is more easier to display your listing on DG and you do not need some special programming skills...How does it work ?- Define/Create a DG Pipeline- Copy "dealgates_pipeline.php" in the admin directory of your...


Platforms: Windows, *nix, PHP, BSD

License: Freeware Download (49): DealGates Pipeline Download

Added: May 10, 2013 | Visits: 485

Pipeline CMS Pipeline CMS is a Content Managment System based on the PHP language and is portable between many of the popular databases (ie: MySQL) through the ADOdB abstraction layer. Pipeline was written because other CMS's lacked a flexible skinning system.


Platforms: Windows, Mac, *nix, PHP, BSD Solaris

License: Freeware Download (53): Pipeline CMS Download

Added: July 09, 2013 | Visits: 506

Pipeline CMS for Scripts Pipeline CMS is a Content Managment System based on the PHP language and is portable between many of the popular databases (ie: MySQL) through the ADOdB abstraction layer.Pipeline was written because other CMS's lacked a flexible skinning system.


Platforms: PHP

License: Freeware Size: 1.11 MB Download (42): Pipeline CMS for Scripts Download

Added: September 05, 2013 | Visits: 382

django-pipeline Pipeline is an asset packaging library for Django, providing both CSS and javascript concatenation and compression, built-in javascript template support, and optional data-URI image embedding.


Platforms: *nix

License: Freeware Size: 30.72 KB Download (38): django-pipeline Download

Added: September 06, 2013 | Visits: 416

Async::MergePoint Often in program logic, multiple different steps need to be taken that are independent of each other, but their total result is needed before the next step can be taken. In synchonous code, the usual approach is to do them sequentially. An asynchronous or event-based program could do this, but...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (38): Async::MergePoint Download

Added: September 08, 2013 | Visits: 1.085

Pipe Viewer Pipe Viewer is a terminal-based tool for monitoring the progress of data through a pipeline. It can be inserted into any normal pipeline between two processes to give a visual indication of data transfer speed, ETA, that sort of thing.


Platforms: *nix

License: Freeware Size: 81.92 KB Download (117): Pipe Viewer Download

Released: October 13, 2012  |  Added: October 13, 2012 | Visits: 639

Imagine Imagine is a small, simple, easy to use application designed to enable you to create image processing pipeline with different steps. You can process a lot of images with just one click. This software is composed of: · A pipeline creator to generate your pipeline · An image viewer to look at...


Platforms: Windows

License: Freeware Download (457): Imagine Download

Released: September 09, 2012  |  Added: September 09, 2012 | Visits: 475

RiliView A Microstation GIS to allow pipeline design and management


Platforms: Windows

License: Freeware Size: 7.58 MB Download (446): RiliView Download

Added: November 19, 2013 | Visits: 464

ASpipe ASpipe is a pipeline to process GeneSeqer/GMAP alignments and identify alternative splicing (AS) events from the alignments. It requires unix bash, perl 5.0+ with DBI module and MySQL5.0+ to run properly.


Platforms: *nix

License: Freeware Size: 1.48 MB Download (51): ASpipe Download

1 2 3 4 5 >