Group
Extension

Matches 1354

Perl6-Bible ( A/AU/AUTRIJUS/Perl6-Bible-0.30.tar.gz, AUTRIJUS, 2006; MetaCPAN )
Perl6-Bible/lib/Perl6/Bible/E04.pod ( view source; MetaCPAN )
nce

         INCLUSIVE OR             ||                     or
         EXCLUSIVE OR             ~~                    xor
          DEFINED OR              //                    err

But why call i
Quantum-ClebschGordan ( D/DA/DAVIDRW/Quantum-ClebschGordan-0.01.tar.gz, DAVIDRW, 2006; MetaCPAN )
Quantum-ClebschGordan/lib/Quantum/ClebschGordan.pm ( view source; MetaCPAN )
 of the (j1,j2,m,m1,m2,j) values;

Returns a list of Quantum::ClebschGordan objects based on the given (j1,j2,m,m1,m2,j) values for the current object. If any of those values are unset, then there wil
Perl6-Bible ( A/AU/AUTRIJUS/Perl6-Bible-0.30.tar.gz, AUTRIJUS, 2006; MetaCPAN )
Perl6-Bible/lib/Perl6/Bible/S22.pod ( view source; MetaCPAN )
it's all just "perl 6" regardless of the runtime they are going to use on the system.


[foo.p6]
given (use (perl5:DBI | java:JDBC)) {
    when /perl5/ { ... }
    when /java/ { ... }
};

