Home
last modified time | relevance | path

Searched refs:LIMIT (Results 1 – 6 of 6) sorted by relevance

/f-stack/app/redis-5.0.5/tests/unit/type/
H A Dzset.tcl363 assert_equal {b c} [r zrangebyscore zset 0 10 LIMIT 0 2]
364 assert_equal {d e f} [r zrangebyscore zset 0 10 LIMIT 2 3]
365 assert_equal {d e f} [r zrangebyscore zset 0 10 LIMIT 2 10]
366 assert_equal {} [r zrangebyscore zset 0 10 LIMIT 20 10]
367 assert_equal {f e} [r zrevrangebyscore zset 10 0 LIMIT 0 2]
368 assert_equal {d c b} [r zrevrangebyscore zset 10 0 LIMIT 2 3]
369 assert_equal {d c b} [r zrevrangebyscore zset 10 0 LIMIT 2 10]
370 assert_equal {} [r zrevrangebyscore zset 10 0 LIMIT 20 10]
440 assert_equal {} [r zrangebylex zset \[bar \[down LIMIT 0 0]
441 assert_equal {} [r zrangebylex zset \[bar \[down LIMIT 2 0]
[all …]
/f-stack/app/redis-5.0.5/tests/unit/
H A Dsort.tcl53 assert_equal [lrange $result 5 9] [r sort tosort BY weight_* LIMIT 5 5]
273 set sorted [r sort tosort BY weight_* LIMIT 0 10]
285 set sorted [r sort tosort BY wobj_*->weight LIMIT 0 10]
297 set sorted [r sort tosort LIMIT 0 10]
309 set sorted [r sort tosort BY nokey LIMIT 0 10]
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/snapshot/
H A Dsnapshot_008_pos.ksh99 if (( tolerance > LIMIT )); then
H A Dsnapshot.cfg50 export LIMIT=2097152 # tolerance measured in bytes, 2M
/f-stack/app/redis-5.0.5/deps/lua/src/
H A Dlauxlib.c395 #define LIMIT (LUA_MINSTACK/2) macro
417 if (B->lvl - toget + 1 >= LIMIT || toplen > l) { in adjuststack()
/f-stack/app/redis-5.0.5/src/
H A Ddefrag.c994 #define LIMIT(y, min, max) ((y)<(min)? min: ((y)>(max)? max: (y))) macro
1012 cpu_pct = LIMIT(cpu_pct, in computeDefragCycles()