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.

  1. settingsSize :: PoolSettings -> Natural

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

  2. settingsTimeout :: PoolSettings -> Natural

    faktory Faktory.Settings

    How long before destroying a resource, in seconds Default is 600.

  3. settingClientSupported :: TLSSettings -> Supported

    faktory Network.Connection.Compat

    Used for the clientSupported member of ClientParams.

  4. settingDisableCertificateValidation :: TLSSettings -> Bool

    faktory Network.Connection.Compat

    Disable certificate verification completely, this make TLS/SSL vulnerable to a MITM attack. not recommended to use, but for testing.

  5. settingDisableSession :: TLSSettings -> Bool

    faktory Network.Connection.Compat

    Disable session management. TLS/SSL connections will always re-established their context. Not Implemented Yet.

  6. settingUseServerName :: TLSSettings -> Bool

    faktory Network.Connection.Compat

    Use server name extension. Not Implemented Yet.

  7. sets :: Result a -> [[Int]]

    fitspec Test.FitSpec.Engine

    property-sets in the equivalence class

  8. setRequest :: RequestContext ctxt => ctxt -> FnRequest -> ctxt

    fn Web.Fn

    No documentation available.

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

  10. setFocusItemFL :: a -> FocusList a -> FocusList a

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

Page 778 of many | Previous | Next