This file is indexed.

/usr/share/doc/libghc-criterion-doc/examples/criterion-examples.cabal is in libghc-criterion-doc 1.1.0.0-4build1.

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
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
79
80
81
82
83
name:          criterion-examples
version:       0
synopsis:      Examples for the criterion benchmarking system
description:   Examples for the criterion benchmarking system
homepage:      https://github.com/bos/criterion
license:       BSD3
license-file:  ../LICENSE
author:        Bryan O'Sullivan <bos@serpentine.com>
maintainer:    Bryan O'Sullivan <bos@serpentine.com>
category:      Benchmarks
build-type:    Simple
cabal-version: >=1.8

executable fibber
  main-is: Fibber.hs

  ghc-options: -Wall -rtsopts
  build-depends:
    base == 4.*,
    criterion

executable conduit-vs-pipes
  main-is: ConduitVsPipes.hs

  ghc-options: -Wall -rtsopts
  build-depends:
    base == 4.*,
    conduit >= 1.1,
    criterion,
    pipes >= 4.1,
    transformers

executable maps
  main-is: Maps.hs

  ghc-options: -Wall -rtsopts
  build-depends:
    base == 4.*,
    bytestring,
    containers,
    critbit,
    criterion,
    hashable,
    mwc-random,
    unordered-containers,
    vector,
    vector-algorithms

executable overhead
  main-is: Overhead.hs

  ghc-options: -Wall -rtsopts
  build-depends:
    base == 4.*,
    criterion

executable bad-read-file
  main-is: BadReadFile.hs

  ghc-options: -Wall -rtsopts
  build-depends:
    base == 4.*,
    criterion

executable good-read-file
  main-is: GoodReadFile.hs

  ghc-options: -Wall -rtsopts
  build-depends:
    base == 4.*,
    criterion

-- Cannot uncomment due to https://github.com/haskell/cabal/issues/1725
--
-- executable judy
--   main-is: Judy.hs
--
--   buildable: False
--   ghc-options: -Wall -rtsopts
--   build-depends:
--     base == 4.*,
--     criterion,
--     judy