Lines Matching refs:tempDir

205         final File tempDir = prepareTempDir(backendCfg, importConfig.getTmpDirectory());
208 ? new SortAndImportWithoutDNValidation(entryContainers, dbStorage, tempDir, bufferPool, sorter)
209 : new SortAndImportWithDNValidation(entryContainers, dbStorage, tempDir, bufferPool, sorter);
304 final File tempDir = prepareTempDir(backendCfg, tmpDirectory);
315 rootContainer.getEntryContainers(), dbStorage, tempDir, bufferPool, sorter, indexesToRebuild);
461 final File tempDir =
463 recursiveDelete(tempDir);
464 if (!tempDir.exists() && !tempDir.mkdirs())
466 throw new InitializationException(ERR_IMPORT_CREATE_TMPDIR_ERROR.get(tempDir));
468 return tempDir;
937 protected final File tempDir;
939 AbstractTwoPhaseImportStrategy(Collection<EntryContainer> entryContainers, Importer importer, File tempDir,
948 this.tempDir = tempDir;
978 return new ExternalSortChunk(tempDir, treeName.toString(), bufferPool,
994 return new DN2IDImporterTask(progressReporter, importer, tempDir, bufferPool, entryContainer.getDN2ID(), source,
1028 SortAndImportWithoutDNValidation(Collection<EntryContainer> entryContainers, Importer importer, File tempDir,
1031 super(entryContainers, importer, tempDir, bufferPool, sorter);
1083 SortAndImportWithDNValidation(Collection<EntryContainer> entryContainers, Importer importer, File tempDir,
1086 super(entryContainers, importer, tempDir, bufferPool, sorter);
1167 RebuildIndexStrategy(Collection<EntryContainer> entryContainers, Importer importer, File tempDir,
1170 super(entryContainers, importer, tempDir, bufferPool, sorter);
1426 ExternalSortChunk(File tempDir, String name, BufferPool bufferPool, Collector<?, ByteString> collector,
1433 candidateFile = new File(tempDir, (name + UUID.randomUUID()).replaceAll("\\W+", "_"));
2281 private final File tempDir;
2289 DN2IDImporterTask(PhaseTwoProgressReporter progressReporter, Importer importer, File tempDir, BufferPool bufferPool,
2295 this.tempDir = tempDir;
2308 new ExternalSortChunk(tempDir, id2count.getName().toString(), bufferPool, id2countCollector,