You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ConfigConstants.java 17KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761
  1. /*
  2. * Copyright (C) 2010, Mathias Kinzler <mathias.kinzler@sap.com>
  3. * Copyright (C) 2010, Chris Aniszczyk <caniszczyk@gmail.com>
  4. * Copyright (C) 2012, 2020, Robin Rosenberg and others
  5. *
  6. * This program and the accompanying materials are made available under the
  7. * terms of the Eclipse Distribution License v. 1.0 which is available at
  8. * https://www.eclipse.org/org/documents/edl-v10.php.
  9. *
  10. * SPDX-License-Identifier: BSD-3-Clause
  11. */
  12. package org.eclipse.jgit.lib;
  13. /**
  14. * Constants for use with the Configuration classes: section names,
  15. * configuration keys
  16. */
  17. @SuppressWarnings("nls")
  18. public final class ConfigConstants {
  19. /** The "core" section */
  20. public static final String CONFIG_CORE_SECTION = "core";
  21. /** The "branch" section */
  22. public static final String CONFIG_BRANCH_SECTION = "branch";
  23. /** The "remote" section */
  24. public static final String CONFIG_REMOTE_SECTION = "remote";
  25. /** The "diff" section */
  26. public static final String CONFIG_DIFF_SECTION = "diff";
  27. /** The "dfs" section */
  28. public static final String CONFIG_DFS_SECTION = "dfs";
  29. /**
  30. * The "receive" section
  31. * @since 4.6
  32. */
  33. public static final String CONFIG_RECEIVE_SECTION = "receive";
  34. /** The "user" section */
  35. public static final String CONFIG_USER_SECTION = "user";
  36. /** The "gerrit" section */
  37. public static final String CONFIG_GERRIT_SECTION = "gerrit";
  38. /** The "workflow" section */
  39. public static final String CONFIG_WORKFLOW_SECTION = "workflow";
  40. /** The "submodule" section */
  41. public static final String CONFIG_SUBMODULE_SECTION = "submodule";
  42. /**
  43. * The "rebase" section
  44. * @since 3.2
  45. */
  46. public static final String CONFIG_REBASE_SECTION = "rebase";
  47. /** The "gc" section */
  48. public static final String CONFIG_GC_SECTION = "gc";
  49. /** The "pack" section */
  50. public static final String CONFIG_PACK_SECTION = "pack";
  51. /**
  52. * The "fetch" section
  53. * @since 3.3
  54. */
  55. public static final String CONFIG_FETCH_SECTION = "fetch";
  56. /**
  57. * The "pull" section
  58. * @since 3.5
  59. */
  60. public static final String CONFIG_PULL_SECTION = "pull";
  61. /**
  62. * The "merge" section
  63. * @since 4.9
  64. */
  65. public static final String CONFIG_MERGE_SECTION = "merge";
  66. /**
  67. * The "filter" section
  68. * @since 4.6
  69. */
  70. public static final String CONFIG_FILTER_SECTION = "filter";
  71. /**
  72. * The "gpg" section
  73. * @since 5.2
  74. */
  75. public static final String CONFIG_GPG_SECTION = "gpg";
  76. /**
  77. * The "protocol" section
  78. * @since 5.9
  79. */
  80. public static final String CONFIG_PROTOCOL_SECTION = "protocol";
  81. /**
  82. * The "format" key
  83. * @since 5.2
  84. */
  85. public static final String CONFIG_KEY_FORMAT = "format";
  86. /**
  87. * The "program" key
  88. *
  89. * @since 5.11
  90. */
  91. public static final String CONFIG_KEY_PROGRAM = "program";
  92. /**
  93. * The "signingKey" key
  94. *
  95. * @since 5.2
  96. */
  97. public static final String CONFIG_KEY_SIGNINGKEY = "signingKey";
  98. /**
  99. * The "commit" section
  100. * @since 5.2
  101. */
  102. public static final String CONFIG_COMMIT_SECTION = "commit";
  103. /**
  104. * The "template" key
  105. *
  106. * @since 5.12
  107. */
  108. public static final String CONFIG_KEY_COMMIT_TEMPLATE = "template";
  109. /**
  110. * The "tag" section
  111. *
  112. * @since 5.11
  113. */
  114. public static final String CONFIG_TAG_SECTION = "tag";
  115. /**
  116. * The "gpgSign" key
  117. *
  118. * @since 5.2
  119. */
  120. public static final String CONFIG_KEY_GPGSIGN = "gpgSign";
  121. /**
  122. * The "forceSignAnnotated" key
  123. *
  124. * @since 5.11
  125. */
  126. public static final String CONFIG_KEY_FORCE_SIGN_ANNOTATED = "forceSignAnnotated";
  127. /**
  128. * The "hooksPath" key.
  129. *
  130. * @since 5.6
  131. */
  132. public static final String CONFIG_KEY_HOOKS_PATH = "hooksPath";
  133. /**
  134. * The "quotePath" key.
  135. * @since 5.6
  136. */
  137. public static final String CONFIG_KEY_QUOTE_PATH = "quotePath";
  138. /** The "algorithm" key */
  139. public static final String CONFIG_KEY_ALGORITHM = "algorithm";
  140. /** The "autocrlf" key */
  141. public static final String CONFIG_KEY_AUTOCRLF = "autocrlf";
  142. /**
  143. * The "auto" key
  144. * @since 4.6
  145. */
  146. public static final String CONFIG_KEY_AUTO = "auto";
  147. /**
  148. * The "autogc" key
  149. * @since 4.6
  150. */
  151. public static final String CONFIG_KEY_AUTOGC = "autogc";
  152. /**
  153. * The "autopacklimit" key
  154. * @since 4.6
  155. */
  156. public static final String CONFIG_KEY_AUTOPACKLIMIT = "autopacklimit";
  157. /**
  158. * The "eol" key
  159. *
  160. * @since 4.3
  161. */
  162. public static final String CONFIG_KEY_EOL = "eol";
  163. /** The "bare" key */
  164. public static final String CONFIG_KEY_BARE = "bare";
  165. /** The "excludesfile" key */
  166. public static final String CONFIG_KEY_EXCLUDESFILE = "excludesfile";
  167. /**
  168. * The "attributesfile" key
  169. *
  170. * @since 3.7
  171. */
  172. public static final String CONFIG_KEY_ATTRIBUTESFILE = "attributesfile";
  173. /** The "filemode" key */
  174. public static final String CONFIG_KEY_FILEMODE = "filemode";
  175. /** The "logallrefupdates" key */
  176. public static final String CONFIG_KEY_LOGALLREFUPDATES = "logallrefupdates";
  177. /** The "repositoryformatversion" key */
  178. public static final String CONFIG_KEY_REPO_FORMAT_VERSION = "repositoryformatversion";
  179. /** The "worktree" key */
  180. public static final String CONFIG_KEY_WORKTREE = "worktree";
  181. /** The "blockLimit" key */
  182. public static final String CONFIG_KEY_BLOCK_LIMIT = "blockLimit";
  183. /** The "blockSize" key */
  184. public static final String CONFIG_KEY_BLOCK_SIZE = "blockSize";
  185. /**
  186. * The "concurrencyLevel" key
  187. *
  188. * @since 4.6
  189. */
  190. public static final String CONFIG_KEY_CONCURRENCY_LEVEL = "concurrencyLevel";
  191. /** The "deltaBaseCacheLimit" key */
  192. public static final String CONFIG_KEY_DELTA_BASE_CACHE_LIMIT = "deltaBaseCacheLimit";
  193. /**
  194. * The "symlinks" key
  195. * @since 3.3
  196. */
  197. public static final String CONFIG_KEY_SYMLINKS = "symlinks";
  198. /** The "streamFileThreshold" key */
  199. public static final String CONFIG_KEY_STREAM_FILE_TRESHOLD = "streamFileThreshold";
  200. /**
  201. * The "packedGitMmap" key
  202. * @since 5.1.13
  203. */
  204. public static final String CONFIG_KEY_PACKED_GIT_MMAP = "packedgitmmap";
  205. /**
  206. * The "packedGitWindowSize" key
  207. * @since 5.1.13
  208. */
  209. public static final String CONFIG_KEY_PACKED_GIT_WINDOWSIZE = "packedgitwindowsize";
  210. /**
  211. * The "packedGitLimit" key
  212. * @since 5.1.13
  213. */
  214. public static final String CONFIG_KEY_PACKED_GIT_LIMIT = "packedgitlimit";
  215. /**
  216. * The "packedGitOpenFiles" key
  217. * @since 5.1.13
  218. */
  219. public static final String CONFIG_KEY_PACKED_GIT_OPENFILES = "packedgitopenfiles";
  220. /**
  221. * The "packedGitUseStrongRefs" key
  222. * @since 5.1.13
  223. */
  224. public static final String CONFIG_KEY_PACKED_GIT_USE_STRONGREFS = "packedgitusestrongrefs";
  225. /** The "remote" key */
  226. public static final String CONFIG_KEY_REMOTE = "remote";
  227. /** The "merge" key */
  228. public static final String CONFIG_KEY_MERGE = "merge";
  229. /** The "rebase" key */
  230. public static final String CONFIG_KEY_REBASE = "rebase";
  231. /** The "url" key */
  232. public static final String CONFIG_KEY_URL = "url";
  233. /** The "autosetupmerge" key */
  234. public static final String CONFIG_KEY_AUTOSETUPMERGE = "autosetupmerge";
  235. /** The "autosetuprebase" key */
  236. public static final String CONFIG_KEY_AUTOSETUPREBASE = "autosetuprebase";
  237. /**
  238. * The "autostash" key
  239. * @since 3.2
  240. */
  241. public static final String CONFIG_KEY_AUTOSTASH = "autostash";
  242. /** The "name" key */
  243. public static final String CONFIG_KEY_NAME = "name";
  244. /** The "email" key */
  245. public static final String CONFIG_KEY_EMAIL = "email";
  246. /** The "false" key (used to configure {@link #CONFIG_KEY_AUTOSETUPMERGE} */
  247. public static final String CONFIG_KEY_FALSE = "false";
  248. /** The "true" key (used to configure {@link #CONFIG_KEY_AUTOSETUPMERGE} */
  249. public static final String CONFIG_KEY_TRUE = "true";
  250. /**
  251. * The "always" key (used to configure {@link #CONFIG_KEY_AUTOSETUPREBASE}
  252. * and {@link #CONFIG_KEY_AUTOSETUPMERGE}
  253. */
  254. public static final String CONFIG_KEY_ALWAYS = "always";
  255. /** The "never" key (used to configure {@link #CONFIG_KEY_AUTOSETUPREBASE} */
  256. public static final String CONFIG_KEY_NEVER = "never";
  257. /** The "local" key (used to configure {@link #CONFIG_KEY_AUTOSETUPREBASE} */
  258. public static final String CONFIG_KEY_LOCAL = "local";
  259. /** The "createchangeid" key */
  260. public static final String CONFIG_KEY_CREATECHANGEID = "createchangeid";
  261. /** The "defaultsourceref" key */
  262. public static final String CONFIG_KEY_DEFBRANCHSTARTPOINT = "defbranchstartpoint";
  263. /** The "path" key */
  264. public static final String CONFIG_KEY_PATH = "path";
  265. /** The "update" key */
  266. public static final String CONFIG_KEY_UPDATE = "update";
  267. /**
  268. * The "ignore" key
  269. * @since 3.6
  270. */
  271. public static final String CONFIG_KEY_IGNORE = "ignore";
  272. /** The "compression" key */
  273. public static final String CONFIG_KEY_COMPRESSION = "compression";
  274. /** The "indexversion" key */
  275. public static final String CONFIG_KEY_INDEXVERSION = "indexversion";
  276. /**
  277. * The "hidedotfiles" key
  278. * @since 3.5
  279. */
  280. public static final String CONFIG_KEY_HIDEDOTFILES = "hidedotfiles";
  281. /**
  282. * The "dirnogitlinks" key
  283. * @since 4.3
  284. */
  285. public static final String CONFIG_KEY_DIRNOGITLINKS = "dirNoGitLinks";
  286. /** The "precomposeunicode" key */
  287. public static final String CONFIG_KEY_PRECOMPOSEUNICODE = "precomposeunicode";
  288. /** The "pruneexpire" key */
  289. public static final String CONFIG_KEY_PRUNEEXPIRE = "pruneexpire";
  290. /**
  291. * The "prunepackexpire" key
  292. * @since 4.3
  293. */
  294. public static final String CONFIG_KEY_PRUNEPACKEXPIRE = "prunepackexpire";
  295. /**
  296. * The "logexpiry" key
  297. *
  298. * @since 4.7
  299. */
  300. public static final String CONFIG_KEY_LOGEXPIRY = "logExpiry";
  301. /**
  302. * The "autodetach" key
  303. *
  304. * @since 4.7
  305. */
  306. public static final String CONFIG_KEY_AUTODETACH = "autoDetach";
  307. /**
  308. * The "aggressiveDepth" key
  309. * @since 3.6
  310. */
  311. public static final String CONFIG_KEY_AGGRESSIVE_DEPTH = "aggressiveDepth";
  312. /**
  313. * The "aggressiveWindow" key
  314. * @since 3.6
  315. */
  316. public static final String CONFIG_KEY_AGGRESSIVE_WINDOW = "aggressiveWindow";
  317. /** The "mergeoptions" key */
  318. public static final String CONFIG_KEY_MERGEOPTIONS = "mergeoptions";
  319. /** The "ff" key */
  320. public static final String CONFIG_KEY_FF = "ff";
  321. /**
  322. * The "conflictStyle" key.
  323. *
  324. * @since 5.12
  325. */
  326. public static final String CONFIG_KEY_CONFLICTSTYLE = "conflictStyle";
  327. /**
  328. * The "checkstat" key
  329. *
  330. * @since 3.0
  331. */
  332. public static final String CONFIG_KEY_CHECKSTAT = "checkstat";
  333. /**
  334. * The "renamelimit" key in the "diff" section
  335. * @since 3.0
  336. */
  337. public static final String CONFIG_KEY_RENAMELIMIT = "renamelimit";
  338. /**
  339. * The "trustfolderstat" key in the "core" section
  340. * @since 3.6
  341. */
  342. public static final String CONFIG_KEY_TRUSTFOLDERSTAT = "trustfolderstat";
  343. /**
  344. * The "supportsAtomicFileCreation" key in the "core" section
  345. *
  346. * @since 4.5
  347. */
  348. public static final String CONFIG_KEY_SUPPORTSATOMICFILECREATION = "supportsatomicfilecreation";
  349. /**
  350. * The "noprefix" key in the "diff" section
  351. * @since 3.0
  352. */
  353. public static final String CONFIG_KEY_NOPREFIX = "noprefix";
  354. /**
  355. * A "renamelimit" value in the "diff" section
  356. * @since 3.0
  357. */
  358. public static final String CONFIG_RENAMELIMIT_COPY = "copy";
  359. /**
  360. * A "renamelimit" value in the "diff" section
  361. * @since 3.0
  362. */
  363. public static final String CONFIG_RENAMELIMIT_COPIES = "copies";
  364. /**
  365. * The "renames" key in the "diff" section
  366. * @since 3.0
  367. */
  368. public static final String CONFIG_KEY_RENAMES = "renames";
  369. /**
  370. * The "inCoreLimit" key in the "merge" section. It's a size limit (bytes) used to
  371. * control a file to be stored in {@code Heap} or {@code LocalFile} during the merge.
  372. * @since 4.9
  373. */
  374. public static final String CONFIG_KEY_IN_CORE_LIMIT = "inCoreLimit";
  375. /**
  376. * The "prune" key
  377. * @since 3.3
  378. */
  379. public static final String CONFIG_KEY_PRUNE = "prune";
  380. /**
  381. * The "streamBuffer" key
  382. * @since 4.0
  383. */
  384. public static final String CONFIG_KEY_STREAM_BUFFER = "streamBuffer";
  385. /**
  386. * The "streamRatio" key
  387. * @since 4.0
  388. */
  389. public static final String CONFIG_KEY_STREAM_RATIO = "streamRatio";
  390. /**
  391. * Flag in the filter section whether to use JGit's implementations of
  392. * filters and hooks
  393. * @since 4.6
  394. */
  395. public static final String CONFIG_KEY_USEJGITBUILTIN = "useJGitBuiltin";
  396. /**
  397. * The "fetchRecurseSubmodules" key
  398. * @since 4.7
  399. */
  400. public static final String CONFIG_KEY_FETCH_RECURSE_SUBMODULES = "fetchRecurseSubmodules";
  401. /**
  402. * The "recurseSubmodules" key
  403. * @since 4.7
  404. */
  405. public static final String CONFIG_KEY_RECURSE_SUBMODULES = "recurseSubmodules";
  406. /**
  407. * The "required" key
  408. * @since 4.11
  409. */
  410. public static final String CONFIG_KEY_REQUIRED = "required";
  411. /**
  412. * The "lfs" section
  413. * @since 4.11
  414. */
  415. public static final String CONFIG_SECTION_LFS = "lfs";
  416. /**
  417. * The "i18n" section
  418. *
  419. * @since 5.2
  420. */
  421. public static final String CONFIG_SECTION_I18N = "i18n";
  422. /**
  423. * The "commitEncoding" key
  424. *
  425. * @since 5.12
  426. */
  427. public static final String CONFIG_KEY_COMMIT_ENCODING = "commitEncoding";
  428. /**
  429. * The "logOutputEncoding" key
  430. *
  431. * @since 5.2
  432. */
  433. public static final String CONFIG_KEY_LOG_OUTPUT_ENCODING = "logOutputEncoding";
  434. /**
  435. * The "filesystem" section
  436. * @since 5.1.9
  437. */
  438. public static final String CONFIG_FILESYSTEM_SECTION = "filesystem";
  439. /**
  440. * The "timestampResolution" key
  441. * @since 5.1.9
  442. */
  443. public static final String CONFIG_KEY_TIMESTAMP_RESOLUTION = "timestampResolution";
  444. /**
  445. * The "minRacyThreshold" key
  446. * @since 5.1.9
  447. */
  448. public static final String CONFIG_KEY_MIN_RACY_THRESHOLD = "minRacyThreshold";
  449. /**
  450. * The "refStorage" key
  451. *
  452. * @since 5.6.2
  453. */
  454. public static final String CONFIG_KEY_REF_STORAGE = "refStorage";
  455. /**
  456. * The "extensions" section
  457. *
  458. * @since 5.6.2
  459. */
  460. public static final String CONFIG_EXTENSIONS_SECTION = "extensions";
  461. /**
  462. * The extensions.refStorage key
  463. * @since 5.7
  464. */
  465. public static final String CONFIG_KEY_REFSTORAGE = "refStorage";
  466. /**
  467. * The "reftable" refStorage format
  468. * @since 5.7
  469. */
  470. public static final String CONFIG_REF_STORAGE_REFTABLE = "reftable";
  471. /**
  472. * The "jmx" section
  473. * @since 5.1.13
  474. */
  475. public static final String CONFIG_JMX_SECTION = "jmx";
  476. /**
  477. * The "pack.bigfilethreshold" key
  478. * @since 5.8
  479. */
  480. public static final String CONFIG_KEY_BIGFILE_THRESHOLD = "bigfilethreshold";
  481. /**
  482. * The "pack.bitmapContiguousCommitCount" key
  483. * @since 5.8
  484. */
  485. public static final String CONFIG_KEY_BITMAP_CONTIGUOUS_COMMIT_COUNT = "bitmapcontiguouscommitcount";
  486. /**
  487. * The "pack.bitmapDistantCommitSpan" key
  488. * @since 5.8
  489. */
  490. public static final String CONFIG_KEY_BITMAP_DISTANT_COMMIT_SPAN = "bitmapdistantcommitspan";
  491. /**
  492. * The "pack.bitmapExcessiveBranchCount" key
  493. * @since 5.8
  494. */
  495. public static final String CONFIG_KEY_BITMAP_EXCESSIVE_BRANCH_COUNT = "bitmapexcessivebranchcount";
  496. /**
  497. * The "pack.bitmapInactiveBranchAgeInDays" key
  498. * @since 5.8
  499. */
  500. public static final String CONFIG_KEY_BITMAP_INACTIVE_BRANCH_AGE_INDAYS = "bitmapinactivebranchageindays";
  501. /**
  502. * The "pack.bitmapRecentCommitSpan" key
  503. * @since 5.8
  504. */
  505. public static final String CONFIG_KEY_BITMAP_RECENT_COMMIT_COUNT = "bitmaprecentcommitspan";
  506. /**
  507. * The "pack.buildBitmaps" key
  508. * @since 5.8
  509. */
  510. public static final String CONFIG_KEY_BUILD_BITMAPS = "buildbitmaps";
  511. /**
  512. * The "pack.cutDeltaChains" key
  513. * @since 5.8
  514. */
  515. public static final String CONFIG_KEY_CUT_DELTACHAINS = "cutdeltachains";
  516. /**
  517. * The "pack.deltaCacheLimit" key
  518. * @since 5.8
  519. */
  520. public static final String CONFIG_KEY_DELTA_CACHE_LIMIT = "deltacachelimit";
  521. /**
  522. * The "pack.deltaCacheSize" key
  523. * @since 5.8
  524. */
  525. public static final String CONFIG_KEY_DELTA_CACHE_SIZE = "deltacachesize";
  526. /**
  527. * The "pack.deltaCompression" key
  528. * @since 5.8
  529. */
  530. public static final String CONFIG_KEY_DELTA_COMPRESSION = "deltacompression";
  531. /**
  532. * The "pack.depth" key
  533. * @since 5.8
  534. */
  535. public static final String CONFIG_KEY_DEPTH = "depth";
  536. /**
  537. * The "pack.minSizePreventRacyPack" key
  538. * @since 5.8
  539. */
  540. public static final String CONFIG_KEY_MIN_SIZE_PREVENT_RACYPACK = "minsizepreventracypack";
  541. /**
  542. * The "pack.reuseDeltas" key
  543. * @since 5.8
  544. */
  545. public static final String CONFIG_KEY_REUSE_DELTAS = "reusedeltas";
  546. /**
  547. * The "pack.reuseObjects" key
  548. * @since 5.8
  549. */
  550. public static final String CONFIG_KEY_REUSE_OBJECTS = "reuseobjects";
  551. /**
  552. * The "pack.singlePack" key
  553. * @since 5.8
  554. */
  555. public static final String CONFIG_KEY_SINGLE_PACK = "singlepack";
  556. /**
  557. * The "pack.threads" key
  558. * @since 5.8
  559. */
  560. public static final String CONFIG_KEY_THREADS = "threads";
  561. /**
  562. * The "pack.waitPreventRacyPack" key
  563. * @since 5.8
  564. */
  565. public static final String CONFIG_KEY_WAIT_PREVENT_RACYPACK = "waitpreventracypack";
  566. /**
  567. * The "pack.window" key
  568. * @since 5.8
  569. */
  570. public static final String CONFIG_KEY_WINDOW = "window";
  571. /**
  572. * The "pack.windowMemory" key
  573. * @since 5.8
  574. */
  575. public static final String CONFIG_KEY_WINDOW_MEMORY = "windowmemory";
  576. /**
  577. * The "feature" section
  578. *
  579. * @since 5.9
  580. */
  581. public static final String CONFIG_FEATURE_SECTION = "feature";
  582. /**
  583. * The "feature.manyFiles" key
  584. *
  585. * @since 5.9
  586. */
  587. public static final String CONFIG_KEY_MANYFILES = "manyFiles";
  588. /**
  589. * The "index" section
  590. *
  591. * @since 5.9
  592. */
  593. public static final String CONFIG_INDEX_SECTION = "index";
  594. /**
  595. * The "version" key
  596. *
  597. * @since 5.9
  598. */
  599. public static final String CONFIG_KEY_VERSION = "version";
  600. /**
  601. * The "init" section
  602. *
  603. * @since 5.11
  604. */
  605. public static final String CONFIG_INIT_SECTION = "init";
  606. /**
  607. * The "defaultBranch" key
  608. *
  609. * @since 5.11
  610. */
  611. public static final String CONFIG_KEY_DEFAULT_BRANCH = "defaultbranch";
  612. /**
  613. * The "pack.searchForReuseTimeout" key
  614. *
  615. * @since 5.13
  616. */
  617. public static final String CONFIG_KEY_SEARCH_FOR_REUSE_TIMEOUT = "searchforreusetimeout";
  618. }