Group
Extension

Matches 1309

ODF-lpOD ( A/AB/ABEVERLEY/ODF-lpOD-2.001.tar.gz, ABEVERLEY, 2024; MetaCPAN )
ODF-lpOD/lib/ODF/lpOD/Tutorial.pod ( view source; MetaCPAN )
{
                    my $cell = $table->get_cell($i, $j);
                    if ($cell->get_type ~~ $filter) {
                        $count++;
                        $amount += $cell->get_value;
            }
            }
        say "Found $amount in $count numeric cells";

[ 2024 Note: The ~~ operator was deprecated in Perl 5.38.1 and will be removed in the future,
so the examples should b
               my $cell = $row->get_cell($j) or last CELL;
                    if ($cell->get_type ~~ $filter) {
                        $count++;
                        $amount += $cell->get_value;
ODF-lpOD ( A/AB/ABEVERLEY/ODF-lpOD-2.001.tar.gz, ABEVERLEY, 2024; MetaCPAN )
ODF-lpOD/lpOD/TextElement.pm ( view source; MetaCPAN )
         return wantarray ? $start : ($start, $end);
                }

        my $tag;
        given ($opt{role})
                {
                when (undef)
                        {
           
defined $t;
                    }
                else
                    {
                    given ($node->get_tag)
                        {
                        when ('text:tab')
            
      }
        my $tag;
        my %attr = $opt{attributes} ? %{$opt{attributes}} : ();
        given ($opt{type})
                {
                when (["lexical", "alphabetical"])
               
Promises ( Y/YA/YANICK/Promises-1.05.tar.gz, YANICK, 2025; MetaCPAN )
Promises/lib/Promises/Cookbook/ScalaFuturesComparison.pod ( view source; MetaCPAN )
              fetch( $page->image_links->[0] );
            },
            sub {
                given ( $_[0] ) {
                    when ('connection_failed') {
                        return fetch
Zonemaster-LDNS ( Z/ZN/ZNMSTR/Zonemaster-LDNS-5.0.0.tar.gz, ZNMSTR, 2025; MetaCPAN )
Zonemaster-LDNS/ldns/ldns/dnssec_verify.h ( view source; MetaCPAN )
acket had an empty ANSWER
 *                          section
 * \param[out] match On match, the given (reference to a) pointer will be set 
 *                  to point to the matching nsec resource 
Zonemaster-LDNS ( Z/ZN/ZNMSTR/Zonemaster-LDNS-5.0.0.tar.gz, ZNMSTR, 2025; MetaCPAN )
Zonemaster-LDNS/ldns/ldns/rr_functions.h ( view source; MetaCPAN )
 the soa serial to the number of 
 * seconds since unix epoch (1-1-1970 00:00). 
 * When data is given (i.e. the function is called via
 * ldns_rr_soa_increment_func_int), it is used as the current ti
 serial to the current date
 * succeeded by a two digit iteration (datecounter).
 * When data is given (i.e. the function is called via
 * ldns_rr_soa_increment_func_int), it is used as the current ti
Zonemaster-LDNS ( Z/ZN/ZNMSTR/Zonemaster-LDNS-5.0.0.tar.gz, ZNMSTR, 2025; MetaCPAN )
Zonemaster-LDNS/ldns/ldns/buffer.h ( view source; MetaCPAN )
te_at(buffer, buffer->_position, data, count);
	buffer->_position += count;
}

/**
 * copies the given (null-delimited) string to the specified position at the buffer
 * \param[in] buffer the buffer
 
at, const char *str)
{
	ldns_buffer_write_at(buffer, at, str, strlen(str));
}

/**
 * copies the given (null-delimited) string to the current position at the buffer
 * \param[in] buffer the buffer
 * 
r *buffer, const char *str)
{
	ldns_buffer_write(buffer, str, strlen(str));
}

/**
 * copies the given (null-delimited) string to the current position at the buffer
 * increasing the capacity if neces
Zonemaster-LDNS ( Z/ZN/ZNMSTR/Zonemaster-LDNS-5.0.0.tar.gz, ZNMSTR, 2025; MetaCPAN )
Zonemaster-LDNS/ldns/ldns/dnssec_sign.h ( view source; MetaCPAN )
 be marked and should specifically 
 * be taken into account separately.
 *
 * When glue_list is given (not NULL), in the process of marking the names, all
 * glue resource records will be pushed to t
Crop-Config ( O/OC/OCTAVIANI/Crop-Config-0.1.25.tar.gz, OCTAVIANI, 2025; MetaCPAN )
Crop-Config/lib/Crop/Object/Warehouse/Pg.pm ( view source; MetaCPAN )
in = {@filter};
	my $class = ref $self || $self;
	
	for my $field (keys %{$in}) {
		next if $field ~~ KEYWORDS;

		for (split ' OR ', $field) {
		    return warn "OBJECT|ALERT: Unknown attribute: $obj
Koha-Contrib-Sudoc ( F/FR/FREDERICD/Koha-Contrib-Sudoc-2.47.tar.gz, FREDERICD, 2024; MetaCPAN )
Koha-Contrib-Sudoc/share/lib/Retro.pm ( view source; MetaCPAN )
_tags = map { sprintf("%03d", $_) } ( 1..999 );
    for my $tag (@all_tags) {
        next if $tag ~~ @tags || $tag == '410'; # On passe, déjà traité plus haut
        my @fields = $sudoc->field($t
 sub {
    my ($self, $record) = @_;

    # Suppression des champs SUDOC dont on ne veut pas dans le catalogue
    $record->fields( [ grep { not $_->tag ~~ @todelete } @{$record->fields} ] );
};


1;
Sidef ( T/TR/TRIZEN/Sidef-24.11.tar.gz, TRIZEN, 2024; MetaCPAN )
Sidef/lib/Sidef/Object/Object.pod ( view source; MetaCPAN )
t

=head2 |>

    a |> b

Returns the

=cut

=head2 ||

    a || b

Returns the

=cut

=head2 ~~

    a ~~ b

Returns the

Aliases: I<smartmatch>

=cut

=head2 ⫶

    a ⫶ b

Returns the

=cut

=he
IO-Socket-SSL ( S/SU/SULLR/IO-Socket-SSL-2.094.tar.gz, SULLR, 2025; MetaCPAN )
IO-Socket-SSL/lib/IO/Socket/SSL/Intercept.pm ( view source; MetaCPAN )
ert,[ $ident ]) >>

This clones the given certificate.
An ident as the key into the cache can be given (like C<host:port>), if not it
will be created from the properties of the original certificate.
I
PPI ( M/MI/MITHALDU/PPI-1.283.tar.gz, MITHALDU, 2025; MetaCPAN )
PPI/lib/PPI/Singletons.pm ( view source; MetaCPAN )
1 } (
	qw{
	-> ++ -- ** ! ~ + -
	=~ !~ * / % x . << >>
	< > <= >= lt gt le ge
	== != <=> eq ne cmp ~~
	& | ^ && || // .. ...
	? :
	= **= += -= .= *= /= %= x= &= |= ^= <<= >>= &&= ||= //=
	=> <> <<>>
	
PPI ( M/MI/MITHALDU/PPI-1.283.tar.gz, MITHALDU, 2025; MetaCPAN )
PPI/lib/PPI/Token/Operator.pm ( view source; MetaCPAN )
 ++   --   **   !    ~    +    -
  =~   !~   *    /    %    x
  <<   >>   lt   gt   le   ge   cmp  ~~
  ==   !=   <=>  .    ..   ...  ,
  &    |    ^    &&   ||   //
  ?    :    **=  +=   -=   .=   *=
Date-Manip ( S/SB/SBECK/Date-Manip-6.98.tar.gz, SBECK, 2025; MetaCPAN )
Date-Manip/lib/Date/Manip/DM5.pod ( view source; MetaCPAN )
t be given
in the correct order.

The word "in" may be given (prepended in English) to the delta ("in 5 years")
and the word "ago" may be given (appended in English) ("6 months ago").  The
"in" is com
App-SeismicUnixGui ( G/GL/GLLORE/App-SeismicUnixGui-0.87.3.tar.gz, GLLORE, 2025; MetaCPAN )
App-SeismicUnixGui/lib/App/SeismicUnixGui/sunix/shapeNcut/susplit.pm ( view source; MetaCPAN )
 the directory in which perl thinks the code is running.

 2. If a list of su_base_file_names is given (in $DATA_SEISMIC_TXT)
 split files are written to $DATA_SEISMIC_SU.

 3. If an su_base_file_name
XML-Twig ( M/MI/MIROD/XML-Twig-3.54.tar.gz, MIROD, 2025; MetaCPAN )
XML-Twig/Twig.pm ( view source; MetaCPAN )
ll be
wrapped in elements.  C<$1> is wrapped in $tag1, with attributes C<$atts1> if
C<$atts1> is given (as a hashref), C<$2> is wrapped in $tag2...

if $elt is C<< <p>tati tata <b>tutu tati titi</b> t
MQUL ( I/ID/IDOPEREL/MQUL-3.000000.tar.gz, IDOPEREL, 2025; MetaCPAN )
MQUL/lib/MQUL.pm ( view source; MetaCPAN )
ry hash-ref, and returns
true if the document matches the query, false otherwise. If no query
is given (or an empty hash-ref is given), true will be returned (every
document will match an empty query 
Date-Manip ( S/SB/SBECK/Date-Manip-6.98.tar.gz, SBECK, 2025; MetaCPAN )
Date-Manip/lib/Date/Manip/Config.pod ( view source; MetaCPAN )
t 1-7), then the first week
of the year is the one that contains the first occurrence of the DoW
given (X=1 is Monday, X=7 is Sunday).  So, if you want the first week
to be the one that contains the f
XML-Twig ( M/MI/MIROD/XML-Twig-3.54.tar.gz, MIROD, 2025; MetaCPAN )
XML-Twig/lib/XML/Twig.pm ( view source; MetaCPAN )
ll be
wrapped in elements.  C<$1> is wrapped in $tag1, with attributes C<$atts1> if
C<$atts1> is given (as a hashref), C<$2> is wrapped in $tag2...

if C<$elt> is C<< <p>tati tata <b>tutu tati titi</b
Date-Manip ( S/SB/SBECK/Date-Manip-6.98.tar.gz, SBECK, 2025; MetaCPAN )
Date-Manip/lib/Date/Manip/Recur.pod ( view source; MetaCPAN )
f the RecurRange variable. If any
of the dates are passed in, they must be included in the order given
(though it is safe to pass an empty string or undef in for any of them
if you only want to set so

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