Hoogle Search
Within LTS Haskell 24.33 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
setEmptyBody :: SomeResponse -> SomeResponseservant-server Servant.Server.Internal.ResponseRender No documentation available.
setFdMode :: Fd -> FileMode -> IO ()unix-compat System.PosixCompat.Files setFdMode fd mode acts like setFileMode but uses a file descriptor fd instead of a FilePath. Note: calls fchmod.
setFdOwnerAndGroup :: Fd -> UserID -> GroupID -> IO ()unix-compat System.PosixCompat.Files Acts as setOwnerAndGroup but uses a file descriptor instead of a FilePath. Note: calls fchown.
setFdSize :: Fd -> FileOffset -> IO ()unix-compat System.PosixCompat.Files Acts as setFileSize but uses a file descriptor instead of a FilePath. Note: calls ftruncate.
setFileCreationMask :: FileMode -> IO FileModeunix-compat System.PosixCompat.Files setFileCreationMask mode sets the file mode creation mask to mode. Modes set by this operation are subtracted from files and directories upon creation. The previous file creation mask is returned. Note: calls umask.
setFileMode :: FilePath -> FileMode -> IO ()unix-compat System.PosixCompat.Files setFileMode path mode changes permission of the file given by path to mode. This operation may fail with throwErrnoPathIfMinus1_ if path doesn't exist or if the effective user ID of the current process is not that of the file's owner. Note: calls chmod.
setFileSize :: FilePath -> FileOffset -> IO ()unix-compat System.PosixCompat.Files Truncates the file down to the specified length. If the file was larger than the given length before this operation was performed the extra is lost. Note: calls truncate.
setFileTimes :: FilePath -> EpochTime -> EpochTime -> IO ()unix-compat System.PosixCompat.Files setFileTimes path atime mtime sets the access and modification times associated with file path to atime and mtime, respectively. Note: calls utime.
-
unix-compat System.PosixCompat.Files Set group ID on execution.
setOwnerAndGroup :: FilePath -> UserID -> GroupID -> IO ()unix-compat System.PosixCompat.Files setOwnerAndGroup path uid gid changes the owner and group of path to uid and gid, respectively. If uid or gid is specified as -1, then that ID is not changed. Note: calls chown.