Home
last modified time | relevance | path

Searched refs:hexists (Results 1 – 25 of 85) sorted by relevance

1234

/dports/devel/p5-Test-Mock-Redis/Test-Mock-Redis-0.22/t/
H A D10-hash.t41 ok ! $r->hexists('hash', 'foo'), "hexists on an empty hash returns false";
43 …ok ! $r->hexists('hash', 'foo'), "hexists on the same empty hash returns false proving there was n…
75 ok ! $r->hexists('blarg', 'blorf'), "hexists on a hash that doesn't exist returns false";
77 like exception { $r->hexists('hash', 'blarg') },
85 is $r->hexists('hash', 'foo'), 1, "hexists returns 1 when it's true";
92 ok ! $r->hexists('hash', 'foo'), "hdel really deleted the field";
93 is $r->hexists('hash', 'foo'), 0, "hexists returns 0 when field is not in the hash";
H A D01-basic.t286 ok($o->hexists($hash, 'foo'));
288 ok(!$o->hexists($hash, 'foo'));
/dports/databases/p5-Redis-hiredis/Redis-hiredis-0.11.0/t/
H A D006_hashes.t38 $r = $h->command('hexists '.$prefix.'foo value');
39 is($r, 1, 'hexists');
40 $r = $h->command('hexists '.$prefix.'foo foobar');
41 is($r, 0, '! hexists');
/dports/devel/p5-MCE-Shared/MCE-Shared-1.874/t/
H A D07_shared_minidb.t199 $db->hexists('k1'), 1,
203 $db->hexists('k1','f2'), 1,
207 $db->hexists('k1','f2','f6'), 1,
212 $db->hexists('k3'), '',
216 $db->hexists('k3','f3'), '',
220 $db->hexists('k3','f3','f2'), '',
901 is( $db->hexists("utf8", "ἀθάνατῳ"), 1, 'shared minidb hash, check unicode exists' );
/dports/databases/py-aioredis/aioredis-1.3.1/tests/
H A Dsentinel_failover_test.py66 exists = await redis.hexists(key, field)
87 exists = await redis.hexists(key, field)
103 exists = await redis.hexists(key, field)
137 exists = await redis.hexists(key, field)
H A Dhash_commands_test.py31 result = await redis.hexists(key, field)
34 result = await redis.hexists(key, b'not:' + field)
37 result = await redis.hexists(b'not:' + key, field)
41 await redis.hexists(None, field)
213 result = await redis.hexists(key, field)
219 result = await redis.hexists(b'not:' + key, field)
304 result = await redis.hexists(b'other:' + key, field)
/dports/net-p2p/bazarr/bazarr-1.0.2/libs/apscheduler/jobstores/
H A Dredis.py76 if self.redis.hexists(self.jobs_key, job.id):
90 if not self.redis.hexists(self.jobs_key, job.id):
105 if not self.redis.hexists(self.jobs_key, job_id):
/dports/multimedia/tautulli/Tautulli-2.8.0/lib/apscheduler/jobstores/
H A Dredis.py76 if self.redis.hexists(self.jobs_key, job.id):
90 if not self.redis.hexists(self.jobs_key, job.id):
105 if not self.redis.hexists(self.jobs_key, job_id):
/dports/devel/py-apscheduler/APScheduler-3.8.1/apscheduler/jobstores/
H A Dredis.py76 if self.redis.hexists(self.jobs_key, job.id):
90 if not self.redis.hexists(self.jobs_key, job.id):
105 if not self.redis.hexists(self.jobs_key, job_id):
/dports/www/phpbb3/phpBB3/vendor/lusitanian/oauth/src/OAuth/Common/Storage/
H A DRedis.php93 return $this->redis->hexists($this->key, $service);
175 return $this->redis->hexists($this->stateKey, $service);
/dports/www/dolibarr/dolibarr-14.0.3/htdocs/includes/OAuth/Common/Storage/
H A DRedis.php93 return $this->redis->hexists($this->key, $service);
175 return $this->redis->hexists($this->stateKey, $service);
/dports/www/dolibarr13/dolibarr-13.0.5/htdocs/includes/OAuth/Common/Storage/
H A DRedis.php93 return $this->redis->hexists($this->key, $service);
175 return $this->redis->hexists($this->stateKey, $service);
/dports/databases/py-txredisapi/txredisapi-1.4.7/tests/
H A Dtest_hash_ops.py101 s = yield db.hexists("txredisapi:HDelHExists", "key2")
121 s = yield db.hexists("txredisapi:HDelHExists", ["key1", "key2"])
/dports/math/vtk9/VTK-9.1.0/IO/Xdmf2/Testing/Cxx/
H A DXdmfTestVTKIO.cxx71 bool hexists = (hdf5file ? vtksys::SystemTools::FileExists(hdf5file) : true); in DoFilesExist() local
75 bool theyDo = xexists && xlenOK && hexists && hlenOK; in DoFilesExist()
/dports/net/zerotier/ZeroTierOne-1.8.3/ext/redis-plus-plus-1.1.1/test/src/sw/redis++/
H A Dhash_cmds_test.hpp65 REDIS_ASSERT(!_redis.hexists(key, f3), "failed to test hexists"); in _test_hash()
67 REDIS_ASSERT(_redis.hexists(key, f3), "failed to test hexists"); in _test_hash()
/dports/math/vtk8/VTK-8.2.0/IO/Xdmf2/Testing/Cxx/
H A DXdmfTestVTKIO.cxx70 bool hexists = (hdf5file?vtksys::SystemTools::FileExists(hdf5file):true); in DoFilesExist() local
74 bool theyDo = xexists && xlenOK && hexists && hlenOK; in DoFilesExist()
/dports/math/vtk6/VTK-6.2.0/IO/Xdmf2/Testing/Cxx/
H A DXdmfTestVTKIO.cxx70 bool hexists = (hdf5file?vtksys::SystemTools::FileExists(hdf5file):true); in DoFilesExist() local
74 bool theyDo = xexists && xlenOK && hexists && hlenOK; in DoFilesExist()
/dports/databases/redis6/redis-6.0.16/tests/unit/type/
H A Dhash.tcl248 lappend rv [r hexists smallhash $k]
249 lappend rv [r hexists smallhash nokey]
251 lappend rv [r hexists bighash $k]
252 lappend rv [r hexists bighash nokey]
/dports/databases/redis5/redis-5.0.14/tests/unit/type/
H A Dhash.tcl248 lappend rv [r hexists smallhash $k]
249 lappend rv [r hexists smallhash nokey]
251 lappend rv [r hexists bighash $k]
252 lappend rv [r hexists bighash nokey]
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/lib/gitlab/
H A Drepository_hash_cache.rb54 with { |redis| redis.hexists(cache_key(key), h_key) }
/dports/databases/p5-Redis/Redis-1.995/t/
H A D01-basic.t302 ok($o->hexists($hash, 'foo'));
304 ok(!$o->hexists($hash, 'foo'));
/dports/databases/p5-Redis-Fast/Redis-Fast-0.31/t/
H A D01-basic.t293 ok($o->hexists($hash, 'foo'));
295 ok(!$o->hexists($hash, 'foo'));
/dports/math/vtk8/VTK-8.2.0/IO/Xdmf3/Testing/Python/
H A DVToXLoop.py73 hexists = os.path.exists(hdf5File)
87 if hexists:
/dports/math/vtk9/VTK-9.1.0/IO/Xdmf3/Testing/Python/
H A DVToXLoop.py70 hexists = os.path.exists(hdf5File)
84 if hexists:
/dports/math/vtk6/VTK-6.2.0/IO/Xdmf3/Testing/Python/
H A DVToXLoop.py71 hexists = os.path.exists(hdf5File)
79 theyDo = theyDo and hexists and hlenOK

1234