Result:
found more than 916 distributions - search limited to the first 2001 files matching your query ( run in 0.589 )


B-C

 view release on metacpan or  search on metacpan

.gdb/dashboard  view on Meta::CPAN

23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
            },
            # prompt
            'prompt': {
                'doc': """Command prompt.
This value is parsed as a Python format string in which `{status}` is expanded
with the substitution of either `prompt_running` or `prompt_not_running`
attributes, according to the target program status. The resulting string must be
a valid GDB prompt, see the command `python print(gdb.prompt.prompt_help())`""",
                'default': '{status}'
            },
            'prompt_running': {
                'doc': """`{status}` when the target program is running.
See the `prompt` attribute. This value is parsed as a Python format string in
which `{pid}` is expanded with the process identifier of the target program.""",
                'default': '\[\e[1;35m\]>>>\[\e[0m\]'
            },
            'prompt_not_running': {
                'doc': '`{status}` when the target program is not running.',
                'default': '\[\e[1;30m\]>>>\[\e[0m\]'
            },
            # divider
            'divider_fill_char_primary': {

.gdb/dashboard  view on Meta::CPAN

261
262
263
264
265
266
267
268
269
270
271
    # render thread status indicator
    if dashboard.is_running():
        pid = dashboard.inferior_pid()
        status = R.prompt_running.format(pid=pid)
    else:
        status = R.prompt_not_running
    # build prompt
    prompt = R.prompt.format(status=status)
    prompt = gdb.prompt.substitute_prompt(prompt)
    return prompt + ' '  # force trailing space
gdb.prompt_hook = custom_prompt

 view all matches for this distribution


B-DeparseTree

 view release on metacpan or  search on metacpan

t/10-core.t  view on Meta::CPAN

159
160
161
162
163
164
165
166
167
168
169
# testit return   => '(return);',         '(return);';
# testit return   => '(CORE::return);',   '(return);';
 
# these are the keywords I couldn't think how to test within this framework
 
my %not_tested = map { $_ => 1} qw(
    __DATA__
    __END__
    __FILE__
    __LINE__
    __PACKAGE__

t/10-core.t  view on Meta::CPAN

221
222
223
224
225
226
227
228
229
230
231
while (<$fh>) {
    next unless /^([+\-])(\w+)$/;
    my ($strength, $key) = ($1, $2);
    $strength = ($strength eq '+') ? 1 : 0;
    $count++;
    if (!$SEEN{$key} && !$not_tested{$key}) {
        diag("keyword '$key' seen in $file, but not tested here!!");
        $pass = 0;
    }
    if (exists $SEEN_STRENGTH{$key} and $SEEN_STRENGTH{$key} != $strength) {
        diag("keyword '$key' strengh as seen in $file doen't match here!!");

 view all matches for this distribution


B-Foreach-Iterator

 view release on metacpan or  search on metacpan

inc/Module/Install/XSUtil.pm  view on Meta::CPAN

505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
    $h_files = +{ map{ $_ => undef } @_ };
}
 
$self->_xs_initialize();
 
my @not_found;
my $h_map = $self->{xsu_header_map} || {};
 
while(my($ident, $path) = each %{$h_files}){
    $path ||= $h_map->{$ident} || File::Spec->join('.', $ident);
    $path   = File::Spec->canonpath($path);
 
    unless($path && -e $path){
        push @not_found, $ident;
        next;
    }
 
    $ToInstall{$path} = File::Spec->join('$(INST_ARCHAUTODIR)', $ident);

inc/Module/Install/XSUtil.pm  view on Meta::CPAN

526
527
528
529
530
531
532
533
534
535
536
        if(@funcs){
            $self->cc_append_to_funclist(@funcs);
        }
    }
 
    if(@not_found){
        die "Header file(s) not found: @not_found\n";
    }
 
    return;
}

 view all matches for this distribution


B-Hooks-AtRuntime

 view release on metacpan or  search on metacpan

ppport.h  view on Meta::CPAN

965
966
967
968
969
970
971
972
973
974
975
976
977
__ASSERT_|5.019007|5.008008|p
ASSERT_CURPAD_ACTIVE|5.008001||Viu
ASSERT_CURPAD_LEGAL|5.008001||Viu
ASSERT_IS_LITERAL|||Viu
ASSERT_IS_PTR|||Viu
assert_not_glob|5.009004||Viu
ASSERT_NOT_PTR|5.035004||Viu
assert_not_ROK|5.008001||Viu
assert_uft8_cache_coherent|5.013003||Viu
assignment_type|5.021005||Viu
ASSUME|5.019006|5.003007|p
atfork_lock|5.007003|5.007003|nu
atfork_unlock|5.007003|5.007003|nu

ppport.h  view on Meta::CPAN

5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
noperl_die|5.021006||vVniu
NORETURN_FUNCTION_END|5.009003||Viu
NORMAL|5.003007||Viu
NOSTR|5.027010||Viu
NO_TAINT_SUPPORT|5.017006||Viu
not_a_number|5.005000||Viu
NOTE3|5.027001||Viu
NOTHING|5.003007||Viu
NOTHING_t8|5.035004||Viu
NOTHING_t8_p8|5.033003||Viu
NOTHING_t8_pb|5.033003||Viu
NOTHING_tb|5.035004||Viu
NOTHING_tb_p8|5.033003||Viu
NOTHING_tb_pb|5.033003||Viu
nothreadhook|5.008000|5.008000|
notify_parser_that_changed_to_utf8|5.025010||Viu
not_incrementable|5.021002||Viu
NOT_IN_PAD|5.005000||Viu
NOT_REACHED|5.019006|5.003007|poVnu
NPOSIXA|5.017003||Viu
NPOSIXA_t8|5.035004||Viu
NPOSIXA_t8_p8|5.033003||Viu

ppport.h  view on Meta::CPAN

10558
10559
10560
10561
10562
10563
10564
10565
10566
10567
10568
WHILEM_t8_pb|5.033003||Viu
WHILEM_tb|5.035004||Viu
WHILEM_tb_p8|5.033003||Viu
WHILEM_tb_pb|5.033003||Viu
WIDEST_UTYPE|5.015004|5.003007|poVnu
win32_croak_not_implemented|5.017006||Vniu
WIN32SCK_IS_STDSCK|5.007001||Viu
win32_setlocale|5.027006||Viu
withinCOUNT|5.031004||Viu
withinCOUNT_KNOWN_VALID|5.033005||Viu
WITH_LC_NUMERIC_SET_TO_NEEDED|5.031003|5.031003|

ppport.h  view on Meta::CPAN

11576
11577
11578
11579
11580
11581
11582
11583
11584
11585
11586
#    include <patchlevel.h>
#  endif
#  if     ! defined(PERL_VERSION)                                               \
     &&   ! defined(PERL_VERSION_MAJOR)                                         \
     && ( ! defined(SUBVERSION) || ! defined(PATCHLEVEL) )
#    include <could_not_find_Perl_patchlevel.h>
#  endif
#endif
 
#ifdef PERL_VERSION_MAJOR
#  define D_PPP_MAJOR  PERL_VERSION_MAJOR

 view all matches for this distribution


B-Hooks-OP-Annotation

 view release on metacpan or  search on metacpan

ppport.h  view on Meta::CPAN

1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
nextchar|||
ninstr|||
no_bareword_allowed|||
no_fh_allowed|||
no_op|||
not_a_number|||
nothreadhook||5.008000|
nuke_stacks|||
num_overflow|||n
offer_nice_chunk|||
oopsAV|||

ppport.h  view on Meta::CPAN

3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
#  if !defined(__PATCHLEVEL_H_INCLUDED__) && !(defined(PATCHLEVEL) && defined(SUBVERSION))
#    define PERL_PATCHLEVEL_H_IMPLICIT
#    include <patchlevel.h>
#  endif
#  if !(defined(PERL_VERSION) || (defined(SUBVERSION) && defined(PATCHLEVEL)))
#    include <could_not_find_Perl_patchlevel.h>
#  endif
#  ifndef PERL_REVISION
#    define PERL_REVISION       (5)
     /* Replace: 1 */
#    define PERL_VERSION        PATCHLEVEL

 view all matches for this distribution


B-Hooks-OP-Check-LeaveEval

 view release on metacpan or  search on metacpan

ppport.h  view on Meta::CPAN

2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
ninstr|||n
no_bareword_allowed|||
no_fh_allowed|||
no_op|||
noperl_die|||vn
not_a_number|||
not_incrementable|||
nothreadhook||5.008000|
notify_parser_that_changed_to_utf8|||
nuke_stacks|||
num_overflow|||n
oopsAV|||

ppport.h  view on Meta::CPAN

2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
watch|||
whichsig_pvn||5.015004|
whichsig_pv||5.015004|
whichsig_sv||5.015004|
whichsig|||
win32_croak_not_implemented|||n
win32_setlocale|||
with_queued_errors|||
wrap_op_checker||5.015008|
write_to_stderr|||
xs_boot_epilog|||

ppport.h  view on Meta::CPAN

3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
#  if !defined(__PATCHLEVEL_H_INCLUDED__) && !(defined(PATCHLEVEL) && defined(SUBVERSION))
#    define PERL_PATCHLEVEL_H_IMPLICIT
#    include <patchlevel.h>
#  endif
#  if !(defined(PERL_VERSION) || (defined(SUBVERSION) && defined(PATCHLEVEL)))
#    include <could_not_find_Perl_patchlevel.h>
#  endif
#  ifndef PERL_REVISION
#    define PERL_REVISION       (5)
     /* Replace: 1 */
#    define PERL_VERSION        PATCHLEVEL

 view all matches for this distribution


B-Hooks-OP-Check-StashChange

 view release on metacpan or  search on metacpan

ppport.h  view on Meta::CPAN

1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
nextchar|||
ninstr|||
no_bareword_allowed|||
no_fh_allowed|||
no_op|||
not_a_number|||
nothreadhook||5.008000|
nuke_stacks|||
num_overflow|||n
offer_nice_chunk|||
oopsAV|||

ppport.h  view on Meta::CPAN

3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
#  if !defined(__PATCHLEVEL_H_INCLUDED__) && !(defined(PATCHLEVEL) && defined(SUBVERSION))
#    define PERL_PATCHLEVEL_H_IMPLICIT
#    include <patchlevel.h>
#  endif
#  if !(defined(PERL_VERSION) || (defined(SUBVERSION) && defined(PATCHLEVEL)))
#    include <could_not_find_Perl_patchlevel.h>
#  endif
#  ifndef PERL_REVISION
#    define PERL_REVISION       (5)
     /* Replace: 1 */
#    define PERL_VERSION        PATCHLEVEL

 view all matches for this distribution


B-Hooks-OP-Check

 view release on metacpan or  search on metacpan

ppport.h  view on Meta::CPAN

2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
ninstr|||n
no_bareword_allowed|||
no_fh_allowed|||
no_op|||
noperl_die|||vn
not_a_number|||
not_incrementable|||
nothreadhook||5.008000|
nuke_stacks|||
num_overflow|||n
oopsAV|||
oopsHV|||

ppport.h  view on Meta::CPAN

2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
watch|||
whichsig_pvn||5.015004|
whichsig_pv||5.015004|
whichsig_sv||5.015004|
whichsig|||
win32_croak_not_implemented|||n
with_queued_errors|||
wrap_op_checker||5.015008|
write_to_stderr|||
xs_boot_epilog|||
xs_handshake|||vn

ppport.h  view on Meta::CPAN

3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
#  if !defined(__PATCHLEVEL_H_INCLUDED__) && !(defined(PATCHLEVEL) && defined(SUBVERSION))
#    define PERL_PATCHLEVEL_H_IMPLICIT
#    include <patchlevel.h>
#  endif
#  if !(defined(PERL_VERSION) || (defined(SUBVERSION) && defined(PATCHLEVEL)))
#    include <could_not_find_Perl_patchlevel.h>
#  endif
#  ifndef PERL_REVISION
#    define PERL_REVISION       (5)
     /* Replace: 1 */
#    define PERL_VERSION        PATCHLEVEL

 view all matches for this distribution


B-Hooks-OP-PPAddr

 view release on metacpan or  search on metacpan

ppport.h  view on Meta::CPAN

2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
ninstr|||n
no_bareword_allowed|||
no_fh_allowed|||
no_op|||
noperl_die|||vn
not_a_number|||
not_incrementable|||
nothreadhook||5.008000|
nuke_stacks|||
num_overflow|||n
oopsAV|||
oopsHV|||

ppport.h  view on Meta::CPAN

2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
watch|||
whichsig_pvn||5.015004|
whichsig_pv||5.015004|
whichsig_sv||5.015004|
whichsig|||
win32_croak_not_implemented|||n
with_queued_errors|||
wrap_op_checker||5.015008|
write_to_stderr|||
xs_boot_epilog|||
xs_handshake|||vn

ppport.h  view on Meta::CPAN

3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
#  if !defined(__PATCHLEVEL_H_INCLUDED__) && !(defined(PATCHLEVEL) && defined(SUBVERSION))
#    define PERL_PATCHLEVEL_H_IMPLICIT
#    include <patchlevel.h>
#  endif
#  if !(defined(PERL_VERSION) || (defined(SUBVERSION) && defined(PATCHLEVEL)))
#    include <could_not_find_Perl_patchlevel.h>
#  endif
#  ifndef PERL_REVISION
#    define PERL_REVISION       (5)
     /* Replace: 1 */
#    define PERL_VERSION        PATCHLEVEL

 view all matches for this distribution


B-Hooks-Parser

 view release on metacpan or  search on metacpan

ppport.h  view on Meta::CPAN

1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
ninstr|||n
no_bareword_allowed|||
no_fh_allowed|||
no_op|||
noperl_die|||vn
not_a_number|||
not_incrementable|||
nothreadhook||5.008000|
nuke_stacks|||
num_overflow|||n
oopsAV|||
oopsHV|||

ppport.h  view on Meta::CPAN

2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
watch|||
whichsig_pvn||5.015004|
whichsig_pv||5.015004|
whichsig_sv||5.015004|
whichsig|||
win32_croak_not_implemented|||n
with_queued_errors|||
wrap_op_checker||5.015008|
write_to_stderr|||
xs_boot_epilog|||
xs_handshake|||vn

ppport.h  view on Meta::CPAN

3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
#  if !defined(__PATCHLEVEL_H_INCLUDED__) && !(defined(PATCHLEVEL) && defined(SUBVERSION))
#    define PERL_PATCHLEVEL_H_IMPLICIT
#    include <patchlevel.h>
#  endif
#  if !(defined(PERL_VERSION) || (defined(SUBVERSION) && defined(PATCHLEVEL)))
#    include <could_not_find_Perl_patchlevel.h>
#  endif
#  ifndef PERL_REVISION
#    define PERL_REVISION       (5)
     /* Replace: 1 */
#    define PERL_VERSION        PATCHLEVEL

 view all matches for this distribution


B-Hooks-XSUB-CallAsOp

 view release on metacpan or  search on metacpan

ppport.h  view on Meta::CPAN

1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
nextchar|||
ninstr|||
no_bareword_allowed|||
no_fh_allowed|||
no_op|||
not_a_number|||
nothreadhook||5.008000|
nuke_stacks|||
num_overflow|||n
offer_nice_chunk|||
oopsAV|||

ppport.h  view on Meta::CPAN

3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
#  if !defined(__PATCHLEVEL_H_INCLUDED__) && !(defined(PATCHLEVEL) && defined(SUBVERSION))
#    define PERL_PATCHLEVEL_H_IMPLICIT
#    include <patchlevel.h>
#  endif
#  if !(defined(PERL_VERSION) || (defined(SUBVERSION) && defined(PATCHLEVEL)))
#    include <could_not_find_Perl_patchlevel.h>
#  endif
#  ifndef PERL_REVISION
#    define PERL_REVISION       (5)
     /* Replace: 1 */
#    define PERL_VERSION        PATCHLEVEL

 view all matches for this distribution


B-OPCheck

 view release on metacpan or  search on metacpan

ppport.h  view on Meta::CPAN

2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
ninstr|||n
no_bareword_allowed|||
no_fh_allowed|||
no_op|||
noperl_die|||vn
not_a_number|||
not_incrementable|||
nothreadhook||5.008000|
nuke_stacks|||
num_overflow|||n
oopsAV|||
oopsHV|||

ppport.h  view on Meta::CPAN

2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
watch|||
whichsig_pvn||5.015004|
whichsig_pv||5.015004|
whichsig_sv||5.015004|
whichsig|||
win32_croak_not_implemented|||n
with_queued_errors|||
wrap_op_checker||5.015008|
write_to_stderr|||
xs_boot_epilog|||
xs_handshake|||vn

ppport.h  view on Meta::CPAN

3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
#  if !defined(__PATCHLEVEL_H_INCLUDED__) && !(defined(PATCHLEVEL) && defined(SUBVERSION))
#    define PERL_PATCHLEVEL_H_IMPLICIT
#    include <patchlevel.h>
#  endif
#  if !(defined(PERL_VERSION) || (defined(SUBVERSION) && defined(PATCHLEVEL)))
#    include <could_not_find_Perl_patchlevel.h>
#  endif
#  ifndef PERL_REVISION
#    define PERL_REVISION       (5)
     /* Replace: 1 */
#    define PERL_VERSION        PATCHLEVEL

 view all matches for this distribution


B-Tap

 view release on metacpan or  search on metacpan

MANIFEST  view on Meta::CPAN

13
14
15
16
17
18
19
20
21
t/00_compile.t
t/01_simple.t
t/02_entersub.t
t/03_padsv.t
t/05_regexp.t
t/06_not_defined.t
t/CallTrace/01_simple.t
META.yml
MANIFEST

 view all matches for this distribution


B-Utils

 view release on metacpan or  search on metacpan

ppport.h  view on Meta::CPAN

1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
nextchar|||
ninstr|||
no_bareword_allowed|||
no_fh_allowed|||
no_op|||
not_a_number|||
nothreadhook||5.008000|
nuke_stacks|||
num_overflow|||n
offer_nice_chunk|||
oopsAV|||

ppport.h  view on Meta::CPAN

3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
#  if !defined(__PATCHLEVEL_H_INCLUDED__) && !(defined(PATCHLEVEL) && defined(SUBVERSION))
#    define PERL_PATCHLEVEL_H_IMPLICIT
#    include <patchlevel.h>
#  endif
#  if !(defined(PERL_VERSION) || (defined(SUBVERSION) && defined(PATCHLEVEL)))
#    include <could_not_find_Perl_patchlevel.h>
#  endif
#  ifndef PERL_REVISION
#    define PERL_REVISION       (5)
     /* Replace: 1 */
#    define PERL_VERSION        PATCHLEVEL

 view all matches for this distribution


B-Utils1

 view release on metacpan or  search on metacpan

ppport.h  view on Meta::CPAN

2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
ninstr|||n
no_bareword_allowed|||
no_fh_allowed|||
no_op|||
noperl_die|||vn
not_a_number|||
not_incrementable|||
nothreadhook||5.008000|
nuke_stacks|||
num_overflow|||n
oopsAV|||
oopsHV|||

ppport.h  view on Meta::CPAN

2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
watch|||
whichsig_pvn||5.015004|
whichsig_pv||5.015004|
whichsig_sv||5.015004|
whichsig|||
win32_croak_not_implemented|||n
with_queued_errors|||
wrap_op_checker||5.015008|
write_to_stderr|||
xs_boot_epilog|||
xs_handshake|||vn

ppport.h  view on Meta::CPAN

3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
#  if !defined(__PATCHLEVEL_H_INCLUDED__) && !(defined(PATCHLEVEL) && defined(SUBVERSION))
#    define PERL_PATCHLEVEL_H_IMPLICIT
#    include <patchlevel.h>
#  endif
#  if !(defined(PERL_VERSION) || (defined(SUBVERSION) && defined(PATCHLEVEL)))
#    include <could_not_find_Perl_patchlevel.h>
#  endif
#  ifndef PERL_REVISION
#    define PERL_REVISION       (5)
     /* Replace: 1 */
#    define PERL_VERSION        PATCHLEVEL

 view all matches for this distribution


BIE-Data-HDF5

 view release on metacpan or  search on metacpan

ppport.h  view on Meta::CPAN

1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
nextchar|||
ninstr|||
no_bareword_allowed|||
no_fh_allowed|||
no_op|||
not_a_number|||
nothreadhook||5.008000|
nuke_stacks|||
num_overflow|||n
offer_nice_chunk|||
oopsAV|||

ppport.h  view on Meta::CPAN

3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
#  if !defined(__PATCHLEVEL_H_INCLUDED__) && !(defined(PATCHLEVEL) && defined(SUBVERSION))
#    define PERL_PATCHLEVEL_H_IMPLICIT
#    include <patchlevel.h>
#  endif
#  if !(defined(PERL_VERSION) || (defined(SUBVERSION) && defined(PATCHLEVEL)))
#    include <could_not_find_Perl_patchlevel.h>
#  endif
#  ifndef PERL_REVISION
#    define PERL_REVISION       (5)
     /* Replace: 1 */
#    define PERL_VERSION        PATCHLEVEL

 view all matches for this distribution


BIND-SDB-LDAP-Helper

 view release on metacpan or  search on metacpan

t/boilerplate.t  view on Meta::CPAN

2
3
4
5
6
7
8
9
10
11
12
use strict;
use Test::More tests => 3;
 
sub not_in_file_ok {
    my ($filename, %regex) = @_;
    open( my $fh, '<', $filename )
        or die "couldn't open $filename for reading: $!";
 
    my %violated;

t/boilerplate.t  view on Meta::CPAN

27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
    }
}
 
sub module_boilerplate_ok {
    my ($module) = @_;
    not_in_file_ok($module =>
        'the great new $MODULENAME'   => qr/ - The great new /,
        'boilerplate description'     => qr/Quick summary of what the module/,
        'stub function definition'    => qr/function[12]/,
    );
}
 
TODO: {
  local $TODO = "Need to replace the boilerplate text";
 
  not_in_file_ok(README =>
    "The README is used..."       => qr/The README is used/,
    "'version information here'"  => qr/to provide version information/,
  );
 
  not_in_file_ok(Changes =>
    "placeholder date/time"       => qr(Date/time)
  );
 
  module_boilerplate_ok('lib/BIND/SDB/LDAP/Helper.pm');

 view all matches for this distribution


BPM-Engine

 view release on metacpan or  search on metacpan

inc/Test/More.pm  view on Meta::CPAN

622
623
624
625
626
627
628
629
630
631
632
{
    $tb->_unoverload_str( \$e1, \$e2 );
 
    # Either they're both references or both not.
    my $same_ref = !( !ref $e1 xor !ref $e2 );
    my $not_ref = ( !ref $e1 and !ref $e2 );
 
    if( defined $e1 xor defined $e2 ) {
        $ok = 0;
    }
    elsif( !defined $e1 and !defined $e2 ) {

inc/Test/More.pm  view on Meta::CPAN

637
638
639
640
641
642
643
644
645
646
647
    $ok = 0;
}
elsif( $same_ref and( $e1 eq $e2 ) ) {
    $ok = 1;
}
elsif($not_ref) {
    push @Data_Stack, { type => '', vals => [ $e1, $e2 ] };
    $ok = 0;
}
else {
    if( $Refs_Seen{$e1} ) {

 view all matches for this distribution


BSD-Ipfwgen

 view release on metacpan or  search on metacpan

Ipfwgen.pm  view on Meta::CPAN

30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
require Exporter;
 
@ISA = qw(Exporter);
@EXPORT = qw(
        outside leaf
        us not_us consolidate symmetric
        count_by_interface count_by_address
        count_by_udp count_by_tcp
        no_looping no_spoofing_us no_spoofing_by_us no_leaf_spoofing
        generate
        drop_unwanted
        tcp_from_rules udp_from_rules
        tcp_to_rules udp_to_rules
        from_net_rules to_net_rules
        to_me_rules from_me_rules
        not_to_me_rules not_from_me_rules
        in_interface_rules out_interface_rules
        from_us to_us
        );
 
my @from_us;
my @to_us;
my @outside;
my @leaf;
my @us;
my @not_us;
my @symmetric;
my @interesting;
my %consolidate;
my $if0; # first interface

Ipfwgen.pm  view on Meta::CPAN

137
138
139
140
141
142
143
144
145
146
147
sub leaf { push(@leaf, @_); };
 
# networks
sub interesting { push(@interesting, @_); watch(@_); }
sub us { push(@us, @_); watch(@_); };
sub not_us { push(@not_us, @_); watch(@_); };
sub symmetric { push(@symmetric, @_); watch(@_); };
sub from_us { push(@from_us, @_); watch(@_); };
sub to_us { push(@to_us, @_); watch(@_); };
 
sub mark_addresses

Ipfwgen.pm  view on Meta::CPAN

316
317
318
319
320
321
322
323
324
325
326
        return @r;
}
 
sub get_routes
{
        for my $net (@us, @symmetric, @interesting, @not_us, @from_us, @to_us) {
                my ($base, $mask) = get_netmask($net);
                if ($mask >= 24) {
                        $base =~ m/^(\d+\.\d+\.\d+)\.\d+$/
                                or die "parse dest $net ($base)";
                        $track_net{$1} = $net;

Ipfwgen.pm  view on Meta::CPAN

390
391
392
393
394
395
396
397
398
399
400
401
my $begun = 0;
 
my @from_me_rules;
my @to_me_rules;
 
my @not_from_me_rules;
my @not_to_me_rules;
 
my %count_in;
my %count_out;
my %count_udp_from;
my %count_tcp_from;

Ipfwgen.pm  view on Meta::CPAN

642
643
644
645
646
647
648
649
650
651
652
653
sub from_net_rules { my($net, $rules) = @_; push(@{$from_net_rules{$net}}, clean_rules($rules)); }
sub to_net_rules { my($net, $rules) = @_; push(@{$to_net_rules{$net}}, clean_rules($rules)); }
 
sub from_me_rules { my($rules) = @_; push(@from_me_rules, clean_rules($rules)); }
sub to_me_rules { my($rules) = @_; push(@to_me_rules, clean_rules($rules)); }
sub not_from_me_rules { my($rules) = @_; push(@not_from_me_rules, clean_rules($rules)); }
sub not_to_me_rules { my($rules) = @_; push(@not_to_me_rules, clean_rules($rules)); }
 
#sub modload
#       modload /lkm/ipfw_mod.o
#       XXX
#

Ipfwgen.pm  view on Meta::CPAN

755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
push(@rules, "=rulenum 10000");
push(@rules, "=gap");
 
# recv only happens on packets that we didn't generate
if (@from_us_fules || @not_from_me_rules) {
        push(@rules,
                "=skipto done-from-us all from any to any in recv =IN",
                @from_me_rules,
                "=skipto done-not-from-us all from any to any",
                "=label done-from-us",
                @not_from_me_rules,
                "=label done-not-from-us");
        push(@rules, "=gap");
}
 
if (@to_me_rules || @not_to_me_rules) {
        push(@rules,
                "=skipto done-to-us all from any to =ME",
                @not_to_me_rules,
                "=skipto done-not-to-us all from any to any",
                "=label done-to-us",
                @to_me_rules,
                "=label done-not-to-us");
        push(@rules, "=gap");

Ipfwgen.pm  view on Meta::CPAN

896
897
898
899
900
901
902
903
904
905
906
                $y =~ s/=TOUS/$n/g;
                push(@n, $y);
        }
} elsif ($x =~ /=US/) {
        my $l2 = $genlabel++;
        for my $n (@not_us) {
                my $y = remove_action($x);
                $y =~ s/=US/$n/g;
                push(@n, "=skipto $l2 $y");
        }
        for my $n (@us) {

Ipfwgen.pm  view on Meta::CPAN

995
996
997
998
999
1000
1001
1002
1003
1004
1005
sub generate
{
        my (@opt) = @_;
 
        # don't allow others to pretend that they are us
        unshift(@not_from_me_rules,
                "=skiprule all from any to any in recv 'lo*'",
                "=deny_log all from =ME to any # ns-op");
 
        my @legal = qw(
                LOG_DENIES

 view all matches for this distribution


BSD-Itimer

 view release on metacpan or  search on metacpan

Itimer.xs  view on Meta::CPAN

24
25
26
27
28
29
30
31
32
33
34
#include <sys/time.h>
 
static char *rcs_id = "$Id: Itimer.xs,v 1.2 1999/07/28 02:26:50 hag Exp $";
 
static int
not_here(s)
char *s;
{
    croak("%s not implemented on this architecture", s);
    return -1;
}

Itimer.xs  view on Meta::CPAN

43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
    case 'I':
        if (strEQ(name, "ITIMER_PROF"))
#ifdef ITIMER_PROF
            return ITIMER_PROF;
#else
            goto not_there;
#endif
        if (strEQ(name, "ITIMER_REAL"))
#ifdef ITIMER_REAL
            return ITIMER_REAL;
#else
            goto not_there;
#endif
        if (strEQ(name, "ITIMER_REALPROF"))
#ifdef ITIMER_REALPROF
            return ITIMER_REALPROF;
#else
            goto not_there;
#endif
        if (strEQ(name, "ITIMER_VIRTUAL"))
#ifdef ITIMER_VIRTUAL
            return ITIMER_VIRTUAL;
#else
            goto not_there;
#endif
        break;
    }
    errno = EINVAL;
    return 0;
 
not_there:
    errno = ENOENT;
    return 0;
}
 
MODULE = BSD::Itimer            PACKAGE = BSD::Itimer

 view all matches for this distribution


BSD-Process

 view release on metacpan or  search on metacpan

Process.pm  view on Meta::CPAN

66
67
68
69
70
71
72
73
74
75
76
parent_waiting           => 'ppwait',
started_profiling        => 'profil',
stopped_profiling        => 'stopprof',
id_privs_set             => 'sugid',
system_process           => 'system',
single_exit_not_wait     => 'single_exit',
traced_by_debugger       => 'traced',
waited_on_by_other       => 'waited',
working_on_exiting       => 'wexit',
process_called_exec      => 'exec',
kernel_session_flag      => 'kiflag',

Process.pm  view on Meta::CPAN

802
803
804
805
806
807
808
809
810
811
812
=item system_process, system
 
Flag indicating whether the process is a system process. B<F5+>
 
=item single_exit_not_wait, single_exit
 
Flag indicating that threads that are suspended should exit, not
wait. B<F5+>
 
=item traced_by_debugger, traced

 view all matches for this distribution


BSD-Resource

 view release on metacpan or  search on metacpan

Resource.xs  view on Meta::CPAN

202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
#define HAS_SETPRIORITY
#endif
#endif
 
#ifndef HAS_GETPRIORITY
#define _getpriority(a,b)   not_here("getpriority")
#endif
 
#ifndef HAS_GETRLIMIT
#define _getrlimit(a)       not_here("getrlimit")
#endif
 
#ifndef HAS_GETRUSAGE
#define _getrusage(a)       not_here("getrusage")
#endif
 
#ifndef HAS_SETPRIORITY
#define _setpriority(a,b,c) not_here("setpriority")
#endif
 
#ifndef HAS_SETRLIMIT
#define _setrlimit(a,b,c)   not_here("setrlimit")
#endif
 
static int
not_here(s)
char *s;
{
    croak("BSD::Resource::%s not implemented on this architecture", s);
    return -1;
}

Resource.xs  view on Meta::CPAN

241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
    case 'E':
        if (strEQ(name, "EINVAL"))
#ifdef EINVAL
          return EINVAL;
#else
          goto not_there;
#endif
        if (strEQ(name, "ENOENT"))
#ifdef ENOENT
          return ENOENT;
#else
          goto not_there;
#endif
      break;
    case 'P':
        if (strnEQ(name, "PRIO_", 5)) {
            if (strEQ(name, "PRIO_CONTRACT"))
#if defined(PRIO_CONTRACT) || defined(HAS_PRIO_CONTRACT)
                return PRIO_CONTRACT;
#else
                goto not_there;
#endif
            if (strEQ(name, "PRIO_LWP"))
#if defined(PRIO_LWP) || defined(HAS_PRIO_LWP)
                return PRIO_LWP;
#else
                goto not_there;
#endif
            if (strEQ(name, "PRIO_MIN"))
#if defined(PRIO_MIN) || defined(HAS_PRIO_MIN)
                return PRIO_MIN;
#else
                goto not_there;
#endif
            if (strEQ(name, "PRIO_MAX"))
#if defined(PRIO_MAX) || defined(HAS_PRIO_MAX)
                return PRIO_MAX;
#else
                goto not_there;
#endif
            if (strEQ(name, "PRIO_PGRP"))
#if defined(PRIO_PGRP) || defined(HAS_PRIO_PGRP)
                return PRIO_PGRP;
#else
                goto not_there;
#endif
            if (strEQ(name, "PRIO_PROCESS"))
#if defined(PRIO_PROCESS) || defined(HAS_PRIO_PROCESS)
                return PRIO_PROCESS;
#else
                goto not_there;
#endif
            if (strEQ(name, "PRIO_PROJECT"))
#if defined(PRIO_PROJECT) || defined(HAS_PRIO_PROJECT)
                return PRIO_PROJECT;
#else
                goto not_there;
#endif
            if (strEQ(name, "PRIO_SESSION"))
#if defined(PRIO_SESSION) || defined(HAS_PRIO_SESSION)
                return PRIO_SESSION;
#else
                goto not_there;
#endif
            if (strEQ(name, "PRIO_USER"))
#if defined(PRIO_USER) || defined(HAS_PRIO_USER)
                return PRIO_USER;
#else
                goto not_there;
#endif
            if (strEQ(name, "PRIO_USER"))
#if defined(PRIO_USER) || defined(HAS_PRIO_USER)
                return PRIO_USER;
#else
                goto not_there;
#endif
            if (strEQ(name, "PRIO_ZONE"))
#if defined(PRIO_ZONE) || defined(HAS_PRIO_ZONE)
                return PRIO_ZONE;
#else
                goto not_there;
#endif
        }
    goto not_there;
    case 'R':
        if (strnEQ(name, "RLIM", 4)) {
            if (strEQ(name, "RLIMIT_AIO_MEM"))
#if defined(RLIMIT_AIO_MEM) || defined(HAS_RLIMIT_AIO_MEM)
                return RLIMIT_AIO_MEM;
#else
                goto not_there;
#endif
            if (strEQ(name, "RLIMIT_AIO_OPS"))
#if defined(RLIMIT_AIO_OPS) || defined(HAS_RLIMIT_AIO_OPS)
                return RLIMIT_AIO_OPS;
#else
                goto not_there;
#endif
            if (strEQ(name, "RLIMIT_AS"))
#if defined(RLIMIT_AS) || defined(HAS_RLIMIT_AS)
                return RLIMIT_AS;
#else
                goto not_there;
#endif
            if (strEQ(name, "RLIMIT_CORE"))
#if defined(RLIMIT_CORE) || defined(HAS_RLIMIT_CORE)
                return RLIMIT_CORE;
#else
                goto not_there;
#endif
            if (strEQ(name, "RLIMIT_CPU"))
#if defined(RLIMIT_CPU) || defined(HAS_RLIMIT_CPU)
                return RLIMIT_CPU;
#else
                goto not_there;
#endif
            if (strEQ(name, "RLIMIT_DATA"))
#if defined(RLIMIT_DATA) || defined(HAS_RLIMIT_DATA)
                return RLIMIT_DATA;
#else
                goto not_there;
#endif
            if (strEQ(name, "RLIMIT_FREEMEM"))
#if defined(RLIMIT_FREEMEM) || defined(HAS_RLIMIT_FREEMEM)
                return RLIMIT_FREEMEM;
#else
                goto not_there;
#endif
            if (strEQ(name, "RLIMIT_FSIZE"))
#if defined(RLIMIT_FSIZE) || defined(HAS_RLIMIT_FSIZE)
                return RLIMIT_FSIZE;
#else
                goto not_there;
#endif
            if (strEQ(name, "RLIMIT_LOCKS"))
#if defined(RLIMIT_LOCKS) || defined(HAS_RLIMIT_LOCKS)
                return RLIMIT_LOCKS;
#else
                goto not_there;
#endif
            if (strEQ(name, "RLIMIT_MEMLOCK"))
#if defined(RLIMIT_MEMLOCK) || defined(HAS_RLIMIT_MEMLOCK)
                return RLIMIT_MEMLOCK;
#else
                goto not_there;
#endif
            if (strEQ(name, "RLIMIT_MSGQUEUE"))
#if defined(RLIMIT_MSGQUEUE) || defined(HAS_RLIMIT_MSGQUEUE)
                return RLIMIT_MSGQUEUE;
#else
                goto not_there;
#endif
            if (strEQ(name, "RLIMIT_NICE"))
#if defined(RLIMIT_NICE) || defined(HAS_RLIMIT_NICE)
                return RLIMIT_NICE;
#else
                goto not_there;
#endif
            if (strEQ(name, "RLIMIT_NOFILE"))
#if defined(RLIMIT_NOFILE) || defined(HAS_RLIMIT_NOFILE)
                return RLIMIT_NOFILE;
#else
                goto not_there;
#endif
            if (strEQ(name, "RLIMIT_NPROC"))
#if defined(RLIMIT_NPROC) || defined(HAS_RLIMIT_NPROC)
                return RLIMIT_NPROC;
#else
                goto not_there;
#endif
            if (strEQ(name, "RLIMIT_NPTS"))
#if defined(RLIMIT_NPTS) || defined(HAS_RLIMIT_NPTS)
                return RLIMIT_NPTS;
#else
                goto not_there;
#endif
            if (strEQ(name, "RLIMIT_OFILE"))
#if defined(RLIMIT_OFILE) || defined(HAS_RLIMIT_OFILE)
                return RLIMIT_OFILE;
#else
                goto not_there;
#endif
            if (strEQ(name, "RLIMIT_OPEN_MAX"))
#if defined(RLIMIT_OPEN_MAX) || defined(HAS_RLIMIT_OPEN_MAX)
                return RLIMIT_OPEN_MAX;
#else
                goto not_there;
#endif
            if (strEQ(name, "RLIMIT_POSIXLOCKS"))
#if defined(RLIMIT_POSIXLOCKS) || defined(HAS_RLIMIT_POSIXLOCKS)
                return RLIMIT_POSIXLOCKS;
#else
                goto not_there;
#endif
            if (strEQ(name, "RLIMIT_PTHREAD"))
#if defined(RLIMIT_PTHREAD) || defined(HAS_RLIMIT_PTHREAD)
                return RLIMIT_PTHREAD;
#else
                goto not_there;
#endif
            if (strEQ(name, "RLIMIT_RSESTACK"))
#if defined(RLIMIT_RSESTACK) || defined(HAS_RLIMIT_RSESTACK)
                return RLIMIT_RSESTACK;
#else
                goto not_there;
#endif
            if (strEQ(name, "RLIMIT_RSS"))
#if defined(RLIMIT_RSS) || defined(HAS_RLIMIT_RSS)
                return RLIMIT_RSS;
#else
                goto not_there;
#endif
            if (strEQ(name, "RLIMIT_RTPRIO"))
#if defined(RLIMIT_RTPRIO) || defined(HAS_RLIMIT_RTPRIO)
                return RLIMIT_RTPRIO;
#else
                goto not_there;
#endif
            if (strEQ(name, "RLIMIT_RTTIME"))
#if defined(RLIMIT_RTTIME) || defined(HAS_RLIMIT_RTTIME)
                return RLIMIT_RTTIME;
#else
                goto not_there;
#endif
            if (strEQ(name, "RLIMIT_SBSIZE"))
#if defined(RLIMIT_SBSIZE) || defined(HAS_RLIMIT_SBSIZE)
                return RLIMIT_SBSIZE;
#else
                goto not_there;
#endif
            if (strEQ(name, "RLIMIT_SIGPENDING"))
#if defined(RLIMIT_SIGPENDING) || defined(HAS_RLIMIT_SIGPENDING)
                return RLIMIT_SIGPENDING;
#else
                goto not_there;
#endif
            if (strEQ(name, "RLIMIT_STACK"))
#if defined(RLIMIT_STACK) || defined(HAS_RLIMIT_STACK)
                return RLIMIT_STACK;
#else
                goto not_there;
#endif
            if (strEQ(name, "RLIMIT_SWAP"))
#if defined(RLIMIT_SWAP) || defined(HAS_RLIMIT_SWAP)
                return RLIMIT_SWAP;
#else
                goto not_there;
#endif
            if (strEQ(name, "RLIMIT_TCACHE"))
#if defined(RLIMIT_TCACHE) || defined(HAS_RLIMIT_TCACHE)
                return RLIMIT_TCACHE;
#else
                goto not_there;
#endif
            if (strEQ(name, "RLIMIT_VMEM"))
#if defined(RLIMIT_VMEM) || defined(HAS_RLIMIT_VMEM)
                return RLIMIT_VMEM;
#else
                goto not_there;
#endif
            if (strEQ(name, "RLIM_INFINITY"))
#if defined(RLIM_INFINITY) || defined(HAS_RLIM_INFINITY)
                return -1.0;    /* trust me */
#else
                goto not_there;
#endif
            if (strEQ(name, "RLIM_NLIMITS"))
#if defined(RLIM_NLIMITS) || defined(HAS_RLIM_NLIMITS)
                return RLIM_NLIMITS;
#else
                goto not_there;
#endif
            if (strEQ(name, "RLIM_SAVED_CUR"))
#if defined(RLIM_SAVED_CUR) || defined(HAS_RLIM_SAVED_CUR)
                return RLIM_SAVED_CUR;
#else
                goto not_there;
#endif
            if (strEQ(name, "RLIM_SAVED_MAX"))
#if defined(RLIM_SAVED_MAX) || defined(HAS_RLIM_SAVED_MAX)
                return RLIM_SAVED_MAX;
#else
                goto not_there;
#endif
            break;
         }
        if (strnEQ(name, "RUSAGE_", 7)) {
            if (strEQ(name, "RUSAGE_BOTH"))
#if defined(RUSAGE_BOTH) || defined(HAS_RUSAGE_BOTH)
                return RUSAGE_BOTH;
#else
                goto not_there;
#endif
            if (strEQ(name, "RUSAGE_CHILDREN"))
#if defined(RUSAGE_CHILDREN) || defined(HAS_RUSAGE_CHILDREN)
                return RUSAGE_CHILDREN;
#else
                goto not_there;
#endif
            if (strEQ(name, "RUSAGE_SELF"))
#if defined(RUSAGE_SELF) || defined(HAS_RUSAGE_SELF)
                return RUSAGE_SELF;
#else
                goto not_there;
#endif
            if (strEQ(name, "RUSAGE_THREAD"))
#if defined(RUSAGE_THREAD) || defined(HAS_RUSAGE_THREAD)
                return RUSAGE_THREAD;
#else
                goto not_there;
#endif
            break;
         }
    }
 
    errno = EINVAL;
    return 0;
 
not_there:
    errno = ENOENT;
    return 0;
}
 
#define HV_STORE_RES(h, l) (void)hv_store(h, #l, sizeof(#l)-1, newSViv(l), 0)

 view all matches for this distribution


BSD-Socket-Splice

 view release on metacpan or  search on metacpan

ppport.h  view on Meta::CPAN

1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
nextchar|||
ninstr|||
no_bareword_allowed|||
no_fh_allowed|||
no_op|||
not_a_number|||
nothreadhook||5.008000|
nuke_stacks|||
num_overflow|||n
offer_nice_chunk|||
oopsAV|||

ppport.h  view on Meta::CPAN

3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
#  if !defined(__PATCHLEVEL_H_INCLUDED__) && !(defined(PATCHLEVEL) && defined(SUBVERSION))
#    define PERL_PATCHLEVEL_H_IMPLICIT
#    include <patchlevel.h>
#  endif
#  if !(defined(PERL_VERSION) || (defined(SUBVERSION) && defined(PATCHLEVEL)))
#    include <could_not_find_Perl_patchlevel.h>
#  endif
#  ifndef PERL_REVISION
#    define PERL_REVISION       (5)
     /* Replace: 1 */
#    define PERL_VERSION        PATCHLEVEL

 view all matches for this distribution


BSD-devstat

 view release on metacpan or  search on metacpan

inc/Test/More.pm  view on Meta::CPAN

608
609
610
611
612
613
614
615
616
617
618
$tb->_unoverload_str( \$e1, \$e2 );
 
# Either they're both references or both not.
my $same_ref = !( !ref $e1 xor !ref $e2 );
my $not_ref = ( !ref $e1 and !ref $e2 );
 
if( defined $e1 xor defined $e2 ) {
    $ok = 0;
}
elsif( !defined $e1 and !defined $e2 ) {

inc/Test/More.pm  view on Meta::CPAN

623
624
625
626
627
628
629
630
631
632
633
    $ok = 0;
}
elsif( $same_ref and( $e1 eq $e2 ) ) {
    $ok = 1;
}
elsif($not_ref) {
    push @Data_Stack, { type => '', vals => [ $e1, $e2 ] };
    $ok = 0;
}
else {
    if( $Refs_Seen{$e1} ) {

 view all matches for this distribution


BSD-getloadavg

 view release on metacpan or  search on metacpan

ppport.h  view on Meta::CPAN

1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
nextchar|||
ninstr|||
no_bareword_allowed|||
no_fh_allowed|||
no_op|||
not_a_number|||
nothreadhook||5.008000|
nuke_stacks|||
num_overflow|||n
oopsAV|||
oopsCV|||

ppport.h  view on Meta::CPAN

2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
#  if !defined(__PATCHLEVEL_H_INCLUDED__) && !(defined(PATCHLEVEL) && defined(SUBVERSION))
#    define PERL_PATCHLEVEL_H_IMPLICIT
#    include <patchlevel.h>
#  endif
#  if !(defined(PERL_VERSION) || (defined(SUBVERSION) && defined(PATCHLEVEL)))
#    include <could_not_find_Perl_patchlevel.h>
#  endif
#  ifndef PERL_REVISION
#    define PERL_REVISION       (5)
     /* Replace: 1 */
#    define PERL_VERSION        PATCHLEVEL

 view all matches for this distribution


BSD-stat

 view release on metacpan or  search on metacpan

stat.xs  view on Meta::CPAN

24
25
26
27
28
29
30
31
32
33
#ifndef PERL_API_VERSION
#define newSVuv newSViv
#endif
 
static int
not_here(char *s)
{
    croak("%s not implemented on this architecture", s);
    return -1;
}

 view all matches for this distribution


BSON-XS

 view release on metacpan or  search on metacpan

ppport.h  view on Meta::CPAN

1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
ninstr|||n
no_bareword_allowed|||
no_fh_allowed|||
no_op|||
noperl_die|||vn
not_a_number|||
not_incrementable|||
nothreadhook||5.008000|
nuke_stacks|||
num_overflow|||n
oopsAV|||
oopsHV|||

ppport.h  view on Meta::CPAN

2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
watch|||
whichsig_pvn||5.015004|
whichsig_pv||5.015004|
whichsig_sv||5.015004|
whichsig|||
win32_croak_not_implemented|||n
with_queued_errors|||
wrap_op_checker||5.015008|
write_to_stderr|||
xs_boot_epilog|||
xs_handshake|||vn

ppport.h  view on Meta::CPAN

3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
#  if !defined(__PATCHLEVEL_H_INCLUDED__) && !(defined(PATCHLEVEL) && defined(SUBVERSION))
#    define PERL_PATCHLEVEL_H_IMPLICIT
#    include <patchlevel.h>
#  endif
#  if !(defined(PERL_VERSION) || (defined(SUBVERSION) && defined(PATCHLEVEL)))
#    include <could_not_find_Perl_patchlevel.h>
#  endif
#  ifndef PERL_REVISION
#    define PERL_REVISION       (5)
     /* Replace: 1 */
#    define PERL_VERSION        PATCHLEVEL

 view all matches for this distribution


BabelObjects-Component-Data-Configurator

 view release on metacpan or  search on metacpan

sample/mailserver/server_config.xml  view on Meta::CPAN

189
190
191
192
193
194
195
196
197
198
199
  </parameter>
  <parameter>
      <uid>uid</uid>
  </parameter>
  <parameter>
      <not_encrypted_passwd>test</not_encrypted_passwd>
  </parameter>
</sendmail>
 
<cyrus>
</cyrus>

 view all matches for this distribution


BackPAN-Version-Discover

 view release on metacpan or  search on metacpan

lib/BackPAN/Version/Discover.pm  view on Meta::CPAN

72
73
74
75
76
77
78
79
80
81
82
    # info from the results, plus info needed to re-run the same scan
    # any anything else people may ask for :)
    return BackPAN::Version::Discover::Results->new(
        releases_matched  => $bp_releases,
        skipped_modules   => $skipped_modules,
        dists_not_matched => $no_release_matched,
        searched_dirs     => \@search_dirs,
        dist_info         => $dist_info,
        scan_args         => \%args,
    );
}

 view all matches for this distribution


Backbone-Events

 view release on metacpan or  search on metacpan

t/01_basic.t  view on Meta::CPAN

7
8
9
10
11
12
13
14
15
16
my $handler = test_handler();
 
my $triggered = 0;
$handler->on('wanted', sub { $triggered++ });
 
$handler->trigger('not_wanted');
is $triggered, 0, 'callback not triggered on unwanted event';
 
$handler->trigger('wanted');
is $triggered, 1, 'callback triggered on wanted event';

 view all matches for this distribution


( run in 0.589 second using v1.01-cache-2.11-cpan-26ccb49234f )