This file is indexed.

/usr/share/perl5/Mason/Plugin/Cache/Request.pm is in libmason-plugin-cache-perl 0.05-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
package Mason::Plugin::Cache::Request;
BEGIN {
  $Mason::Plugin::Cache::Request::VERSION = '0.05';
}
use Mason::PluginRole;

method cache () {
    return $self->current_comp_class->cache(@_);
}

1;