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.

  1. setEmptyBody :: SomeResponse -> SomeResponse

    servant-server Servant.Server.Internal.ResponseRender

    No documentation available.

  2. 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.

  3. 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.

  4. setFdSize :: Fd -> FileOffset -> IO ()

    unix-compat System.PosixCompat.Files

    Acts as setFileSize but uses a file descriptor instead of a FilePath. Note: calls ftruncate.

  5. setFileCreationMask :: FileMode -> IO FileMode

    unix-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.

  6. 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.

  7. 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.

  8. 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.

  9. setGroupIDMode :: FileMode

    unix-compat System.PosixCompat.Files

    Set group ID on execution.

  10. 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.

Page 197 of many | Previous | Next