Hoogle Search
Within LTS Haskell 24.52 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
settingsSize :: PoolSettings -> Naturalfaktory Faktory.Settings Maximum pool size Default is 10. Smallest acceptable value is 1. Note that, due to the striping behavior of resource-pool, a configured size N may result in N - 1 resources.
settingsTimeout :: PoolSettings -> Naturalfaktory Faktory.Settings How long before destroying a resource, in seconds Default is 600.
settingClientSupported :: TLSSettings -> Supportedfaktory Network.Connection.Compat Used for the clientSupported member of ClientParams.
settingDisableCertificateValidation :: TLSSettings -> Boolfaktory Network.Connection.Compat Disable certificate verification completely, this make TLS/SSL vulnerable to a MITM attack. not recommended to use, but for testing.
settingDisableSession :: TLSSettings -> Boolfaktory Network.Connection.Compat Disable session management. TLS/SSL connections will always re-established their context. Not Implemented Yet.
settingUseServerName :: TLSSettings -> Boolfaktory Network.Connection.Compat Use server name extension. Not Implemented Yet.
-
fitspec Test.FitSpec.Engine property-sets in the equivalence class
setRequest :: RequestContext ctxt => ctxt -> FnRequest -> ctxtfn Web.Fn No documentation available.
setFocusFL :: Int -> FocusList a -> Maybe (FocusList a)focuslist Data.FocusList Set the Focus for a FocusList. This is just like updateFocusFL, but doesn't return the newly focused item.
setFocusFL i fl == fmap snd (updateFocusFL i fl)
complexity: O(1)setFocusItemFL :: a -> FocusList a -> FocusList afocuslist Data.FocusList Set the item the FocusList is focusing on.
>>> let Just fl = fromListFL (Focus 1) [10, 20, 30] >>> setFocusItemFL 0 fl FocusList (Focus 1) [10,0,30]
>>> setFocusItemFL "hello" emptyFL FocusList NoFocus []
Note: this function forces the updated item. The following throws an exception from undefined even though we updated the focused item at index 1, but lookup the item at index 0.>>> let Just fl = fromListFL (Focus 1) [10, 20, 30] >>> let newFl = setFocusItemFL undefined fl >>> lookupFL 0 newFl *** Exception: ... ...
This is a specialization of updateFocusItemFL:updateFocusItemFL (const a) fl == setFocusItemFL a fl
complexity: O(log(min(i, n - i))) where i is the Focus, and n is the length of the FocusList.