Home
last modified time | relevance | path

Searched refs:foundKey (Results 1 – 25 of 158) sorted by relevance

1234567

/dports/java/berkeley-db/je-6.2.31/test/com/sleepycat/je/dbi/
H A DDbCursorTest.java69 prevKey = foundKey; in testSimpleGetPut()
142 prevKey = foundKey; in testSimpleGetPutBackwards()
484 prevKey = foundKey; in doLargeGetPutPrevKeyForwardTraverse()
530 prevKey = foundKey; in doLargeCount()
657 prevKey = foundKey; in doLargeGetPutNextKeyBackwardsTraverse()
732 prevKey = foundKey; in doLargeGetPutNextKeyForwardTraverse()
798 prevKey = foundKey; in doLargeGetPutPrevKeyBackwardsTraverse()
886 prevKey = foundKey; in doLargeGetPutBothKeyForwardTraverse()
958 prevKey = foundKey; in doLargeGetPutBothKeyBackwardsTraverse()
1193 prevKey = foundKey; in doLargeGetForwardTraverseWithNormalComparisonFunction()
[all …]
H A DDbCursorDeleteTest.java50 if (foundKey.charAt(0) == 'f') { in testSimpleDelete()
65 assertTrue(foundKey.charAt(0) != 'f'); in testSimpleDelete()
66 prevKey = foundKey; in testSimpleDelete()
115 simpleDataMap.remove(foundKey); in testSimpleDeleteInsert()
161 simpleDataMap.remove(foundKey); in testSimpleDeletePutCurrent()
192 if (foundKey.equals("k1")) { in testSimpleInsertDeleteInsert()
335 if (foundKey.charAt(1) == 'F') { in doLargeDelete()
347 assertTrue(foundKey.charAt(1) != 'F'); in doLargeDelete()
348 prevKey = foundKey; in doLargeDelete()
388 deletedEntry = foundKey; in doLargeDeleteFirst()
[all …]
H A DDbCursorDuplicateDeleteTest.java60 prevKey = foundKey; in testSimpleDeleteInsert()
62 if (!prevKey.equals(foundKey)) { in testSimpleDeleteInsert()
65 prevKey = foundKey; in testSimpleDeleteInsert()
182 if (prevKey.equals(foundKey)) { in testDuplicateDeletionAll()
196 prevKey = foundKey; in testDuplicateDeletionAll()
262 prevKey = foundKey; in testDuplicateDeletionAssorted()
310 dataMap.remove(foundKey); in testDuplicateDeletionAssorted()
365 prevKey = foundKey; in testDuplicateDeletionAssortedSR15375()
427 dataMap.remove(foundKey); in testDuplicateDeletionAssortedSR15375()
503 prevKey = foundKey; in testDuplicateDeleteFirst()
[all …]
H A DDbCursorDuplicateTest.java605 if (prevKey.equals(foundKey)) { in doDuplicateTest()
619 prevKey = foundKey; in doDuplicateTest()
645 if (prevKey.equals(foundKey)) { in doDuplicateTest()
662 prevKey = foundKey; in doDuplicateTest()
708 if (prevKey.equals(foundKey)) { in testGetNextDup()
722 prevKey = foundKey; in testGetNextDup()
802 prevKey = foundKey; in testGetPrevDup()
852 dataMap.remove(foundKey); in testGetNextNoDup()
859 prevKey = foundKey; in testGetNextNoDup()
898 dataMap.remove(foundKey); in testGetPrevNoDup()
[all …]
H A DDbCursorTestBase.java263 return cursor.getFirst(foundKey, foundData, in getFirst()
270 return cursor.getNext(foundKey, foundData, in getData()
274 StringDbt foundKey = new StringDbt(); field in DbCursorTestBase.DataWalker
308 status = getData(foundKey, foundData); in walkData()
322 void perData(String foundKey, String foundData) in perData() argument
364 return cursor.getLast(foundKey, foundData, in getFirst()
372 return cursor.getPrev(foundKey, foundData, in getData()
397 return cursor.getNextDup(foundKey, foundData, in getData()
422 return cursor.getPrevDup(foundKey, foundData, in getData()
447 return cursor.getNextNoDup(foundKey, foundData, in getData()
[all …]
/dports/java/berkeley-db/je-6.2.31/test/com/sleepycat/je/
H A DDatabaseEntryTest.java100 assertEquals(0, foundKey.getOffset()); in testOffset()
102 assertEquals(10, foundKey.getSize()); in testOffset()
143 assertEquals(0, foundKey.getOffset()); in testPartial()
144 assertEquals(20, foundKey.getSize()); in testPartial()
158 foundKey.setPartial(5, 10, true); in testPartial()
164 assertEquals(0, foundKey.getOffset()); in testPartial()
165 assertEquals(10, foundKey.getSize()); in testPartial()
243 assertEquals(0, foundKey.getOffset()); in testPartialCursorPuts()
244 assertEquals(20, foundKey.getSize()); in testPartialCursorPuts()
271 assertEquals(0, foundKey.getOffset()); in testPartialCursorPuts()
[all …]
/dports/www/pomerium/pomerium-0.8.3/vendor/github.com/gorilla/mux/
H A Dregexp.go245 foundKey := query
246 if i := bytes.IndexAny(foundKey, "&;"); i >= 0 {
247 foundKey, query = foundKey[:i], foundKey[i+1:]
251 if len(foundKey) == 0 {
255 if i := bytes.IndexByte(foundKey, '='); i >= 0 {
256 foundKey, value = foundKey[:i], foundKey[i+1:]
258 if len(foundKey) < len(key) {
262 keyString, err := url.QueryUnescape(string(foundKey))
/dports/sysutils/nomad/nomad-1.1.0/vendor/github.com/gorilla/mux/
H A Dregexp.go245 foundKey := query
246 if i := bytes.IndexAny(foundKey, "&;"); i >= 0 {
247 foundKey, query = foundKey[:i], foundKey[i+1:]
251 if len(foundKey) == 0 {
255 if i := bytes.IndexByte(foundKey, '='); i >= 0 {
256 foundKey, value = foundKey[:i], foundKey[i+1:]
258 if len(foundKey) < len(key) {
262 keyString, err := url.QueryUnescape(string(foundKey))
/dports/java/berkeley-db/je-6.2.31/test/com/sleepycat/je/txn/
H A DCursorTxnTest.java128 DatabaseEntry foundKey = new DatabaseEntry(); in testNullTxnLockRelease() local
133 cursor.getFirst(foundKey, foundData, LockMode.DEFAULT); in testNullTxnLockRelease()
138 status = cursor.getNext(foundKey, foundData, LockMode.DEFAULT); in testNullTxnLockRelease()
144 status = cursor.getCurrent(foundKey, foundData, in testNullTxnLockRelease()
151 status = cursor.getLast(foundKey, foundData, LockMode.DEFAULT); in testNullTxnLockRelease()
157 TestUtils.dumpByteArray(foundKey.getData()), in testNullTxnLockRelease()
159 status = cursor.getPrev(foundKey, foundData, LockMode.DEFAULT); in testNullTxnLockRelease()
164 status = cursor.getFirst(foundKey, foundData, LockMode.DEFAULT); in testNullTxnLockRelease()
167 TestUtils.dumpByteArray(foundKey.getData()), in testNullTxnLockRelease()
171 status = cursor.getNext(foundKey, foundData, LockMode.DEFAULT); in testNullTxnLockRelease()
/dports/databases/pg_tileserv/pg_tileserv-1.0.8/vendor/github.com/gorilla/mux/
H A Dregexp.go245 foundKey := query
246 if i := bytes.IndexAny(foundKey, "&;"); i >= 0 {
247 foundKey, query = foundKey[:i], foundKey[i+1:]
251 if len(foundKey) == 0 {
255 if i := bytes.IndexByte(foundKey, '='); i >= 0 {
256 foundKey, value = foundKey[:i], foundKey[i+1:]
258 if len(foundKey) < len(key) {
262 keyString, err := url.QueryUnescape(string(foundKey))
/dports/sysutils/cbsd-mq-api/cbsd-mq-api-0.3/vendor/github.com/gorilla/mux/
H A Dregexp.go245 foundKey := query
246 if i := bytes.IndexAny(foundKey, "&;"); i >= 0 {
247 foundKey, query = foundKey[:i], foundKey[i+1:]
251 if len(foundKey) == 0 {
255 if i := bytes.IndexByte(foundKey, '='); i >= 0 {
256 foundKey, value = foundKey[:i], foundKey[i+1:]
258 if len(foundKey) < len(key) {
262 keyString, err := url.QueryUnescape(string(foundKey))
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/grafana/loki/vendor/github.com/gorilla/mux/
H A Dregexp.go245 foundKey := query
246 if i := bytes.IndexAny(foundKey, "&;"); i >= 0 {
247 foundKey, query = foundKey[:i], foundKey[i+1:]
251 if len(foundKey) == 0 {
255 if i := bytes.IndexByte(foundKey, '='); i >= 0 {
256 foundKey, value = foundKey[:i], foundKey[i+1:]
258 if len(foundKey) < len(key) {
262 keyString, err := url.QueryUnescape(string(foundKey))
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/gorilla/mux/
H A Dregexp.go245 foundKey := query
246 if i := bytes.IndexAny(foundKey, "&;"); i >= 0 {
247 foundKey, query = foundKey[:i], foundKey[i+1:]
251 if len(foundKey) == 0 {
255 if i := bytes.IndexByte(foundKey, '='); i >= 0 {
256 foundKey, value = foundKey[:i], foundKey[i+1:]
258 if len(foundKey) < len(key) {
262 keyString, err := url.QueryUnescape(string(foundKey))
/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/vendor/github.com/docker/docker/moby-20.10.2/vendor/github.com/gorilla/mux/
H A Dregexp.go245 foundKey := query
246 if i := bytes.IndexAny(foundKey, "&;"); i >= 0 {
247 foundKey, query = foundKey[:i], foundKey[i+1:]
251 if len(foundKey) == 0 {
255 if i := bytes.IndexByte(foundKey, '='); i >= 0 {
256 foundKey, value = foundKey[:i], foundKey[i+1:]
258 if len(foundKey) < len(key) {
262 keyString, err := url.QueryUnescape(string(foundKey))
/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/vendor/github.com/docker/cli/cli-20.10.2/vendor/github.com/gorilla/mux/
H A Dregexp.go245 foundKey := query
246 if i := bytes.IndexAny(foundKey, "&;"); i >= 0 {
247 foundKey, query = foundKey[:i], foundKey[i+1:]
251 if len(foundKey) == 0 {
255 if i := bytes.IndexByte(foundKey, '='); i >= 0 {
256 foundKey, value = foundKey[:i], foundKey[i+1:]
258 if len(foundKey) < len(key) {
262 keyString, err := url.QueryUnescape(string(foundKey))
/dports/net-im/dendrite/dendrite-0.5.1/vendor/github.com/gorilla/mux/
H A Dregexp.go245 foundKey := query
246 if i := bytes.IndexAny(foundKey, "&;"); i >= 0 {
247 foundKey, query = foundKey[:i], foundKey[i+1:]
251 if len(foundKey) == 0 {
255 if i := bytes.IndexByte(foundKey, '='); i >= 0 {
256 foundKey, value = foundKey[:i], foundKey[i+1:]
258 if len(foundKey) < len(key) {
262 keyString, err := url.QueryUnescape(string(foundKey))
/dports/net-im/dendrite/dendrite-0.5.1/vendor/github.com/docker/docker/vendor/github.com/gorilla/mux/
H A Dregexp.go245 foundKey := query
246 if i := bytes.IndexAny(foundKey, "&;"); i >= 0 {
247 foundKey, query = foundKey[:i], foundKey[i+1:]
251 if len(foundKey) == 0 {
255 if i := bytes.IndexByte(foundKey, '='); i >= 0 {
256 foundKey, value = foundKey[:i], foundKey[i+1:]
258 if len(foundKey) < len(key) {
262 keyString, err := url.QueryUnescape(string(foundKey))
/dports/net-mgmt/promscale/promscale-0.6.2/vendor/github.com/docker/docker/vendor/github.com/gorilla/mux/
H A Dregexp.go245 foundKey := query
246 if i := bytes.IndexAny(foundKey, "&;"); i >= 0 {
247 foundKey, query = foundKey[:i], foundKey[i+1:]
251 if len(foundKey) == 0 {
255 if i := bytes.IndexByte(foundKey, '='); i >= 0 {
256 foundKey, value = foundKey[:i], foundKey[i+1:]
258 if len(foundKey) < len(key) {
262 keyString, err := url.QueryUnescape(string(foundKey))
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/cortexproject/cortex/vendor/github.com/gorilla/mux/
H A Dregexp.go245 foundKey := query
246 if i := bytes.IndexAny(foundKey, "&;"); i >= 0 {
247 foundKey, query = foundKey[:i], foundKey[i+1:]
251 if len(foundKey) == 0 {
255 if i := bytes.IndexByte(foundKey, '='); i >= 0 {
256 foundKey, value = foundKey[:i], foundKey[i+1:]
258 if len(foundKey) < len(key) {
262 keyString, err := url.QueryUnescape(string(foundKey))
/dports/www/oauth2-proxy/oauth2-proxy-7.2.0/vendor/github.com/gorilla/mux/
H A Dregexp.go245 foundKey := query
246 if i := bytes.IndexAny(foundKey, "&;"); i >= 0 {
247 foundKey, query = foundKey[:i], foundKey[i+1:]
251 if len(foundKey) == 0 {
255 if i := bytes.IndexByte(foundKey, '='); i >= 0 {
256 foundKey, value = foundKey[:i], foundKey[i+1:]
258 if len(foundKey) < len(key) {
262 keyString, err := url.QueryUnescape(string(foundKey))
/dports/net-mgmt/prometheus2/prometheus-2.30.3/vendor/github.com/docker/docker/vendor/github.com/gorilla/mux/
H A Dregexp.go245 foundKey := query
246 if i := bytes.IndexAny(foundKey, "&;"); i >= 0 {
247 foundKey, query = foundKey[:i], foundKey[i+1:]
251 if len(foundKey) == 0 {
255 if i := bytes.IndexByte(foundKey, '='); i >= 0 {
256 foundKey, value = foundKey[:i], foundKey[i+1:]
258 if len(foundKey) < len(key) {
262 keyString, err := url.QueryUnescape(string(foundKey))
/dports/games/automuteus/automuteus-6.15.2/vendor/github.com/gorilla/mux/
H A Dregexp.go245 foundKey := query
246 if i := bytes.IndexAny(foundKey, "&;"); i >= 0 {
247 foundKey, query = foundKey[:i], foundKey[i+1:]
251 if len(foundKey) == 0 {
255 if i := bytes.IndexByte(foundKey, '='); i >= 0 {
256 foundKey, value = foundKey[:i], foundKey[i+1:]
258 if len(foundKey) < len(key) {
262 keyString, err := url.QueryUnescape(string(foundKey))
/dports/sysutils/helm/helm-3.5.2/vendor/github.com/docker/cli/vendor/github.com/gorilla/mux/
H A Dregexp.go245 foundKey := query
246 if i := bytes.IndexAny(foundKey, "&;"); i >= 0 {
247 foundKey, query = foundKey[:i], foundKey[i+1:]
251 if len(foundKey) == 0 {
255 if i := bytes.IndexByte(foundKey, '='); i >= 0 {
256 foundKey, value = foundKey[:i], foundKey[i+1:]
258 if len(foundKey) < len(key) {
262 keyString, err := url.QueryUnescape(string(foundKey))
/dports/www/gitea/gitea-1.16.5/vendor/github.com/gorilla/mux/
H A Dregexp.go245 foundKey := query
246 if i := bytes.IndexAny(foundKey, "&;"); i >= 0 {
247 foundKey, query = foundKey[:i], foundKey[i+1:]
251 if len(foundKey) == 0 {
255 if i := bytes.IndexByte(foundKey, '='); i >= 0 {
256 foundKey, value = foundKey[:i], foundKey[i+1:]
258 if len(foundKey) < len(key) {
262 keyString, err := url.QueryUnescape(string(foundKey))
/dports/www/gitlab-pages/gitlab-pages-f8512edbec4ec83b426c8ca2dda467de424685e4/vendor/github.com/gorilla/mux/
H A Dregexp.go245 foundKey := query
246 if i := bytes.IndexAny(foundKey, "&;"); i >= 0 {
247 foundKey, query = foundKey[:i], foundKey[i+1:]
251 if len(foundKey) == 0 {
255 if i := bytes.IndexByte(foundKey, '='); i >= 0 {
256 foundKey, value = foundKey[:i], foundKey[i+1:]
258 if len(foundKey) < len(key) {
262 keyString, err := url.QueryUnescape(string(foundKey))

1234567