示例#1
0
def directWriteLines(path, lines):
    with fileUtils.open_ex(path, "dw") as f:
        return f.writelines(lines)
示例#2
0
文件: blockSD.py 项目: openSUSE/vdsm
 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
示例#3
0
def directReadLines(path):
    with fileUtils.open_ex(path, "dr") as f:
        return f.readlines()
示例#4
0
def directWriteLines(path, lines):
    with fileUtils.open_ex(path, "dw") as f:
        return f.writelines(lines)
示例#5
0
def directReadLines(path):
    with fileUtils.open_ex(path, "dr") as f:
        return f.readlines()
示例#6
0
def _directWriteLines(path, lines):
    with open_ex(path, "dw") as f:
        return f.writelines(lines)
示例#7
0
def _directReadLines(path):
    with open_ex(path, "dr") as f:
        return f.readlines()
示例#8
0
def _directWriteLines(path, lines):
    with open_ex(path, "dw") as f:
        return f.writelines(lines)
示例#9
0
def _directReadLines(path):
    with open_ex(path, "dr") as f:
        return f.readlines()
示例#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