Call for a New OWASP Thailand Chapter Leader


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Complex Event Processing RSS News Call for a New OWASP Thailand Chapter Leader
# 1  
Old 01-16-2009
Call for a New OWASP Thailand Chapter Leader

Tim Bass
01-15-2009 09:50 PM


Source...
Login or Register to Ask a Question

Previous Thread | Next Thread

3 More Discussions You Might Find Interesting

1. What is on Your Mind?

Guido van Rossum resigns as Python Leader...

Yup it's true: Transfer of power This will put Python development in disarray. Which reminded me of this thread I posted some time ago: https://www.unix.com/what-is-on-your-mind-/249767-has-python-lost-plot.html MadeInGermany's post 3 is probably one of the reasons but not quoted.... (1 Reply)
Discussion started by: wisecracker
1 Replies

2. UNIX for Dummies Questions & Answers

Generating key values for leader records

All, I have a file with text as shown below. I want the o/p file with generated values in the first column as shown in the o/p file. Pls note that the size of my file is 6 GB. How do i do this ? Input file 999999abcdef 999999ghijkl 999999mnopq 777777rosesarered 777777skyisblue Output... (1 Reply)
Discussion started by: ajfaq
1 Replies

3. Programming

Why process leader can not call setsid()

Why process leader can not call setsid() (2 Replies)
Discussion started by: chenhao_no1
2 Replies
Login or Register to Ask a Question
TAP::Parser::Source(3pm)				 Perl Programmers Reference Guide				  TAP::Parser::Source(3pm)

NAME
TAP::Parser::Source - Stream output from some source VERSION
Version 3.17 SYNOPSIS
use TAP::Parser::Source; my $source = TAP::Parser::Source->new; my $stream = $source->source(['/usr/bin/ruby', 'mytest.rb'])->get_stream; DESCRIPTION
Takes a command and hopefully returns a stream from it. METHODS
Class Methods "new" my $source = TAP::Parser::Source->new; Returns a new "TAP::Parser::Source" object. Instance Methods "source" my $source = $source->source; $source->source(['./some_prog some_test_file']); # or $source->source(['/usr/bin/ruby', 't/ruby_test.rb']); Getter/setter for the source. The source should generally consist of an array reference of strings which, when executed via &IPC::Open3::open3, should return a filehandle which returns successive rows of TAP. "croaks" if it doesn't get an arrayref. "get_stream" my $stream = $source->get_stream; Returns a TAP::Parser::Iterator stream of the output generated by executing "source". "croak"s if there was no command found. Must be passed an object that implements a "make_iterator" method. Typically this is a TAP::Parser instance. "merge" my $merge = $source->merge; Sets or returns the flag that dictates whether STDOUT and STDERR are merged. SUBCLASSING
Please see "SUBCLASSING" in TAP::Parser for a subclassing overview. Example package MyRubySource; use strict; use vars '@ISA'; use Carp qw( croak ); use TAP::Parser::Source; @ISA = qw( TAP::Parser::Source ); # expect $source->(['mytest.rb', 'cmdline', 'args']); sub source { my ($self, $args) = @_; my ($rb_file) = @$args; croak("error: Ruby file '$rb_file' not found!") unless (-f $rb_file); return $self->SUPER::source(['/usr/bin/ruby', @$args]); } SEE ALSO
TAP::Object, TAP::Parser, TAP::Parser::Source::Perl, perl v5.12.1 2010-04-26 TAP::Parser::Source(3pm)