文件操作 - test_thread.rb
返回文件管理
返回主菜单
删除本文件
文件: /opt/puppetlabs/puppet/lib/ruby/vendor_gems/gems/locale-2.1.4/test/test_thread.rb
编辑文件内容
require 'locale' require 'thread' require 'test/unit' class TestThread < Test::Unit::TestCase def setup Locale.init(:driver => :env) @mutex = Mutex.new end def invoke_thread(tag, sleep_time) Thread.start do @mutex.synchronize { ENV["LC_ALL"] = tag Locale.current } (1..10).each do |v| # puts "#{tag}: locale = #{Locale.current}" assert_equal tag, Locale.current.to_posix.to_s print "." $stdout.flush sleep sleep_time end Locale.clear # Clear this thread only. end end def test_thread th1 = invoke_thread("ja_JP.eucJP", 0.3) th2 = invoke_thread("zh_CN.UTF-8", 0.2) th3 = invoke_thread("en", 0.1) th1.join th2.join th3.join end end
修改文件时间
将文件时间修改为当前时间的前一年
删除文件