Lines Matching refs:throttled
22712 throttled = _.throttle(function() { callCount++; }, 32);
22714 throttled();
22715 throttled();
22716 throttled();
22732 var throttled = _.throttle(identity, 32),
22733 results = [throttled('a'), throttled('b')];
22738 var results = [throttled('c'), throttled('d')];
22765 var throttled = lodash.throttle(function() { callCount++; }, 32);
22767 throttled();
22768 throttled();
22787 throttled = _.throttle(function() { callCount++; }, 32);
22789 throttled();
22807 throttled = _.throttle(function() { callCount++; }, 32, options);
22811 throttled();
22821 QUnit.test('should trigger a second throttled call as soon as possible', function(assert) {
22828 var throttled = _.throttle(function() {
22832 throttled();
22836 throttled();
22855 throttled = _.throttle(function() { callCount++; }, 32, {});
22857 throttled();
22858 throttled();
22915 var throttled = _.throttle(function() {
22919 throttled();
22920 throttled();
22923 throttled();
22924 throttled();
22950 var throttled = lodash.throttle(function(value) {
22955 var results = [throttled('a'), throttled('b'), throttled('c')];