コード例 #1
0
ファイル: worker.py プロジェクト: bintriz/mosaicnator
 def concall_file_ok(self):
     return self.skip_on and checksum_match(self.concall_file)
コード例 #2
0
ファイル: worker.py プロジェクト: bintriz/mosaicnator
 def explscore_file_ok(self):
     return self.skip_on and checksum_match(self.explscore_file)
コード例 #3
0
ファイル: worker.py プロジェクト: bintriz/mosaicnator
 def true_file_ok(self):
     return self.skip_on and checksum_match(self.true_file)
コード例 #4
0
ファイル: worker.py プロジェクト: bintriz/mosaicnator
 def sens_file_ok(self):
     return self.skip_on and checksum_match(self.sens_file)
コード例 #5
0
ファイル: worker.py プロジェクト: bintriz/mosaicnator
 def concall_file_ok(self):
     return self.skip_on and all(
         [checksum_match(self.concall_file.format(i))
          for i in range(1,len(self.caller)+1)])