def setUpClass(cls): global SEED SEED = h2o.setup_random_seed() h2o.init(2) global SYNDATASETS_DIR SYNDATASETS_DIR = h2o.make_syn_dir()
def setUpClass(cls): global SEED, localhost SEED = h2o.setup_random_seed() # localhost = h2o.decide_if_localhost() # always require a config file for now..don't have h2o.decide_if_localhost() here localhost = False if (localhost): # h2o.nodes[0].delete_keys_at_teardown should cause the testdir_release # tests to delete keys after each test completion (not cloud teardown, don't care then) # h2o.init(3, create_json=True, java_heap_GB=4, delete_keys_at_teardown=True) # RemoveAll.json doesn't work? h2o.init(3, create_json=True, java_heap_GB=4) else: # RemoveAll.json doesn't work? # h2o.init(create_json=True, delete_keys_at_teardown=True) h2o.init(create_json=True)
def setUpClass(cls): global SEED SEED = h2o.setup_random_seed() h2o.init(3,java_heap_GB=3)
def setUpClass(cls): global SEED SEED = h2o.setup_random_seed() h2o.init(1, java_heap_GB=12)
def setUpClass(cls): global SEED SEED = h2o.setup_random_seed() h2o.init(1, base_port=54333)
def setUpClass(cls): global SEED print "hardwiring seed for now" SEED = h2o.setup_random_seed(seed=6418304027311682180) h2o.init(1)
def setUpClass(cls): global SEED SEED = h2o.setup_random_seed() h2o.init(3, java_heap_GB=8, base_port=54321)
def setUpClass(cls): global SEED SEED = h2o.setup_random_seed() h2o.init(1, java_heap_GB=14, sandbox_ignore_errors=True)
def setUpClass(cls): global SEED SEED = h2o.setup_random_seed() h2o.init(1,java_heap_GB=1,use_flatfile=True)
def setUpClass(cls): global SEED print "Temporarily forcing seed to known case that causes assert" SEED = h2o.setup_random_seed(seed=1364157389021990032) h2o.init(2,java_heap_GB=1,use_flatfile=True)
def setUpClass(cls): global SEED # use the failing seed for now SEED = h2o.setup_random_seed(seed=6119134012054500977) h2o.init()
def setUpClass(cls): global SEED SEED = h2o.setup_random_seed() h2o.init()