返回 DeepSeek-Reasonix
source_flags_unix.go
根目录 / internal / attachment / source_flags_unix.go
1 //go:build unix
2
3 package attachment
4
5 import (
6 "os"
7 "syscall"
8 )
9
10 // A file replaced by a FIFO between Lstat and Open must not stall admission.
11 const imageReadFlags = os.O_RDONLY | syscall.O_NONBLOCK | syscall.O_NOFOLLOW
12
12 lines GO