[foo.p6o]
- 
LJ-Simple ( S/SI/SIMES/LJ-Simple-0.15.tar.gz, SIMES, 2006; MetaCPAN )
LJ-Simple/Simple.pm ( view source; MetaCPAN )
es_out,time()-$timestart,0);
    return 0;
  }

  # We did!
  # Now to populate the hash we were given (if asked to)
  if (defined $req_hash) {
    %{$req_hash}=();
    my ($k,$v);
    while(($k,$v)=e
WWW-Kontent ( B/BR/BRENTDAX/WWW-Kontent-0.02.tar.gz, BRENTDAX, 2005; MetaCPAN )
WWW-Kontent/WWW/Kontent/Class/User.pm ( view source; MetaCPAN )
 everything else deleted entirely.
					my $name = lc $_<kontent:title>;
					$name ~~ s:g/<[ _]>+/_/;
					$name ~~ s:g/\W//;
					$page.name = $name;
				}
				
				if %p<action> eq 'save' {
					$r
WWW-Kontent ( B/BR/BRENTDAX/WWW-Kontent-0.02.tar.gz, BRENTDAX, 2005; MetaCPAN )
WWW-Kontent/WWW/Kontent/Renderer/XML.pm ( view source; MetaCPAN )
 {
		temp our $x = $x * 10;
		for *$contents {
			take "<!--\n {++$x}: {ref $_} -->";
			
			if $_ ~~ Str {
				take "<![CDATA[$_]]>";
			}
			else {
				take "<!-- first: {ref $_[0]} -->";
				take $
		take " $k='$v'";
				}
			}
			
			if @.children {
				take ">";
				for @.children {
					if $_ ~~ Str {
						take "<![CDATA[$_]]>";
					}
					else {
						take $_.process_xml();
					}
				}
		
WWW-Kontent ( B/BR/BRENTDAX/WWW-Kontent-0.02.tar.gz, BRENTDAX, 2005; MetaCPAN )
WWW-Kontent/WWW/Kontent/Class/Kode.pm ( view source; MetaCPAN )
.page;
						
						my $name = lc $.revision.attributes<kontent:title>;
						$name ~~ s:g/<[ _]>+/_/;
						$name ~~ s:g/\W//;
						$page.name = $name;
					}
					$rev.commit();
				}
			}
			else 
WWW-Kontent ( B/BR/BRENTDAX/WWW-Kontent-0.02.tar.gz, BRENTDAX, 2005; MetaCPAN )
WWW-Kontent/WWW/Kontent/Class/Setting.pm ( view source; MetaCPAN )
_<kontent:title> = lc $p<title> // ~$_<kontent:title>;
					$_<kontent:title> ~~ s:g/<[ _]>+/_/;
					$_<kontent:title> ~~ s:g/\W//;
					
					my $page=$rev.page;
					$page.name = $_<kontent:title>;
File-System ( H/HA/HANENKAMP/File-System-1.16.tar.gz, HANENKAMP, 2005; MetaCPAN )
File-System/lib/File/System/Real.pm ( view source; MetaCPAN )
ry is assumed for the value C<root>. All files returned by the file system will be rooted at the given (or assumed) point.

=cut

sub new {
	my $class = shift;
	my %args  = @_;

	$args{root} ||= '.';
Msql-Mysql-modules ( J/JW/JWIED/Msql-Mysql-modules-1.2219.tar.gz, JWIED, 2001; MetaCPAN )
Msql-Mysql-modules/lib/ExtUtils/PerlPP.pm ( view source; MetaCPAN )
heir replacements are:

    ~~a~~		$c->{'a'}
    ~~b~~		$c->{'b'}
    ~~a->b~~		$c->{'a'}->{'b'}
    ~~a->e~~		$c->{'a'}->{'e'}
    ~~a->1~~		$c->{'a'}->[1]
    ~~a->1->b~~         $c->{'a'}->[1]->{'b
idea is obvious. Real world examples might be:

    my $config_file = "~~etc_dir~~/configuration";
    my $VERSION = "~~version~~";

Preprocessor variables need not be scalar values: If a variable con
tern being
replaced, for example, if C<$ppp->{'config'}->{'bar'}> has the value
C<\&foo>, then C<~~bar~~> will be replaced with the result of

    foo($ppp, "bar");

Arguments are not yet supported.

Class-LazyLoad ( R/RK/RKINYON/Class-LazyLoad-0.04.tar.gz, RKINYON, 2005; MetaCPAN )
Class-LazyLoad/lib/Class/LazyLoad.pm ( view source; MetaCPAN )
$name }  = \&$subname;

            $lazyloads{ $pkg }{ $name } = $func;
        }

        return ~~1;
    }

    sub unlazyload
    {
        my $pkg = shift;

        foreach my $name ( keys %{ $la
 delete $lazyloads{ $pkg }{ $name };
        }

        delete $lazyloads{ $pkg };

        return ~~1;
    }

    sub _build
    {
        my @x = @{$_[0]};

        my $func = shift @x;
        $_[0
_build() failed to build a new object\n"
            if ref($_[0]) eq __PACKAGE__;

        return ~~1;
    }

    sub lazyload_one
    {
        my ($pkg, $name, @args) = @_;

        die "Must pass 
String-Divert ( R/RS/RSE/String-Divert-0.96.tar.gz, RSE, 2005; MetaCPAN )
String-Divert/Divert.pod ( view source; MetaCPAN )
>
activated diversions. If C<$num> is C<0>, deactivates all activated
diversions. If C<$name> is given (i.e. the argument is not numeric), it
deactivates all last activated diversion up to and includi
CGI-Application-Framework ( R/RD/RDICE/CGI-Application-Framework-0.26.tar.gz, RDICE, 2005; MetaCPAN )
CGI-Application-Framework/lib/CGI/Application/Framework.pm ( view source; MetaCPAN )
orrect:

    (0, undef) --> Unknown user
    (0, $user) --> user was found, incorrect password given
    (1, $user) --> user was found, password given correct


=item _relogin_authenticate

This metho
orrect:

    (0, undef) --> Unknown user
    (0, $user) --> user was found, incorrect password given
    (1, $user) --> user was found, password given correct

=item _login_profile

This is a Data::Fo
WWW-Kontent ( B/BR/BRENTDAX/WWW-Kontent-0.02.tar.gz, BRENTDAX, 2005; MetaCPAN )
WWW-Kontent/WWW/Kontent/Hash.pm ( view source; MetaCPAN )
hash.

=cut

sub cmp_hash($hash, $module, *@data) returns Str is export {
	my $algorithm = ~($hash ~~ /^(\w+):/);
	return $hash eq gen_hash($module, :algorithm($algorithm), *@data);
}

=back 4

=head1
WWW-Kontent ( B/BR/BRENTDAX/WWW-Kontent-0.02.tar.gz, BRENTDAX, 2005; MetaCPAN )
WWW-Kontent/WWW/Kontent/Store/NarrowDBI/Revs.pm ( view source; MetaCPAN )
 :sth(\%:sth));
		
		# Copy all but the rev: keys.
		for %.attributes.kv -> $k, $v {
			next if $k ~~ /^rev:/;
			$draft.attributes{$k} = $v;
		}
		
		return $draft;
	}
	
	method pool($module) {
		ret
WWW-Kontent ( B/BR/BRENTDAX/WWW-Kontent-0.02.tar.gz, BRENTDAX, 2005; MetaCPAN )
WWW-Kontent/WWW/Kontent/Parser/Unparsed.pm ( view source; MetaCPAN )
s governing the design of Kontent renderers ensure that the 
text will be outputted precisely as given (except perhaps for some line 
wrapping).

=head1 SEE ALSO

L<WWW::Kontent>, L<WWW::Kontent::Foun
Document-Manager ( B/BR/BRYCE/Document-Manager-0.35.tar.gz, BRYCE, 2005; MetaCPAN )
Document-Manager/lib/Document/Repository.pm ( view source; MetaCPAN )
does not exist.

You must specify the $doc_id to be looked up.  Optionally, the $doc_path
may be given (saves the lookup time if you have already calculated it).

=cut

sub current_revision {
    my $
Ekahau ( G/GI/GIFF/Ekahau-0.001.tar.gz, GIFF, 2005; MetaCPAN )
Ekahau/Ekahau/Base.pm ( view source; MetaCPAN )
ed with a list of properties.
The special property C<Tag> will be used to set the command tag if
given (otherwise a tag will be generated).  Other properties will be
sent along in the Ekahau request. 
  The one exception is the special property C<Tag>, which
will be used to set the command tag if given (otherwise a tag will be
generated).

=cut

sub request_device_properties
{
    my $self = shift;
  The one exception is the special property C<Tag>, which
will be used to set the command tag if given (otherwise a tag will be
generated).

=cut

sub request_location_context
{
    my $self = shift;
Palm-Doc ( C/CP/CPB/Palm-Doc-1.19.tar.gz, CPB, 2005; MetaCPAN )
Palm-Doc/Doc.pm ( view source; MetaCPAN )
} = undef;
	$self->{sort} = undef;
	$self->{records} = [];

	return $self;
}

# determine if the given (raw) record is a Doc header record and fill in the
# record with appropriate fields if it is.
su
Class-HPLOO ( G/GM/GMPASSOS/Class-HPLOO-0.23.tar.gz, GMPASSOS, 2005; MetaCPAN )
Class-HPLOO/lib/Class/HPLOO.pm ( view source; MetaCPAN )
k = $1 ;
      my $dt = substr($data , 0 , pos($data)) . $blk . $2 ;
      my $ln = ($dt =~ tr~\n~~s) + $line_init ;
      "$blk#line $ln\n";
    /egsix ;
  }
                                   

Powered by Groonga
Maintained by Kenichi Ishigaki <ishigaki@cpan.org>. If you find anything, submit it on GitHub.