Esempio n. 1
0
def directWriteLines(path, lines):
    with fileUtils.open_ex(path, "dw") as f:
        return f.writelines(lines)
Esempio n. 2
0
 def getReadDelay(self):
     with fileUtils.open_ex(lvm.lvPath(self.sdUUID, sd.METADATA), "dr") as f:
         t = time.time()
         f.read(4096)
         return time.time() - t
Esempio n. 3
0
def directReadLines(path):
    with fileUtils.open_ex(path, "dr") as f:
        return f.readlines()
Esempio n. 4
0
def directWriteLines(path, lines):
    with fileUtils.open_ex(path, "dw") as f:
        return f.writelines(lines)
Esempio n. 5
0
def directReadLines(path):
    with fileUtils.open_ex(path, "dr") as f:
        return f.readlines()
Esempio n. 6
0
def _directWriteLines(path, lines):
    with open_ex(path, "dw") as f:
        return f.writelines(lines)
Esempio n. 7
0
def _directReadLines(path):
    with open_ex(path, "dr") as f:
        return f.readlines()
Esempio n. 8
0
def _directWriteLines(path, lines):
    with open_ex(path, "dw") as f:
        return f.writelines(lines)
Esempio n. 9
0
def _directReadLines(path):
    with open_ex(path, "dr") as f:
        return f.readlines()
Esempio n. 10
0
 def getReadDelay(self):
     with fileUtils.open_ex(lvm.lvPath(self.sdUUID, sd.METADATA),
                            "dr") as f:
         t = time.time()
         f.read(4096)
         return time.time() - t