Home
last modified time | relevance | path

Searched refs:Do (Results 1 – 25 of 10659) sorted by relevance

12345678910>>...427

/dports/net/storj/storj-1.45.3/vendor/github.com/alicebob/miniredis/v2/integration/
H A Dsorted_set_test.go15 c.Do("TYPE", "z")
16 c.Do("EXISTS", "z")
17 c.Do("ZCARD", "z")
53 c.Do("ZADD")
59 c.Do("ZCARD")
62 c.Do("ZRANK")
66 c.Do("ZREVRANK")
68 c.Do("ZPOPMAX")
71 c.Do("ZPOPMIN")
194 c.Do("ZRANGE")
[all …]
H A Dstring_test.go13 c.Do("GET", "foo")
15 c.Do("GET", "foo")
21 c.Do("SET")
22 c.Do("SET", "foo")
24 c.Do("GET")
44 c.Do("GETSET")
63 c.Do("MGET")
78 c.Do("SETNX")
112 c.Do("TTL")
119 c.Do("PTTL")
[all …]
H A Dlist_test.go16 c.Do("TYPE", "l")
23 c.Do("LPOP", "l")
24 c.Do("LPOP", "l")
25 c.Do("LPOP", "l")
33 c.Do("LPUSH")
37 c.Do("LRANGE")
43 c.Do("LPOP")
60 c.Do("LPUSHX")
85 c.Do("RPUSH")
89 c.Do("RPOP")
[all …]
H A Dpubsub_test.go12 c.Do("SUBSCRIBE")
15 c.Do("UNSUBSCRIBE")
30 c1.Do("PSUBSCRIBE")
103 c.Do("PUBLISH")
113 c.Do("PUBSUB")
198 c.Do("PING")
203 c.Do("QUIT")
231 c.Do("EXEC")
273 c.Do("MULTI")
312 c.Do("TIME")
[all …]
H A Dgeo_test.go11 c.Do("GEOADD",
19 c.Do("GEOADD",
44 c.Do("GEOADD")
52 c.Do("MULTI")
54 c.Do("EXEC")
55 c.Do("MULTI")
57 c.Do("EXEC")
60 c.Do("MULTI")
65 c.Do("EXEC")
72 c.Do("GEOADD",
[all …]
H A Dset_test.go15 c.Do("TYPE", "s")
16 c.Do("EXISTS", "s")
17 c.Do("SCARD", "s")
27 c.Do("SADD")
28 c.Do("SADD", "s")
29 c.Do("SMEMBERS")
31 c.Do("SCARD")
33 c.Do("SISMEMBER")
67 c.Do("SREM")
101 c.Do("SMOVE")
[all …]
H A Dstream_test.go11 c.Do("XADD",
21 c.Do("XADD",
26 c.Do("XADD",
36 c.Do("XADD",
42 c.Do("XADD",
56 c.Do("XADD")
88 c.Do("EXEC")
92 c.Do("EXEC")
96 c.Do("EXEC")
100 c.Do("EXEC")
[all …]
H A Dhash_test.go16 c.Do("HLEN", "aap")
31 c.Do("HLEN")
32 c.Do("HKEYS")
33 c.Do("HVALS")
41 c.Do("HSET")
48 c.Do("MULTI")
50 c.Do("EXEC")
52 c.Do("MULTI")
54 c.Do("EXEC")
87 c.Do("HDEL")
[all …]
H A Dgeneric_test.go27 c.Do("GET", "")
30 c.Do("KEYS")
58 c.Do("nosuch")
59 c.Do("noSUCH")
66 c.Do("QUIT")
79 c.Do("EXISTS")
109 c.Do("RENAME")
159 c.Do("SCAN")
233 c1.Do("EXEC")
254 c.Do("DEL")
[all …]
H A Dtx_test.go13 c.Do("MULTI")
16 c.Do("EXEC")
22 c.Do("MULTI")
23 c.Do("MULTI")
28 c.Do("EXEC")
33 c.Do("MULTI")
37 c.Do("EXEC")
44 c.Do("MULTI")
46 c.Do("EXEC")
56 c.Do("EXEC")
[all …]
H A Dconnection_test.go15 c.Do("ECHO")
20 c.Do("MULTI")
22 c.Do("EXEC")
26 c.Do("MULTI")
27 c.Do("ECHO")
28 c.Do("EXEC")
34 c.Do("PING")
40 c.Do("MULTI")
42 c.Do("EXEC")
46 c.Do("MULTI")
[all …]
H A Dscript_test.go12 c.Do("EVAL", "", "0")
25 c.Do("EVAL")
27 c.Do("EVAL", "[")
49 c.Do("SCRIPT")
78 c.Do("EVALSHA")
347 c.Do(
358 c.Do("MULTI")
360 c.Do("EXEC")
364 c.Do("MULTI")
367 c.Do("EXEC")
[all …]
H A Dserver_test.go13 c.Do("DBSIZE")
14 c.Do("SELECT", "2")
15 c.Do("DBSIZE")
18 c.Do("SELECT", "0")
19 c.Do("FLUSHDB")
20 c.Do("DBSIZE")
22 c.Do("SELECT", "2")
23 c.Do("DBSIZE")
24 c.Do("FLUSHALL")
25 c.Do("DBSIZE")
[all …]
/dports/www/oauth2-proxy/oauth2-proxy-7.2.0/vendor/github.com/alicebob/miniredis/v2/
H A Dcmd_sorted_set_test.go23 b, err = redis.Int(c.Do("ZCARD", "z"))
44 s, err := redis.String(c.Do("TYPE", "z"))
55 b, err = redis.Int(c.Do("ZCARD", "z"))
87 m, err := c.Do("ZRANK", "z", "nosuch")
121 _, err = redis.String(c.Do("ZRANK"))
131 _, err = redis.String(c.Do("ZCARD"))
216 _, err = redis.String(c.Do("ZADD"))
636 _, err = c.Do("ZREMRANGEBYLEX")
997 _, err = c.Do("ZRANGEBYLEX")
1018 _, err = c.Do("ZLEXCOUNT")
[all …]
H A Dcmd_string_test.go27 v, err := redis.String(c.Do("GET", "foo"))
43 v, err := redis.String(c.Do("GET", "aap"))
53 b, err := c.Do("GET", "reallynosuchkey")
62 _, err = c.Do("GET", "wim")
403 _, err := redis.Int(c.Do("INCR"))
456 _, err := redis.Int(c.Do("INCRBY"))
575 _, err := redis.Int(c.Do("DECRBY"))
622 _, err := redis.Int(c.Do("DECR"))
680 _, err := redis.Int(c.Do("GETSET"))
1014 _, err := redis.Int(c.Do("BITOP"))
[all …]
H A Dcmd_list_test.go93 _, err := redis.Int(c.Do("LPUSH"))
95 _, err = redis.Int(c.Do("LPUSH", "l"))
149 _, err = redis.Int(c.Do("LPUSHX"))
192 v, err := c.Do("LPOP", "l")
295 v, err := c.Do("RPOP", "l")
452 _, err = redis.String(c.Do("LTRIM"))
525 _, err = redis.String(c.Do("LREM"))
585 _, err = redis.String(c.Do("LSET"))
806 _, err = redis.Int(c.Do("RPUSHX"))
931 _, err := c.Do("MULTI")
[all …]
H A Dcmd_scripting_test.go37 _, err = c.Do("EVAL", 42, 0)
40 _, err = c.Do("EVAL", "return 42")
43 _, err = c.Do("EVAL", "return 42", 1)
52 _, err = c.Do("EVAL", "[", 0)
148 _, err = c.Do("SCRIPT")
151 _, err = c.Do("SCRIPT", "LOAD")
163 _, err = c.Do("SCRIPT", "FOO")
257 _, err = c.Do("EVALSHA")
260 _, err = c.Do("EVALSHA", "foo")
536 _, err = c.Do("EVAL", eval, 0)
[all …]
/dports/sysutils/istio/istio-1.6.7/vendor/github.com/alicebob/miniredis/
H A Dcmd_sorted_set_test.go23 b, err = redis.Int(c.Do("ZCARD", "z"))
44 s, err := redis.String(c.Do("TYPE", "z"))
55 b, err = redis.Int(c.Do("ZCARD", "z"))
87 m, err := c.Do("ZRANK", "z", "nosuch")
121 _, err = redis.String(c.Do("ZRANK"))
131 _, err = redis.String(c.Do("ZCARD"))
216 _, err = redis.String(c.Do("ZADD"))
636 _, err = c.Do("ZREMRANGEBYLEX")
993 _, err = c.Do("ZRANGEBYLEX")
1014 _, err = c.Do("ZLEXCOUNT")
[all …]
H A Dcmd_string_test.go27 v, err := redis.String(c.Do("GET", "foo"))
43 v, err := redis.String(c.Do("GET", "aap"))
53 b, err := c.Do("GET", "reallynosuchkey")
62 _, err = c.Do("GET", "wim")
403 _, err := redis.Int(c.Do("INCR"))
456 _, err := redis.Int(c.Do("INCRBY"))
575 _, err := redis.Int(c.Do("DECRBY"))
622 _, err := redis.Int(c.Do("DECR"))
680 _, err := redis.Int(c.Do("GETSET"))
1014 _, err := redis.Int(c.Do("BITOP"))
[all …]
H A Dcmd_scripting_test.go36 _, err = c.Do("EVAL", 42, 0)
39 _, err = c.Do("EVAL", "return 42")
42 _, err = c.Do("EVAL", "return 42", 1)
51 _, err = c.Do("EVAL", "[", 0)
130 _, err = c.Do("SCRIPT")
133 _, err = c.Do("SCRIPT", "LOAD")
145 _, err = c.Do("SCRIPT", "FOO")
239 _, err = c.Do("EVALSHA")
242 _, err = c.Do("EVALSHA", "foo")
518 _, err = c.Do("EVAL", eval, 0)
[all …]
H A Dcmd_list_test.go85 _, err := redis.Int(c.Do("LPUSH"))
87 _, err = redis.Int(c.Do("LPUSH", "l"))
142 _, err = redis.Int(c.Do("LPUSHX"))
185 v, err := c.Do("LPOP", "l")
288 v, err := c.Do("RPOP", "l")
445 _, err = redis.String(c.Do("LTRIM"))
518 _, err = redis.String(c.Do("LREM"))
578 _, err = redis.String(c.Do("LSET"))
799 _, err = redis.Int(c.Do("RPUSHX"))
924 _, err := c.Do("MULTI")
[all …]
/dports/net-mgmt/bosun/bosun-0.9.0-preview/vendor/github.com/siddontang/ledisdb/server/
H A Dcmd_zset_test.go18 if n, err := goredis.Int(c.Do("zkeyexists", key)); err != nil {
36 if n, err := goredis.Int(c.Do("zcard", key)); err != nil {
48 if n, err := goredis.Int(c.Do("zcard", key)); err != nil {
173 c.Do("zadd", key, 3, "e")
181 c.Do("zrem", key, "a", "b", "c", "d", "e")
470 if _, err := c.Do("zcard"); err == nil {
587 if _, err := c.Do("zclear"); err == nil {
592 if _, err := c.Do("zmclear"); err == nil {
607 if _, err := c.Do("zttl"); err == nil {
612 if _, err := c.Do("zpersist"); err == nil {
[all …]
H A Dcmd_set_test.go106 c.Do("sadd", key1, 0)
107 c.Do("sadd", key2, 1)
124 if _, err := c.Do("scard"); err == nil {
132 if _, err := c.Do("sdiff"); err == nil {
140 if _, err := c.Do("sinter"); err == nil {
148 if _, err := c.Do("sunion"); err == nil {
164 if _, err := c.Do("smembers"); err == nil {
172 if _, err := c.Do("srem"); err == nil {
180 if _, err := c.Do("sclear"); err == nil {
188 if _, err := c.Do("smclear"); err == nil {
[all …]
/dports/mail/rspamd-devel/rspamd-93430bb/test/functional/cases/
H A D108_settings.robot25 Do Not Expect Symbol SIMPLE_PRE
26 Do Not Expect Symbol SIMPLE_POST
27 Do Not Expect Symbol BAYES_SPAM
65 Do Not Expect Symbol SIMPLE_PRE
67 Do Not Expect Symbol BAYES_HAM
74 Do Not Expect Symbol BAYES_HAM
81 Do Not Expect Symbol BAYES_HAM
138 Do Not Expect Symbol DEP_REAL
148 Do Not Expect Symbol DEP_REAL
158 Do Not Expect Symbol DEP_REAL
[all …]
/dports/mail/rspamd/rspamd-3.1/test/functional/cases/
H A D108_settings.robot25 Do Not Expect Symbol SIMPLE_PRE
26 Do Not Expect Symbol SIMPLE_POST
27 Do Not Expect Symbol BAYES_SPAM
65 Do Not Expect Symbol SIMPLE_PRE
67 Do Not Expect Symbol BAYES_HAM
74 Do Not Expect Symbol BAYES_HAM
81 Do Not Expect Symbol BAYES_HAM
138 Do Not Expect Symbol DEP_REAL
148 Do Not Expect Symbol DEP_REAL
158 Do Not Expect Symbol DEP_REAL
[all …]

12345678910>>...427