예제 #1
0
파일: jars.py 프로젝트: TPNguyen/heron
def packing_jars():
  '''
  Get the packing algorithm jars
  :return:
  '''
  jars = [
      os.path.join(utils.get_heron_lib_dir(), "packing", "*")
  ]
  return jars
예제 #2
0
파일: jars.py 프로젝트: TPNguyen/heron
def uploader_jars():
  '''
  Get the uploader jars
  :return:
  '''
  jars = [
      os.path.join(utils.get_heron_lib_dir(), "uploader", "*")
  ]
  return jars
예제 #3
0
파일: jars.py 프로젝트: TPNguyen/heron
def statemgr_jars():
  '''
  Get the statemgr jars
  :return:
  '''
  jars = [
      os.path.join(utils.get_heron_lib_dir(), "statemgr", "*")
  ]
  return jars
예제 #4
0
파일: jars.py 프로젝트: TPNguyen/heron
def topology_jars():
  '''
  Get the topology jars
  :return:
  '''
  jars = [
      os.path.join(utils.get_heron_lib_dir(), "third_party", "*")
  ]
  return jars
예제 #5
0
파일: jars.py 프로젝트: TPNguyen/heron
def scheduler_jars():
  '''
  Get the scheduler jars
  :return:
  '''
  jars = [
      os.path.join(utils.get_heron_lib_dir(), "scheduler", "*")
  ]
  return jars
예제 #6
0
파일: jars.py 프로젝트: qingniufly/heron
def packing_jars():
  '''
  Get the packing algorithm jars
  :return:
  '''
  jars = [
      os.path.join(utils.get_heron_lib_dir(), "packing", "*")
  ]
  return jars
예제 #7
0
파일: jars.py 프로젝트: qingniufly/heron
def statemgr_jars():
  '''
  Get the statemgr jars
  :return:
  '''
  jars = [
      os.path.join(utils.get_heron_lib_dir(), "statemgr", "*")
  ]
  return jars
예제 #8
0
파일: jars.py 프로젝트: qingniufly/heron
def uploader_jars():
  '''
  Get the uploader jars
  :return:
  '''
  jars = [
      os.path.join(utils.get_heron_lib_dir(), "uploader", "*")
  ]
  return jars
예제 #9
0
파일: jars.py 프로젝트: qingniufly/heron
def scheduler_jars():
  '''
  Get the scheduler jars
  :return:
  '''
  jars = [
      os.path.join(utils.get_heron_lib_dir(), "scheduler", "*")
  ]
  return jars
예제 #10
0
파일: jars.py 프로젝트: qingniufly/heron
def topology_jars():
  '''
  Get the topology jars
  :return:
  '''
  jars = [
      os.path.join(utils.get_heron_lib_dir(), "third_party", "*")
  ]
  return jars