This file is indexed.

/usr/lib/ruby/vendor_ruby/Ice/Process.rb is in ruby-zeroc-ice 3.5.1-6.4ubuntu1.

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
84
85
86
87
88
89
90
# **********************************************************************
#
# Copyright (c) 2003-2013 ZeroC, Inc. All rights reserved.
#
# This copy of Ice is licensed to you under the terms described in the
# ICE_LICENSE file included in this distribution.
#
# **********************************************************************
#
# Ice version 3.5.1
#
# <auto-generated>
#
# Generated from file `Process.ice'
#
# Warning: do not edit this file.
#
# </auto-generated>
#

require 'Ice'

module Ice

    if not defined?(::Ice::Process_mixin)
        module Process_mixin
            include ::Ice::Object_mixin

            def ice_ids(current=nil)
                ['::Ice::Object', '::Ice::Process']
            end

            def ice_id(current=nil)
                '::Ice::Process'
            end

            #
            # Operation signatures.
            #
            # def shutdown(current=nil)
            # def writeMessage(message, fd, current=nil)

            def inspect
                ::Ice::__stringify(self, T_Process)
            end
        end
        class Process
            include Process_mixin
            
            def Process.ice_staticId()
                '::Ice::Process'
            end
        end
        module ProcessPrx_mixin

            def shutdown(_ctx=nil)
                Process_mixin::OP_shutdown.invoke(self, [], _ctx)
            end

            def writeMessage(message, fd, _ctx=nil)
                Process_mixin::OP_writeMessage.invoke(self, [message, fd], _ctx)
            end
        end
        class ProcessPrx < ::Ice::ObjectPrx
            include ProcessPrx_mixin

            def ProcessPrx.checkedCast(proxy, facetOrCtx=nil, _ctx=nil)
                ice_checkedCast(proxy, '::Ice::Process', facetOrCtx, _ctx)
            end

            def ProcessPrx.uncheckedCast(proxy, facet=nil)
                ice_uncheckedCast(proxy, facet)
            end
        end

        if not defined?(::Ice::T_Process)
            T_Process = ::Ice::__declareClass('::Ice::Process')
            T_ProcessPrx = ::Ice::__declareProxy('::Ice::Process')
        end

        T_Process.defineClass(Process, -1, true, false, nil, [], [])
        Process_mixin::ICE_TYPE = T_Process

        T_ProcessPrx.defineProxy(ProcessPrx, T_Process)
        ProcessPrx::ICE_TYPE = T_ProcessPrx

        Process_mixin::OP_shutdown = ::Ice::__defineOperation('shutdown', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, false, nil, [], [], nil, [])
        Process_mixin::OP_writeMessage = ::Ice::__defineOperation('writeMessage', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, false, nil, [[::Ice::T_string, false, 0], [::Ice::T_int, false, 0]], [], nil, [])
    end
end