Home
last modified time | relevance | path

Searched refs:dataRoot (Results 1 – 25 of 116) sorted by relevance

12345

/dports/devel/py-opengrok-tools/opengrok-1.3.16/opengrok-indexer/src/test/java/org/opengrok/indexer/util/
H A DTestRepository.java47 private File dataRoot; field in TestRepository
56 dataRoot = Files.createTempDirectory("data").toFile(); in createEmpty()
58 env.setDataRoot(dataRoot.getAbsolutePath()); in createEmpty()
79 if (dataRoot != null) { in destroy()
80 FileUtilities.removeDirs(dataRoot); in destroy()
89 if (dataRoot != null) { in purgeData()
90 assertTrue("should delete dataRoot", FileUtilities.removeDirs(dataRoot)); in purgeData()
91 assertFalse("dataRoot should not exist", dataRoot.exists()); in purgeData()
92 assertTrue("should recreate dataRoot", dataRoot.mkdir()); in purgeData()
101 return dataRoot.getAbsolutePath(); in getDataRoot()
/dports/math/vtk9/VTK-9.1.0/IO/HDF/Testing/Cxx/
H A DTestHDFReader.cxx183 int TestImageData(const std::string& dataRoot) in TestImageData() argument
187 std::string fileName = dataRoot + "/Data/mandelbrot-vti.hdf"; in TestImageData()
215 int TestUnstructuredGrid(const std::string& dataRoot) in TestUnstructuredGrid() argument
224 fileName = dataRoot + "/Data/can-pvtu.hdf"; in TestUnstructuredGrid()
225 expectedName = dataRoot + "/Data/can.pvtu"; in TestUnstructuredGrid()
230 fileName = dataRoot + "/Data/can-vtu.hdf"; in TestUnstructuredGrid()
231 expectedName = dataRoot + "/Data/can.vtu"; in TestUnstructuredGrid()
260 std::string dataRoot = testHelper->GetDataRoot(); in TestHDFReader() local
261 if (TestImageData(dataRoot)) in TestHDFReader()
266 if (TestUnstructuredGrid<false /*parallel*/>(dataRoot)) in TestHDFReader()
[all …]
/dports/devel/py-twisted/Twisted-22.1.0/src/twisted/conch/openssh_compat/
H A Dfactory.py19 dataRoot = "/usr/local/etc" variable in OpenSSHFactory
28 for filename in os.listdir(self.dataRoot):
31 k = keys.Key.fromFile(os.path.join(self.dataRoot, filename))
47 for filename in os.listdir(self.dataRoot):
49 fullPath = os.path.join(self.dataRoot, filename)
/dports/math/vtk6/VTK-6.2.0/ThirdParty/Twisted/twisted/conch/openssh_compat/
H A Dfactory.py21 dataRoot = '/usr/local/etc' variable in OpenSSHFactory
31 for filename in os.listdir(self.dataRoot):
35 os.path.join(self.dataRoot, filename))
48 for filename in os.listdir(self.dataRoot):
50 fullPath = os.path.join(self.dataRoot, filename)
/dports/math/vtk9/VTK-9.1.0/Wrapping/Python/vtkmodules/util/
H A Dmisc.py42 dataRoot = None
45 dataRoot = sys.argv[i+1]
47 if dataRoot is None:
48 dataRoot = os.environ.get('VTK_DATA_ROOT', '../../../../VTKData')
50 return dataRoot
/dports/devel/umbrello/umbrello-21.12.3/umbrello/
H A Dfile_utils.cpp24 QString dataRoot = QCoreApplication::applicationDirPath() + QLatin1String("/../"); in xmlCatalogFilePath() local
26 QString dataRoot = QLatin1String("/"); in xmlCatalogFilePath()
28 QFileInfo fi(dataRoot + QLatin1String("etc/xml/catalog")); in xmlCatalogFilePath()
/dports/math/vtk6/VTK-6.2.0/Wrapping/Python/vtk/util/
H A Dmisc.py41 dataRoot = sys.argv[dataIndex]
44 dataRoot = os.environ['VTK_DATA_ROOT']
46 dataRoot = '../../../../VTKData'
48 return dataRoot
/dports/math/vtk8/VTK-8.2.0/Wrapping/Python/vtkmodules/util/
H A Dmisc.py46 dataRoot = sys.argv[dataIndex]
49 dataRoot = os.environ['VTK_DATA_ROOT']
51 dataRoot = '../../../../VTKData'
53 return dataRoot
/dports/devel/py-opengrok-tools/opengrok-1.3.16/opengrok-indexer/src/test/java/org/opengrok/indexer/configuration/
H A DConfigMergeTest.java38 String dataRoot = "/bar"; in basicTest() local
43 cfgBase.setDataRoot(dataRoot); in basicTest()
51 assertEquals(cfgNew.getDataRoot(), dataRoot); in basicTest() local
/dports/math/vtk9/VTK-9.1.0/IO/ParallelXML/Testing/Cxx/
H A DTestXMLReaderChangingBlocksOverTime.cxx35 const std::string dataRoot = vtkTestUtilities::GetDataRoot(argc, argv); in TestXMLReaderChangingBlocksOverTime() local
36 std::string filename(dataRoot); in TestXMLReaderChangingBlocksOverTime()
43 filename = dataRoot + "/Data/ChangingBlocksOverTime/wavelet_1.vtm"; in TestXMLReaderChangingBlocksOverTime()
/dports/x11-toolkits/ctk/CTK-2018-10-29/Libs/PluginFramework/
H A DctkPluginContext.cpp109 QDir dataRoot(d->plugin->getDataRoot().absolutePath()); in getDataFile() local
110 if (!dataRoot.exists()) in getDataFile()
112 if (!dataRoot.mkpath(dataRoot.absolutePath())) in getDataFile()
114 qWarning() << "Could not create persistent storage area:" << dataRoot.absolutePath(); in getDataFile()
117 return QFileInfo(dataRoot.absolutePath() + '/' + filename); in getDataFile()
/dports/math/vtk9/VTK-9.1.0/IO/Geometry/Testing/Cxx/
H A DTestTecplotReader2.cxx72 char* dataRoot = vtkTestUtilities::GetDataRoot(argc, argv); in TestTecplotReader2() local
73 const std::string tecplotDir = std::string(dataRoot) + "/Data/TecPlot/"; in TestTecplotReader2()
115 delete[] dataRoot; in TestTecplotReader2()
/dports/sysutils/helm/helm-3.5.2/vendor/github.com/docker/docker/daemon/graphdriver/lcow/
H A Dlcow.go118 dataRoot string // Root path on the host where we are storing everything. member
153 cd := filepath.Join(dataRoot, cacheDirectory)
154 sd := filepath.Join(dataRoot, scratchDirectory)
157 dataRoot: dataRoot,
185 return nil, fmt.Errorf("%s failed to create '%s': %v", title, dataRoot, err)
201 logrus.Infof("%s dataRoot: %s globalMode: %t", title, dataRoot, d.globalMode)
276 scratchTargetFile := filepath.Join(d.dataRoot, scratchDirectory, fmt.Sprintf("%s.vhdx", id))
715 items, err := ioutil.ReadDir(d.dataRoot)
729 if err := os.RemoveAll(filepath.Join(d.dataRoot, item.Name())); err != nil {
832 size, err := svm.config.TarToVhd(filepath.Join(d.dataRoot, id, layerFilename), diff)
[all …]
/dports/security/vault/vault-1.8.2/vendor/github.com/docker/docker/daemon/graphdriver/lcow/
H A Dlcow.go118 dataRoot string // Root path on the host where we are storing everything. member
153 cd := filepath.Join(dataRoot, cacheDirectory)
154 sd := filepath.Join(dataRoot, scratchDirectory)
157 dataRoot: dataRoot,
185 return nil, fmt.Errorf("%s failed to create '%s': %v", title, dataRoot, err)
201 logrus.Infof("%s dataRoot: %s globalMode: %t", title, dataRoot, d.globalMode)
276 scratchTargetFile := filepath.Join(d.dataRoot, scratchDirectory, fmt.Sprintf("%s.vhdx", id))
715 items, err := ioutil.ReadDir(d.dataRoot)
729 if err := os.RemoveAll(filepath.Join(d.dataRoot, item.Name())); err != nil {
832 size, err := svm.config.TarToVhd(filepath.Join(d.dataRoot, id, layerFilename), diff)
[all …]
/dports/devel/gdcm/gdcm-3.0.10/Utilities/VTK/Examples/Csharp/
H A DHelloActiviz5.cs49 string dataRoot = testHelper.GetDataRoot(); in Main()
50 string filename = dataRoot; in Main()
54 if( dir.FileIsDirectory( dataRoot ) == 0 ) in Main()
/dports/math/vtk9/VTK-9.1.0/Views/Infovis/Testing/Cxx/
H A DTestTreeMapView.cxx42 string dataRoot = testHelper->GetDataRoot(); in TestTreeMapView() local
43 string treeFileName = dataRoot + "/Data/Infovis/XML/vtkclasses.xml"; in TestTreeMapView()
44 string graphFileName = dataRoot + "/Data/Infovis/XML/vtklibrary.xml"; in TestTreeMapView()
H A DTestHierarchicalGraphView.cxx45 string dataRoot = testHelper->GetDataRoot(); in TestHierarchicalGraphView() local
46 string treeFileName = dataRoot + "/Data/Infovis/XML/vtklibrary.xml"; in TestHierarchicalGraphView()
47 string graphFileName = dataRoot + "/Data/Infovis/XML/vtkclasses.xml"; in TestHierarchicalGraphView()
H A DTestTreeRingView.cxx43 string dataRoot = testHelper->GetDataRoot(); in TestTreeRingView() local
44 string treeFileName = dataRoot + "/Data/Infovis/XML/vtkclasses.xml"; in TestTreeRingView()
45 string graphFileName = dataRoot + "/Data/Infovis/XML/vtklibrary.xml"; in TestTreeRingView()
/dports/math/vtk6/VTK-6.2.0/Views/Infovis/Testing/Cxx/
H A DTestTreeMapView.cxx43 string dataRoot = testHelper->GetDataRoot(); in TestTreeMapView() local
44 string treeFileName = dataRoot + "/Data/Infovis/XML/vtkclasses.xml"; in TestTreeMapView()
45 string graphFileName = dataRoot + "/Data/Infovis/XML/vtklibrary.xml"; in TestTreeMapView()
H A DTestHierarchicalGraphView.cxx46 string dataRoot = testHelper->GetDataRoot(); in TestHierarchicalGraphView() local
47 string treeFileName = dataRoot + "/Data/Infovis/XML/vtklibrary.xml"; in TestHierarchicalGraphView()
48 string graphFileName = dataRoot + "/Data/Infovis/XML/vtkclasses.xml"; in TestHierarchicalGraphView()
H A DTestTreeRingView.cxx44 string dataRoot = testHelper->GetDataRoot(); in TestTreeRingView() local
45 string treeFileName = dataRoot + "/Data/Infovis/XML/vtkclasses.xml"; in TestTreeRingView()
46 string graphFileName = dataRoot + "/Data/Infovis/XML/vtklibrary.xml"; in TestTreeRingView()
/dports/math/vtk8/VTK-8.2.0/IO/Geometry/Testing/Cxx/
H A DTestTecplotReader2.cxx73 char* dataRoot = vtkTestUtilities::GetDataRoot(argc, argv); in TestTecplotReader2() local
74 string tecplotDir = string(dataRoot) + "/Data/TecPlot/"; in TestTecplotReader2()
130 delete[] dataRoot; in TestTecplotReader2()
/dports/math/vtk8/VTK-8.2.0/Views/Infovis/Testing/Cxx/
H A DTestTreeMapView.cxx43 string dataRoot = testHelper->GetDataRoot(); in TestTreeMapView() local
44 string treeFileName = dataRoot + "/Data/Infovis/XML/vtkclasses.xml"; in TestTreeMapView()
45 string graphFileName = dataRoot + "/Data/Infovis/XML/vtklibrary.xml"; in TestTreeMapView()
H A DTestHierarchicalGraphView.cxx46 string dataRoot = testHelper->GetDataRoot(); in TestHierarchicalGraphView() local
47 string treeFileName = dataRoot + "/Data/Infovis/XML/vtklibrary.xml"; in TestHierarchicalGraphView()
48 string graphFileName = dataRoot + "/Data/Infovis/XML/vtkclasses.xml"; in TestHierarchicalGraphView()
H A DTestTreeRingView.cxx44 string dataRoot = testHelper->GetDataRoot(); in TestTreeRingView() local
45 string treeFileName = dataRoot + "/Data/Infovis/XML/vtkclasses.xml"; in TestTreeRingView()
46 string graphFileName = dataRoot + "/Data/Infovis/XML/vtklibrary.xml"; in TestTreeRingView()

12345