This file is indexed.

/usr/share/perl5/XML/Stream/IO/Select/Win32.pm is in libxml-stream-perl 1.24-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package XML::Stream::IO::Select::Win32;

=head1 NAME

XML::Stream::IO::Select::Win32 - Fake filehandle support for XML::Stream

=head1 SYNOPSIS

  You should have no reason to use this directly.

=cut

use strict;
use warnings;

use vars qw( $VERSION );

$VERSION = "1.24";

use base 'IO::Select';

sub can_read {
    my $vec = shift;
    my $timeout = shift;

    $vec->handles();
}

1;