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. setCookieHttpOnly :: SetCookie -> Bool

    cookie Web.Cookie

    Marks the cookie as "HTTP only", i.e. not accessible from Javascript. Default value: False

  2. setCookieMaxAge :: SetCookie -> Maybe DiffTime

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

  3. setCookieName :: SetCookie -> ByteString

    cookie Web.Cookie

    The name of the cookie. Default value: "name"

  4. setCookiePartitioned :: SetCookie -> Bool

    cookie 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

  5. setCookiePath :: SetCookie -> Maybe ByteString

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

  6. setCookieSameSite :: SetCookie -> Maybe SameSiteOption

    cookie Web.Cookie

    The "same site" policy of the cookie, i.e. whether it should be sent with cross-site requests. Default value: Nothing

  7. setCookieSecure :: SetCookie -> Bool

    cookie Web.Cookie

    Instructs the browser to only send the cookie over HTTPS. Default value: False

  8. setCookieValue :: SetCookie -> ByteString

    cookie Web.Cookie

    The value of the cookie. Default value: "value"

  9. setOf :: Ord a => Getting (Endo [a]) s a -> s -> Set a

    microlens-th Lens.Micro.TH.Internal

    No documentation available.

  10. 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.
    Some caveats for POSIX systems:
    • 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.
    Note: this is a piece of conditional API, only available if directory-1.2.3.0 or later is used.

Page 206 of many | Previous | Next