Searched refs:stat (Results 1 – 4 of 4) 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 …]
424 SIZE=$( stat -f %z "$SRC" )426 SIZE=$( stat -c %s "$SRC" )
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)1555 mode = os.stat(path).st_mode1556 return (mode & (stat.S_IRUSR | stat.S_IRGRP | stat.S_IROTH)) != 0