This file is indexed.

/usr/share/doc/libdrmaa1.0-ruby/examples/ruby/flow/samples/small.ff is in libdrmaa1.0-ruby 8.1.9+dfsg-7build1.

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
# ------------------------------------------------------------------------------------------
ALL = ALLFLOWS | REPORT
# ------------------------------------------------------------------------------------------
ALLFLOWS = FLOW($arch=darwin) & FLOW($arch=linux) & FLOW($arch=irix) & FLOW($arch=solaris)
FLOW = BUILD | INST | TESTS | FINAL
TESTS = T1 & T2 & T3 & T4
# ------------------------------------------------------------------------------------------
BUILD = { cmd=do_make, nat=-q $arch.q, args=5 }
INST = { cmd=do_inst, nat=-q gridware.q, args=1 -local -bin $arch, name=I$arch }
FINAL = { cmd=do_uninst, nat=-q $arch.q, args=1, name=FIN$arch }
T1 = { cmd=do_test, nat = -q $arch.q, args = 1 }
T2 = { cmd=do_test, nat = -q $arch.q, args = 2 }
T3 = { cmd=do_test, nat = -q $arch.q, args = 3 }
T4 = { cmd=do_test, nat = -q $arch.q, args = 4 }
REPORT = { cmd=do_report }