git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44872 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2014-02-07 01:54:40 +00:00
Родитель 38b57c2915
Коммит bb6a76f999
10 изменённых файлов: 20 добавлений и 10 удалений

Просмотреть файл

@ -9,7 +9,8 @@ if __FILE__ == $0
end
DRb.start_service('druby://localhost:0', [1, 2, 'III', 4, "five", 6])
DRb::ExtServ.new(ARGV.shift, ARGV.shift)
es = DRb::ExtServ.new(ARGV.shift, ARGV.shift)
DRb.thread.join
es.stop_service if es.alive?
end

Просмотреть файл

@ -29,7 +29,8 @@ AQjjxMXhwULlmuR/K+WwlaZPiLIBYalLAZQ7ZbOPeVkJ8ePao0eLAgEC
[ ["C","JP"], ["O","Foo.DRuby.Org"], ["CN", "Sample"] ]
DRb.start_service('drbssl://localhost:0', [1, 2, 'III', 4, "five", 6], config)
DRb::ExtServ.new(ARGV.shift, ARGV.shift)
es = DRb::ExtServ.new(ARGV.shift, ARGV.shift)
DRb.thread.join
es.stop_service if es.alive?
end

Просмотреть файл

@ -9,7 +9,8 @@ if __FILE__ == $0
end
DRb.start_service('drbunix:', [1, 2, 'III', 4, "five", 6])
DRb::ExtServ.new(ARGV.shift, ARGV.shift)
es = DRb::ExtServ.new(ARGV.shift, ARGV.shift)
DRb.thread.join
es.stop_service if es.alive?
end

Просмотреть файл

@ -30,7 +30,8 @@ AQjjxMXhwULlmuR/K+WwlaZPiLIBYalLAZQ7ZbOPeVkJ8ePao0eLAgEC
DRb::DRbServer.default_argc_limit(8)
DRb::DRbServer.default_load_limit(4096)
DRb.start_service('drbssl://localhost:0', DRbEx.new, config)
DRb::ExtServ.new(ARGV.shift, ARGV.shift)
es = DRb::ExtServ.new(ARGV.shift, ARGV.shift)
DRb.thread.join
es.stop_service if es.alive?
end

Просмотреть файл

@ -10,7 +10,8 @@ if __FILE__ == $0
DRb::DRbServer.default_argc_limit(8)
DRb::DRbServer.default_load_limit(4096)
DRb.start_service('drbunix:', DRbEx.new)
DRb::ExtServ.new(ARGV.shift, ARGV.shift)
es = DRb::ExtServ.new(ARGV.shift, ARGV.shift)
DRb.thread.join
es.stop_service if es.alive?
end

Просмотреть файл

@ -25,6 +25,7 @@ if __FILE__ == $0
end
DRb.start_service('druby://localhost:0', Bar.new)
DRb::ExtServ.new(ARGV.shift, ARGV.shift)
es = DRb::ExtServ.new(ARGV.shift, ARGV.shift)
DRb.thread.join
es.stop_service if es.alive?
end

Просмотреть файл

@ -26,6 +26,7 @@ if __FILE__ == $0
$SAFE = 1
DRb.start_service('druby://localhost:0', EvalAttack.new, {:safe_level => 2})
DRb::ExtServ.new(ARGV.shift, ARGV.shift)
es = DRb::ExtServ.new(ARGV.shift, ARGV.shift)
DRb.thread.join
es.stop_service if es.alive?
end

Просмотреть файл

@ -32,7 +32,8 @@ if __FILE__ == $0
DRb::DRbServer.default_argc_limit(3)
DRb::DRbServer.default_load_limit(100000)
DRb.start_service('druby://localhost:0', DRbLarge.new)
DRb::ExtServ.new(ARGV.shift, ARGV.shift)
es = DRb::ExtServ.new(ARGV.shift, ARGV.shift)
DRb.thread.join
es.stop_service if es.alive?
end

Просмотреть файл

@ -9,6 +9,7 @@ if __FILE__ == $0
end
DRb.start_service('druby://:8473', [1, 2, 'III', 4, "five", 6])
DRb::ExtServ.new(ARGV.shift, ARGV.shift)
es = DRb::ExtServ.new(ARGV.shift, ARGV.shift)
DRb.thread.join
es.stop_service if es.alive?
end

Просмотреть файл

@ -10,6 +10,7 @@ if __FILE__ == $0
DRb.start_service('druby://localhost:0', [1, 2, 'III', 4, "five", 6],
{:safe_level => 1})
DRb::ExtServ.new(ARGV.shift, ARGV.shift)
es = DRb::ExtServ.new(ARGV.shift, ARGV.shift)
DRb.thread.join
es.stop_service if es.alive?
end