MCPcopy Create free account

hub / github.com/Netflix-Skunkworks/sketchy / functions

Functions229 in github.com/Netflix-Skunkworks/sketchy

FunctioncloneDeep
* Creates a deep clone of `value`. If a callback is provided it will be * executed to produce the cloned values. If the callback returns `undefin
sketchy/assets/lodash.js:1798
Functioncompact
* Creates an array with all falsey values removed. The values `false`, `null`, * `0`, `""`, `undefined`, and `NaN` are all falsey. * *
sketchy/assets/lodash.js:4112
FunctioncompareAscending
* Used by `sortBy` to compare transformed `collection` elements, stable sorting * them in ascending order. * * @private * @param {Object}
sketchy/assets/lodash.js:257
Functioncompose
* Creates a function that is the composition of the provided functions, * where each function consumes the return value of the function that foll
sketchy/assets/lodash.js:5282
Functionconstant
* Creates a function that returns `value`. * * @static * @memberOf _ * @category Utilities * @param {*} value The value to re
sketchy/assets/lodash.js:5758
Functioncontains
* Checks if a given value is present in a collection using strict equality * for comparisons, i.e. `===`. If `fromIndex` is negative, it is used
sketchy/assets/lodash.js:2979
Functioncreate
* Creates an object that inherits from the given `prototype` object. If a * `properties` object is provided its own enumerable properties are ass
sketchy/assets/lodash.js:1833
FunctioncreateCallback
* Produces a callback bound to an optional `thisArg`. If `func` is a property * name the created callback will return the property value for a gi
sketchy/assets/lodash.js:5795
Functioncreate_db
Creates a database with all of the tables defined in your Alchemy models
manage.py:35
Functioncurry
* Creates a function which accepts one or more arguments of `func` that when * invoked either executes `func` returning its result, if all `func`
sketchy/assets/lodash.js:5330
Functiondecorated_function
(*args, **kwargs)
sketchy/__init__.py:89
Functiondefer
* Defers executing the `func` function until the current call stack has cleared. * Additional arguments will be provided to `func` when it is inv
sketchy/assets/lodash.js:5490
Functiondelay
* Executes the `func` function after `wait` milliseconds. Additional arguments * will be provided to `func` when it is invoked. * * @st
sketchy/assets/lodash.js:5514
Functiondelayed
()
sketchy/assets/lodash.js:5398
Functiondifference
* Creates an array excluding all values of the provided arrays using strict * equality for comparisons, i.e. `===`. * * @static *
sketchy/assets/lodash.js:4141
Functiondrop_db
Drops a database with all of the tables defined in your Alchemy models
manage.py:51
Functionescape
* Converts the characters `&`, `<`, `>`, `"`, and `'` in `string` to their * corresponding HTML entities. * * @static * @memberOf
sketchy/assets/lodash.js:5844
FunctionescapeHtmlChar
* Used by `escape` to convert characters to HTML entities. * * @private * @param {string} match The matched character to escape. *
sketchy/assets/lodash.js:1459
FunctionescapeStringChar
* Used by `template` to escape characters for inclusion in compiled * string literals. * * @private * @param {string} match The matched ch
sketchy/assets/lodash.js:325
Functionevery
* Checks if the given callback returns truey value for **all** elements of * a collection. The callback is bound to `thisArg` and invoked with th
sketchy/assets/lodash.js:3079
Functionfind
* Iterates over elements of a collection, returning the first element that * the callback returns truey for. The callback is bound to `thisArg` a
sketchy/assets/lodash.js:3207
FunctionfindIndex
* This method is like `_.find` except that it returns the index of the first * element that passes the callback check, instead of the element its
sketchy/assets/lodash.js:4186
FunctionfindKey
* This method is like `_.findIndex` except that it returns the key of the * first element that passes the callback check, instead of the element
sketchy/assets/lodash.js:1921
FunctionfindLast
* This method is like `_.find` except that it iterates over elements * of a `collection` from right to left. * * @static * @member
sketchy/assets/lodash.js:3252
FunctionfindLastIndex
* This method is like `_.findIndex` except that it iterates over elements * of a `collection` from right to left. * * If a property nam
sketchy/assets/lodash.js:4240
FunctionfindLastKey
* This method is like `_.findKey` except that it iterates over elements * of a `collection` in the opposite order. * * If a property na
sketchy/assets/lodash.js:1974
Functionfirst
* Gets the first element or first `n` elements of an array. If a callback * is provided elements at the beginning of the array are returned as lo
sketchy/assets/lodash.js:4302
Functionflatten
* Flattens a nested array (the nesting can be to any depth). If `isShallow` * is truey, the array will only be flattened a single level. If a cal
sketchy/assets/lodash.js:4362
FunctionforInRight
* This method is like `_.forIn` except that it iterates over elements * of a `collection` in the opposite order. * * @static * @me
sketchy/assets/lodash.js:2056
Methodget
Retrieve Captures based on id
sketchy/controllers/static_upload.py:36
Methodget
Retrieve Static based on id
sketchy/controllers/static_upload.py:53
Methodget
Retrieve all static records the database
sketchy/controllers/static_upload.py:91
Methodget
Retrieve Captures based on id
sketchy/controllers/controller.py:42
Methodget
Retrieve Captures based on id
sketchy/controllers/controller.py:60
Methodget
Retrieve all sketch records the database
sketchy/controllers/controller.py:97
Methodget_options
(self)
manage.py:69
Methodhandle
(self, app, *args, **kwargs)
manage.py:86
Functionhas
* Checks if the specified property name exists as a direct property of `object`, * instead of an inherited property. * * @static *
sketchy/assets/lodash.js:2182
Functionhome
()
sketchy/__init__.py:133
Functionidentity
* This method returns the first argument provided to it. * * @static * @memberOf _ * @category Utilities * @param {*} value A
sketchy/assets/lodash.js:5862
Methodinit
(self, parser, opts, args)
manage.py:114
Functioninitial
* Gets all but the last element or last `n` elements of an array. If a * callback is provided elements at the end of the array are excluded from
sketchy/assets/lodash.js:4460
Functionintersection
* Creates an array of unique values present in all provided arrays using * strict equality for comparisons, i.e. `===`. * * @static
sketchy/assets/lodash.js:4490
Functioninvoke
* Invokes the method named by `methodName` on each element in the `collection` * returning an array of the results of each invoked method. Additi
sketchy/assets/lodash.js:3448
FunctionisBoolean
* Checks if `value` is a boolean value. * * @static * @memberOf _ * @category Objects * @param {*} value The value to check.
sketchy/assets/lodash.js:2225
FunctionisDate
* Checks if `value` is a date. * * @static * @memberOf _ * @category Objects * @param {*} value The value to check. * @r
sketchy/assets/lodash.js:2243
FunctionisElement
* Checks if `value` is a DOM element. * * @static * @memberOf _ * @category Objects * @param {*} value The value to check.
sketchy/assets/lodash.js:2260
FunctionisEmpty
* Checks if `value` is empty. Arrays, strings, or `arguments` objects with a * length of `0` and objects with no own enumerable properties are co
sketchy/assets/lodash.js:2285
FunctionisEqual
* Performs a deep comparison between two values to determine if they are * equivalent to each other. If a callback is provided it will be execute
sketchy/assets/lodash.js:2341
FunctionisFinite
* Checks if `value` is, or can be coerced to, a finite number. * * Note: This is not the same as native `isFinite` which will return true fo
sketchy/assets/lodash.js:2373
FunctionisNaN
* Checks if `value` is `NaN`. * * Note: This is not the same as native `isNaN` which will return `true` for * `undefined` and other non
sketchy/assets/lodash.js:2447
FunctionisNull
* Checks if `value` is `null`. * * @static * @memberOf _ * @category Objects * @param {*} value The value to check. * @r
sketchy/assets/lodash.js:2469
FunctionisRegExp
* Checks if `value` is a regular expression. * * @static * @memberOf _ * @category Objects * @param {*} value The value to ch
sketchy/assets/lodash.js:2542
FunctionisUndefined
* Checks if `value` is `undefined`. * * @static * @memberOf _ * @category Objects * @param {*} value The value to check.
sketchy/assets/lodash.js:2577
Functionlast
* Gets the last element or last `n` elements of an array. If a callback is * provided elements at the end of the array are returned as long as th
sketchy/assets/lodash.js:4590
FunctionlastIndexOf
* Gets the index at which the last occurrence of `value` is found using strict * equality for comparisons, i.e. `===`. If `fromIndex` is negative
sketchy/assets/lodash.js:4636
Functionlist_routes
()
manage.py:126
Methodload
(self)
manage.py:120
Functionlodash
* Creates a `lodash` object which wraps the given value to enable intuitive * method chaining. * * In addition to Lo-Dash methods, wrap
sketchy/assets/lodash.js:587
FunctionlodashWrapper
* A fast path for creating `lodash` wrapper objects. * * @private * @param {*} value The value to wrap in a `lodash` instance. * @
sketchy/assets/lodash.js:602
Functionmake_shell_context
Creates a python REPL with several default imports in the context of the app
manage.py:27
FunctionmapValues
* Creates an object with the same keys as `object` and values generated by * running each own enumerable property of `object` through the callbac
sketchy/assets/lodash.js:2617
FunctionmaxDelayed
()
sketchy/assets/lodash.js:5418
Functionmemoize
* Creates a function that memoizes the result of `func`. If `resolver` is * provided it will be used to determine the cache key for storing the r
sketchy/assets/lodash.js:5559
Functionmemoized
()
sketchy/assets/lodash.js:5563
Functionmerge
* Recursively merges own enumerable properties of the source object(s), that * don't resolve to `undefined` into the destination object. Subseque
sketchy/assets/lodash.js:2678
Functionmin
* Retrieves the minimum value of a collection. If the collection is empty or * falsey `Infinity` is returned. If a callback is provided it will b
sketchy/assets/lodash.js:3634
FunctionnoConflict
* Reverts the '_' variable to its previous value and returns a reference to * the `lodash` function. * * @static * @memberOf _
sketchy/assets/lodash.js:5950
Functionnoop
()
sketchy/assets/capture.js:122
Functionnoop
()
sketchy/assets/static.js:92
Functionnoop
* A no-operation function. * * @static * @memberOf _ * @category Utilities * @example * * var object = { 'name': 'f
sketchy/assets/lodash.js:5967
Functionomit
* Creates a shallow clone of `object` excluding the specified properties. * Property names may be specified as individual arguments or as arrays
sketchy/assets/lodash.js:2734
Methodon_failure
(self, exc, task_id, args, kwargs, einfo)
sketchy/__init__.py:54
Functiononce
* Creates a function that is restricted to execute `func` once. Repeat calls to * the function will return the value of the first call. The `func
sketchy/assets/lodash.js:5592
Functionpairs
* Creates a two dimensional array of an object's key-value pairs, * i.e. `[[key1, value1], [key2, value2]]`. * * @static * @member
sketchy/assets/lodash.js:2775
Functionpartial
* Creates a function that, when called, invokes `func` with any additional * `partial` arguments prepended to those provided to the new function.
sketchy/assets/lodash.js:5630
FunctionpartialRight
* This method is like `_.partial` except that `partial` arguments are * appended to those provided to the new function. * * @static
sketchy/assets/lodash.js:5661
Functionpick
* Creates a shallow clone of `object` composed of the specified properties. * Property names may be specified as individual arguments or as array
sketchy/assets/lodash.js:2815
Methodpost
Create a new Static Capture User must provide html file in multipart upload
sketchy/controllers/static_upload.py:101
Methodpost
Retrieve Captures based on id
sketchy/controllers/controller.py:78
Methodpost
Create a new sketch record and call celery tasks for populating record data
sketchy/controllers/controller.py:107
Functionpull
* Removes all provided values from the given array using strict equality for * comparisons, i.e. `===`. * * @static * @memberOf _
sketchy/assets/lodash.js:4666
Functionrandom
* Produces a random number between `min` and `max` (inclusive). If only one * argument is provided a number between `0` and the given number will
sketchy/assets/lodash.js:6069
Functionrange
* Creates an array of numbers (positive and/or negative) progressing from * `start` up to but not including `end`. If `start` is less than `stop`
sketchy/assets/lodash.js:4717
Functionreduce
* Reduces a collection to a value which is the accumulated result of running * each element in the collection through the callback, where each su
sketchy/assets/lodash.js:3721
FunctionreduceRight
* This method is like `_.reduce` except that it iterates over elements * of a `collection` from right to left. * * @static * @memb
sketchy/assets/lodash.js:3765
Functionreject
* The opposite of `_.filter` this method returns the elements of a * collection that the callback does **not** return truey for. * * If
sketchy/assets/lodash.js:3814
Functionremove
* Removes all elements from an array that the callback returns truey for * and returns an array of removed elements. The callback is bound to `th
sketchy/assets/lodash.js:4770
Methodremove_non_gunicorn_command_line_args
()
manage.py:92
FunctionrenderAndExit
()
sketchy/assets/capture.js:116
FunctionrenderAndExit
()
sketchy/assets/static.js:87
Functionrest
* The opposite of `_.initial` this method gets all but the first element or * first `n` elements of an array. If a callback function is provided
sketchy/assets/lodash.js:4839
Functionsample
* Retrieves a random element or `n` random elements from a collection. * * @static * @memberOf _ * @category Collections * @p
sketchy/assets/lodash.js:3840
MethodsetUp
(self)
tests.py:27
FunctionshimKeys
(object)
sketchy/assets/lodash.js:1592
Functionsize
* Gets the size of the `collection` by returning `collection.length` for arrays * and array-like objects or the number of own enumerable properti
sketchy/assets/lodash.js:3899
Functionsome
* Checks if the callback returns a truey value for **any** element of a * collection. The function returns as soon as it finds a passing value an
sketchy/assets/lodash.js:3946
FunctionsortBy
* Creates an array of elements, sorted in ascending order by the results of * running each element in a collection through the callback. This met
sketchy/assets/lodash.js:4016
Functiontap
* Invokes `interceptor` with the `value` as the first argument and then * returns `value`. The purpose of this method is to "tap into" a method
sketchy/assets/lodash.js:6447
MethodtearDown
(self)
tests.py:31
← previousnext →101–200 of 229, ranked by callers