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.
setCookieHttpOnly :: SetCookie -> Boolcookie Web.Cookie Marks the cookie as "HTTP only", i.e. not accessible from Javascript. Default value: False
setCookieMaxAge :: SetCookie -> Maybe DiffTimecookie Web.Cookie The maximum time to keep the cookie, in seconds. Default value: Nothing (The browser defaults to expiring a cookie when the browser is closed).
setCookieName :: SetCookie -> ByteStringcookie Web.Cookie The name of the cookie. Default value: "name"
setCookiePartitioned :: SetCookie -> Boolcookie Web.Cookie Cookies marked Partitioned are double-keyed: by the origin that sets them and the origin of the top-level page. Default value: False
setCookiePath :: SetCookie -> Maybe ByteStringcookie Web.Cookie The URL path for which the cookie should be sent. Default value: Nothing (The browser defaults to the path of the request that sets the cookie).
setCookieSameSite :: SetCookie -> Maybe SameSiteOptioncookie Web.Cookie The "same site" policy of the cookie, i.e. whether it should be sent with cross-site requests. Default value: Nothing
setCookieSecure :: SetCookie -> Boolcookie Web.Cookie Instructs the browser to only send the cookie over HTTPS. Default value: False
setCookieValue :: SetCookie -> ByteStringcookie Web.Cookie The value of the cookie. Default value: "value"
setOf :: Ord a => Getting (Endo [a]) s a -> s -> Set amicrolens-th Lens.Micro.TH.Internal No documentation available.
setAccessTime :: MonadIO m => Path b t -> UTCTime -> m ()path-io Path.IO Change the time at which the file or directory was last accessed. The operation may fail with:
- isPermissionError if the user is not permitted to alter the access time; or
- isDoesNotExistError if the file or directory does not exist.
- Not all systems support utimensat, in which case the function can only emulate the behavior by reading the modification time and then setting both the access and modification times together. On systems where utimensat is supported, the access time is set atomically with nanosecond precision.
- If compiled against a version of unix prior to 2.7.0.0, the function would not be able to set timestamps with sub-second resolution. In this case, there would also be loss of precision in the modification time.