This file is indexed.

/usr/share/perl5/CHI/Driver/Role/IsSubcache.pm is in libchi-perl 0.60-3.

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
package CHI::Driver::Role::IsSubcache;
$CHI::Driver::Role::IsSubcache::VERSION = '0.60';
use Moo::Role;
use strict;
use warnings;

has 'parent_cache'  => ( is => 'ro', weak_ref => 1 );
has 'subcache_type' => ( is => 'ro' );

1;