Videos from the Founding Symposium ?Event Processing Technical Society (EPTS)?


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Complex Event Processing RSS News Videos from the Founding Symposium ?Event Processing Technical Society (EPTS)?
# 1  
Old 11-11-2008
Videos from the Founding Symposium ?Event Processing Technical Society (EPTS)?

by Thomas Ertlmaier and* Rainer von AmmonVideos of the EPTS workshop lectures, Stamford Ct., Sept 17-19, 2008.15 Videos are now available on the CITT website thanks to Thomas Ertlmaier and* Rainer von Ammon.They write: ” It took some time, mainly the weekends, to get the videos edited and processed while working on a normal everyday [...]

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

1 More Discussions You Might Find Interesting

1. Virtualization and Cloud Computing

EPTS: Proposed Event Processing Definitions, September 20, 2006

Tim Bass 08-20-2008 10:47 PM For interested readers, here are the event processing definitions we provided to the (future) EPTS working group on September 20, 2006, coordinated (edited)*by David Luckham and Roy Schulte; adaptive process management (n.) an element of resource and business... (0 Replies)
Discussion started by: Linux Bot
0 Replies
Login or Register to Ask a Question
Test::Fixme(3pm)					User Contributed Perl Documentation					  Test::Fixme(3pm)

NAME
Test::Fixme - check code for FIXMEs. SYNOPSIS
# In a test script like 't/test-fixme.t' use Test::Fixme; run_tests(); # You can also tailor the behaviour. use Test::Fixme; run_tests( where => 'lib', # where to find files to check match => 'TODO', # what to check for skip_all => $ENV{SKIP} # should all tests be skipped ); DESCRIPTION
When coding it is common to come up against problems that need to be addressed but that are not a big deal at the moment. What generally happens is that the coder adds comments like: # FIXME - what about windows that are bigger than the screen? # FIXME - add checking of user priviledges here. Test::Fixme allows you to add a test file that ensures that none of these get forgotten in the module. Arguments By default run_tests will search for 'FIXME' in all the files it can find in the project. You can change these defaults by using 'where' or 'match' as follows: run_tests( where => 'lib', # just check the modules. match => 'TODO' # look for things that are not done yet. ); where Specifies where to search for files. This can be a scalar containing a single directory name, or it can be a listref containing multiple directory names. match Expression to search for within the files. This may be a simple string, or a qr//-quoted regular expression. For example: match => qr/[T]ODO|[F]IXME|[B]UG/, filename_match Expression to filter file names. This should be a qr//-quoted regular expression. For example: match => qr/.(:pm|pl)$/, would only match .pm and .pl files under your specified directory. HINTS
If you want to match something other than 'FIXME' then you may find that the test file itself is being caught. Try doing this: run_tests( match => 'TO'.'DO' ); You may also wish to suppress the tests - try this: use Test::Fixme; run_tests( skip_all => $ENV{SKIP_TEST_FIXME} ); You can only run run_tests once per file. Please use several test files if you want to run several different tests. SEE ALSO
Devel::FIXME AUTHOR
Edmund von der Burg <evdb@ecclestoad.co.uk> Please let me know if you have any comments or suggestions. <http://ecclestoad.co.uk/> ACKNOWLEDGMENTS
Dave O'Neill added support for 'filename_match' and also being able to pass a list of several directories in the 'where' argument. Many thanks. LICENSE
Copryight (C) 2008 Edmund von der Burg "<evdb@ecclestoad.co.uk"> This library is free software . You can redistribute it and/or modify it under the same terms as perl itself. perl v5.10.0 2009-03-12 Test::Fixme(3pm)