Home
last modified time | relevance | path

Searched refs:bidprice (Results 1 – 3 of 3) sorted by relevance

/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/emr/
Dtest_instance_group_args.py37 'SPOT', 'master', bidprice=Decimal(1.10))
38 self.assertEquals('1.10', instance_group.bidprice[:4])
45 'SPOT', 'master', bidprice=1.1)
46 self.assertEquals('1.1', instance_group.bidprice)
53 'SPOT', 'master', bidprice='1.1')
54 self.assertEquals('1.1', instance_group.bidprice)
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/emr/
Dinstance_group.py23 def __init__(self, num_instances, role, type, market, name, bidprice=None): argument
30 if not bidprice:
32 self.bidprice = str(bidprice)
39 self.bidprice)
Dconnection.py737 params['BidPrice'] = instance_group.bidprice