This file is indexed.

/usr/share/doc/libmoosex-arrayref-perl/examples/benchmark.pl is in libmoosex-arrayref-perl 0.005-1.

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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
use Benchmark qw(:all);

{
	package Local::Foo;
	use Moose::Role;
	has foo => (is => 'rw');
	sub test {
		my $class = shift;
		my $self  = $class->new;
		$self->foo($_) for 0 .. 99;
	}
}

{
	package Local::HashRef::M;
	use Moose;
	with 'Local::Foo';
}

{
	package Local::HashRef::I;
	use Moose;
	with 'Local::Foo';
	__PACKAGE__->meta->make_immutable;
}

{
	package Local::ArrayRef::M;
	use MooseX::ArrayRef;
	with 'Local::Foo';
}

{
	package Local::ArrayRef::I;
	use MooseX::ArrayRef;
	with 'Local::Foo';
	__PACKAGE__->meta->make_immutable;
}

cmpthese(10_000, {
	HashRef_M => sub { Local::HashRef::M::->test },
	HashRef_I => sub { Local::HashRef::I::->test },
	ArrayRef_M => sub { Local::ArrayRef::M::->test },
	ArrayRef_I => sub { Local::ArrayRef::I::->test },
});