Hoogle Search
Within LTS Haskell 24.45 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
settingSeed :: Settings -> !SeedSettingsydtest Test.Syd.OptParse The seed to use for deterministic randomness
settingSkipPassed :: Settings -> !Boolsydtest Test.Syd.OptParse Whether to skip running tests that have already passed.
settingThreads :: Settings -> !Threadssydtest Test.Syd.OptParse How parallel to run the test suite
settingTimeout :: Settings -> !Timeoutsydtest Test.Syd.OptParse How many microseconds wait for a test to finish before considering it failed
setPseudorandomness :: SeedSetting -> IO ()sydtest Test.Syd.Runner 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.