Changeset View
Changeset View
Standalone View
Standalone View
src/applications/repository/storage/PhabricatorRepository.php
| Show All 28 Lines | final class PhabricatorRepository extends PhabricatorRepositoryDAO | ||||
| */ | */ | ||||
| const MINIMUM_QUALIFIED_HASH = 5; | const MINIMUM_QUALIFIED_HASH = 5; | ||||
| /** | /** | ||||
| * Minimum number of commits to an empty repository to trigger "import" mode. | * Minimum number of commits to an empty repository to trigger "import" mode. | ||||
| */ | */ | ||||
| const IMPORT_THRESHOLD = 7; | const IMPORT_THRESHOLD = 7; | ||||
| const LOWPRI_THRESHOLD = 64; | |||||
| const TABLE_PATH = 'repository_path'; | const TABLE_PATH = 'repository_path'; | ||||
| const TABLE_PATHCHANGE = 'repository_pathchange'; | const TABLE_PATHCHANGE = 'repository_pathchange'; | ||||
| const TABLE_FILESYSTEM = 'repository_filesystem'; | const TABLE_FILESYSTEM = 'repository_filesystem'; | ||||
| const TABLE_SUMMARY = 'repository_summary'; | const TABLE_SUMMARY = 'repository_summary'; | ||||
| const TABLE_LINTMESSAGE = 'repository_lintmessage'; | const TABLE_LINTMESSAGE = 'repository_lintmessage'; | ||||
| const TABLE_PARENTS = 'repository_parents'; | const TABLE_PARENTS = 'repository_parents'; | ||||
| const TABLE_COVERAGE = 'repository_coverage'; | const TABLE_COVERAGE = 'repository_coverage'; | ||||
| ▲ Show 20 Lines • Show All 2,718 Lines • Show Last 20 Lines | |||||