Searched refs:stat (Results 1 – 5 of 5) sorted by relevance
417 for stat in stats:420 'Commit': stat['commit'],422 'Author': stat['author'],423 'Subject': stat['subject'],451 for stat in project_stats:453 downstream_project = stat['downstream']459 'Upstream Project': stat['upstream'],460 'Diff Status': stat['status'],461 'Files Changed': stat['file'],462 'Line Insertions': stat['insertion'],[all …]
22 import stat55 permissions = (stat.S_IXUSR | stat.S_IXGRP | stat.S_IXOTH |56 stat.S_IRUSR | stat.S_IRGRP | stat.S_IROTH)61 file_stat = os.stat(file_path)
152 size = os.stat(full_path).st_size
17 import stat109 import stat121 return os.stat(path) if follow_symlinks else os.lstat(path)123 def stat(self, follow_symlinks=True): member in DirEntry133 return stat.S_ISDIR(self.stat(follow_symlinks).st_mode)139 return stat.S_ISREG(self.stat(follow_symlinks).st_mode)144 return stat.S_ISLNK(self.stat(follow_symlinks=False).st_mode)1641 mode = os.stat(path).st_mode1642 return (mode & (stat.S_IRUSR | stat.S_IRGRP | stat.S_IROTH)) != 0
423 SIZE=$( stat -c %s "$SRC" )