Searched refs:bidprice (Results 1 – 3 of 3) sorted by relevance
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/emr/ |
D | test_instance_group_args.py | 37 '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/ |
D | instance_group.py | 23 def __init__(self, num_instances, role, type, market, name, bidprice=None): argument 30 if not bidprice: 32 self.bidprice = str(bidprice) 39 self.bidprice)
|
D | connection.py | 737 params['BidPrice'] = instance_group.bidprice
|