# File lib/puppet/util/loadedfile.rb, line 50
50:         def stamp
51:             if @stamp.nil? or (Time.now.to_i - @statted >= Puppet[:filetimeout])
52:                 @statted = Time.now.to_i
53:                 begin
54:                     @stamp = File.stat(@file).ctime
55:                 rescue Errno::ENOENT
56:                     @stamp = Time.now
57:                 end
58:             end
59:             return @stamp
60:         end