This file is indexed.

/usr/share/kde4/apps/plasma/services/storage.operations is in kdelibs5-data 4:4.8.2-0ubuntu1.

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
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE kcfg SYSTEM
    "http://www.kde.org/standards/kcfg/1.0/kcfg.xsd">
<kcfg>
    <group name="save">
        <entry name="group" type="String">
            <label>Group the key/value saved belongs to</label>
        </entry>
        <entry name="key" type="String">
            <label>The key that indicizes the value in the storage</label>
        </entry>
        <entry name="data" type="Int">
            <label>The actual data to be stored.</label>
        </entry>
        <entry name="data" type="String">
            <label>The actual data to be stored.</label>
        </entry>
        <entry name="data" type="StringList">
            <label>The actual data to be stored.</label>
        </entry>
  </group>
  <group name="retrieve">
      <entry name="group" type="String">
          <label>Group the key/value saved belongs to</label>
      </entry>
      <entry name="key" type="String">
           <label>The key that indicizes the value in the storage. If empty all group will be retrieved.</label>
      </entry>
  </group>
  <group name="delete">
      <entry name="group" type="String">
          <label>Group the key/value saved belongs to</label>
      </entry>
      <entry name="key" type="String">
           <label>The key that indicizes the value in the storage. If empty all group will be deleted</label>
      </entry>
  </group>
  <group name="expire">
      <entry name="group" type="String">
          <label>Group the key/value saved belongs to. If empty all ntries will be checked for expiration.</label>
      </entry>
      <entry name="age" type="UInt">
          <label>Set the age the stored data will expire in seconds. Default is 4 days.</label>
          <default>345600</default>
      </entry>
  </group>
</kcfg>