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