Home
last modified time | relevance | path

Searched refs:indexKey (Results 1 – 25 of 234) sorted by relevance

12345678910

/dports/security/vault/vault-1.8.2/vendor/github.com/apple/foundationdb/fdbrpc/
H A DReplication.h192 if (indexKey._id >= _keyIndexArray.size()) {
228 AttribKey const& indexKey, in getMatches()
349 std::string keyText(AttribKey indexKey) const in keyText()
352 { return (indexKey.present()) ? keyText(indexKey.get()._id) : "<undefined>"; } in keyText()
400 auto indexKey = keyIndex(dataPair.first); in add() local
403 _keyIndexArray.resize(indexKey._id+1); in add()
407 _keyValueArray.resize(indexKey._id+1); in add()
430 auto indexKey = keyIndex(keyString); in add() local
434 _keyIndexArray.resize(indexKey._id+1); in add()
439 _keyValueArray.resize(indexKey._id+1); in add()
[all …]
H A DReplicationTypes.h89 Optional<AttribValue> getValue(AttribKey const& indexKey) const { in getValue()
90 …auto itKey = std::lower_bound(_keyvaluearray.begin(), _keyvaluearray.end(), AttribRecord(indexKey,… in getValue()
91 …return ((itKey != _keyvaluearray.end()) && (itKey->first == indexKey)) ? itKey->second : Optional<… in getValue()
94 bool isPresent( AttribKey const& indexKey ) const { in isPresent()
96 return ((lower != _keyvaluearray.end()) && (lower->first == indexKey)); in isPresent()
98 bool isPresent( AttribKey indexKey, AttribValue indexValue ) const { in isPresent()
100 …return ((lower != _keyvaluearray.end()) && (lower->first == indexKey) && (lower->second == indexVa… in isPresent()
130 Optional<AttribValue> getValue(AttribKey indexKey) const { in getValue()
131 return _dataMap->getValue(indexKey); in getValue()
134 bool isPresent(AttribKey indexKey, AttribValue indexValue) const { in isPresent()
[all …]
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/db/
H A Dcollection_index_usage_tracker.h58 : trackerStartTime(now), indexKey(key.getOwned()) {} in IndexUsageStats()
63 indexKey(other.indexKey) {} in IndexUsageStats()
68 indexKey = other.indexKey;
79 BSONObj indexKey; member
100 void registerIndex(StringData indexName, const BSONObj& indexKey);
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/rt.equinox.framework/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/internal/container/
H A DCapabilities.java60 for (Object indexKey : indexCollection) { in addCapability()
61 addIndex(indexKey, capability); in addCapability()
67 if (!(indexKey instanceof String)) { in addIndex()
70 Set<ModuleCapability> capabilities = indexes.get(indexKey); in addIndex()
73 indexes.put((String) indexKey, capabilities); in addIndex()
98 for (Object indexKey : indexCollection) { in removeCapability()
99 removeIndex(indexKey, capability); in removeCapability()
105 if (!(indexKey instanceof String)) { in removeIndex()
135 String indexKey = f.getPrimaryKeyValue(name); in findCapabilities() local
136 if (indexKey == null) { in findCapabilities()
[all …]
/dports/science/gromacs/gromacs-2021.4/api/nblib/
H A Dmolecules.cpp249 std::vector<std::tuple<std::string, std::string, int>> indexKey; in getExclusions() local
250 indexKey.reserve(numParticlesInMolecule()); in getExclusions()
254 indexKey.emplace_back(particles_[i].particleName_, particles_[i].residueName_, i); in getExclusions()
257 std::sort(std::begin(indexKey), std::end(indexKey)); in getExclusions()
283 auto it1 = std::lower_bound(std::begin(indexKey), std::end(indexKey), in getExclusions()
287 …if (it1 == std::end(indexKey) or std::get<0>(*it1) != particleName1 or std::get<1>(*it1) != residu… in getExclusions()
297 auto it2 = std::lower_bound(std::begin(indexKey), std::end(indexKey), in getExclusions()
301 …if (it2 == std::end(indexKey) or std::get<0>(*it2) != particleName2 or std::get<1>(*it2) != residu… in getExclusions()
/dports/www/webtrees/webtrees-1.7.18/webtrees/vendor/symfony/polyfill-php55/
H A DPhp55ArrayColumn.php32 public static function array_column(array $input, $columnKey, $indexKey = null) argument
40 if (null !== $indexKey && array_key_exists($indexKey, $row)) {
42 $key = (string) $row[$indexKey];
/dports/www/joomla3/joomla3-3.9.24/libraries/vendor/symfony/polyfill-php55/
H A DPhp55ArrayColumn.php32 public static function array_column(array $input, $columnKey, $indexKey = null) argument
40 if (null !== $indexKey && array_key_exists($indexKey, $row)) {
42 $key = (string) $row[$indexKey];
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/db/catalog/
H A Dindex_consistency.cpp124 const BSONObj& indexKey) { in addDocKey() argument
131 _addDocKey_inlock(ks, indexNumber, recordId, indexKey); in addDocKey()
137 const BSONObj& indexKey) { in addIndexKey() argument
144 _addIndexKey_inlock(ks, indexNumber, recordId, indexKey); in addIndexKey()
326 const BSONObj& indexKey) { in _addDocKey_inlock() argument
361 BSONObj info = _generateInfo(indexNumber, recordId, indexKey, idKey); in _addDocKey_inlock()
373 const BSONObj& indexKey) { in _addIndexKey_inlock() argument
402 BSONObj info = _generateInfo(indexNumber, recordId, indexKey, boost::none); in _addIndexKey_inlock()
423 const BSONObj& indexKey, in _generateInfo() argument
431 auto valuesIt = indexKey.begin(); in _generateInfo()
[all …]
H A Dindex_consistency.h94 const BSONObj& indexKey);
98 const BSONObj& indexKey);
235 const BSONObj& indexKey);
246 const BSONObj& indexKey);
262 const BSONObj& indexKey,
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/db/index/
H A Dsort_key_generator.cpp92 auto indexKey = getIndexKey(obj); in getSortKey() local
93 if (!indexKey.isOK()) { in getSortKey()
94 return indexKey; in getSortKey()
99 return indexKey; in getSortKey()
105 BSONObjIterator sortKeyIt(indexKey.getValue()); in getSortKey()
/dports/databases/prometheus-postgresql-adapter/prometheus-postgresql-adapter-0.6.0/vendor/github.com/prometheus/prometheus/vendor/k8s.io/client-go/tools/cache/
H A Dthread_safe_store.go46 IndexKeys(indexName, indexKey string) ([]string, error)
48 ByIndex(indexName, indexKey string) ([]interface{}, error)
160 for _, indexKey := range indexKeys {
161 for key := range index[indexKey] {
175 func (c *threadSafeMap) ByIndex(indexName, indexKey string) ([]interface{}, error) {
186 set := index[indexKey]
197 func (c *threadSafeMap) IndexKeys(indexName, indexKey string) ([]string, error) {
208 set := index[indexKey]
/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/vendor/github.com/docker/cli/cli-20.10.2/vendor/k8s.io/client-go/tools/cache/
H A Dthread_safe_store.go46 IndexKeys(indexName, indexKey string) ([]string, error)
48 ByIndex(indexName, indexKey string) ([]interface{}, error)
160 for _, indexKey := range indexKeys {
161 for key := range index[indexKey] {
175 func (c *threadSafeMap) ByIndex(indexName, indexKey string) ([]interface{}, error) {
186 set := index[indexKey]
197 func (c *threadSafeMap) IndexKeys(indexName, indexKey string) ([]string, error) {
208 set := index[indexKey]
/dports/security/aws-iam-authenticator/aws-iam-authenticator-0.5.2/vendor/k8s.io/client-go/client-go-0.16.8/tools/cache/
H A Dthread_safe_store.go46 IndexKeys(indexName, indexKey string) ([]string, error)
48 ByIndex(indexName, indexKey string) ([]interface{}, error)
160 for _, indexKey := range indexKeys {
161 for key := range index[indexKey] {
175 func (c *threadSafeMap) ByIndex(indexName, indexKey string) ([]interface{}, error) {
186 set := index[indexKey]
197 func (c *threadSafeMap) IndexKeys(indexName, indexKey string) ([]string, error) {
208 set := index[indexKey]
/dports/security/aws-iam-authenticator/aws-iam-authenticator-0.5.2/vendor/k8s.io/client-go/tools/cache/
H A Dthread_safe_store.go46 IndexKeys(indexName, indexKey string) ([]string, error)
48 ByIndex(indexName, indexKey string) ([]interface{}, error)
160 for _, indexKey := range indexKeys {
161 for key := range index[indexKey] {
175 func (c *threadSafeMap) ByIndex(indexName, indexKey string) ([]interface{}, error) {
186 set := index[indexKey]
197 func (c *threadSafeMap) IndexKeys(indexName, indexKey string) ([]string, error) {
208 set := index[indexKey]
/dports/sysutils/docker/docker-ce-18.09.5/components/cli/vendor/k8s.io/client-go/tools/cache/
H A Dthread_safe_store.go46 IndexKeys(indexName, indexKey string) ([]string, error)
48 ByIndex(indexName, indexKey string) ([]interface{}, error)
153 for _, indexKey := range indexKeys {
154 set := index[indexKey]
168 func (c *threadSafeMap) ByIndex(indexName, indexKey string) ([]interface{}, error) {
179 set := index[indexKey]
190 func (c *threadSafeMap) IndexKeys(indexName, indexKey string) ([]string, error) {
201 set := index[indexKey]
/dports/misc/concourse/concourse-6.7.2/vendor/k8s.io/client-go/tools/cache/
H A Dthread_safe_store.go46 IndexKeys(indexName, indexKey string) ([]string, error)
48 ByIndex(indexName, indexKey string) ([]interface{}, error)
160 for _, indexKey := range indexKeys {
161 for key := range index[indexKey] {
175 func (c *threadSafeMap) ByIndex(indexName, indexKey string) ([]interface{}, error) {
186 set := index[indexKey]
197 func (c *threadSafeMap) IndexKeys(indexName, indexKey string) ([]string, error) {
208 set := index[indexKey]
/dports/sysutils/go-wtf/wtf-0.21.0/vendor/k8s.io/client-go/client-go-12.0.0/tools/cache/
H A Dthread_safe_store.go46 IndexKeys(indexName, indexKey string) ([]string, error)
48 ByIndex(indexName, indexKey string) ([]interface{}, error)
160 for _, indexKey := range indexKeys {
161 for key := range index[indexKey] {
175 func (c *threadSafeMap) ByIndex(indexName, indexKey string) ([]interface{}, error) {
186 set := index[indexKey]
197 func (c *threadSafeMap) IndexKeys(indexName, indexKey string) ([]string, error) {
208 set := index[indexKey]
/dports/net-mgmt/thanos/thanos-0.11.0/vendor/github.com/prometheus/prometheus/vendor/k8s.io/client-go/tools/cache/
H A Dthread_safe_store.go46 IndexKeys(indexName, indexKey string) ([]string, error)
48 ByIndex(indexName, indexKey string) ([]interface{}, error)
160 for _, indexKey := range indexKeys {
161 for key := range index[indexKey] {
175 func (c *threadSafeMap) ByIndex(indexName, indexKey string) ([]interface{}, error) {
186 set := index[indexKey]
197 func (c *threadSafeMap) IndexKeys(indexName, indexKey string) ([]string, error) {
208 set := index[indexKey]
/dports/net-mgmt/thanos/thanos-0.11.0/vendor/k8s.io/client-go/tools/cache/
H A Dthread_safe_store.go46 IndexKeys(indexName, indexKey string) ([]string, error)
48 ByIndex(indexName, indexKey string) ([]interface{}, error)
160 for _, indexKey := range indexKeys {
161 for key := range index[indexKey] {
175 func (c *threadSafeMap) ByIndex(indexName, indexKey string) ([]interface{}, error) {
186 set := index[indexKey]
197 func (c *threadSafeMap) IndexKeys(indexName, indexKey string) ([]string, error) {
208 set := index[indexKey]
/dports/sysutils/helm/helm-3.5.2/vendor/github.com/docker/cli/vendor/k8s.io/client-go/tools/cache/
H A Dthread_safe_store.go46 IndexKeys(indexName, indexKey string) ([]string, error)
48 ByIndex(indexName, indexKey string) ([]interface{}, error)
160 for _, indexKey := range indexKeys {
161 for key := range index[indexKey] {
175 func (c *threadSafeMap) ByIndex(indexName, indexKey string) ([]interface{}, error) {
186 set := index[indexKey]
197 func (c *threadSafeMap) IndexKeys(indexName, indexKey string) ([]string, error) {
208 set := index[indexKey]
/dports/sysutils/gomplate/gomplate-3.9.0/vendor/k8s.io/client-go/tools/cache/
H A Dthread_safe_store.go46 IndexKeys(indexName, indexKey string) ([]string, error)
48 ByIndex(indexName, indexKey string) ([]interface{}, error)
160 for _, indexKey := range indexKeys {
161 for key := range index[indexKey] {
175 func (c *threadSafeMap) ByIndex(indexName, indexKey string) ([]interface{}, error) {
186 set := index[indexKey]
197 func (c *threadSafeMap) IndexKeys(indexName, indexKey string) ([]string, error) {
208 set := index[indexKey]
/dports/sysutils/istio/istio-1.6.7/vendor/sigs.k8s.io/service-apis/vendor/k8s.io/client-go/tools/cache/
H A Dthread_safe_store.go46 IndexKeys(indexName, indexKey string) ([]string, error)
48 ByIndex(indexName, indexKey string) ([]interface{}, error)
160 for _, indexKey := range indexKeys {
161 for key := range index[indexKey] {
175 func (c *threadSafeMap) ByIndex(indexName, indexKey string) ([]interface{}, error) {
186 set := index[indexKey]
197 func (c *threadSafeMap) IndexKeys(indexName, indexKey string) ([]string, error) {
208 set := index[indexKey]
/dports/sysutils/terraform/terraform-1.0.11/vendor/k8s.io/client-go/tools/cache/
H A Dthread_safe_store.go46 IndexKeys(indexName, indexKey string) ([]string, error)
48 ByIndex(indexName, indexKey string) ([]interface{}, error)
160 for _, indexKey := range indexKeys {
161 for key := range index[indexKey] {
175 func (c *threadSafeMap) ByIndex(indexName, indexKey string) ([]interface{}, error) {
186 set := index[indexKey]
197 func (c *threadSafeMap) IndexKeys(indexName, indexKey string) ([]string, error) {
208 set := index[indexKey]
/dports/net-mgmt/bosun/bosun-0.9.0-preview/vendor/github.com/prometheus/prometheus/vendor/k8s.io/client-go/tools/cache/
H A Dthread_safe_store.go46 IndexKeys(indexName, indexKey string) ([]string, error)
48 ByIndex(indexName, indexKey string) ([]interface{}, error)
153 for _, indexKey := range indexKeys {
154 set := index[indexKey]
168 func (c *threadSafeMap) ByIndex(indexName, indexKey string) ([]interface{}, error) {
179 set := index[indexKey]
190 func (c *threadSafeMap) IndexKeys(indexName, indexKey string) ([]string, error) {
201 set := index[indexKey]
/dports/textproc/fop/fop-2.6/fop-core/src/main/java/org/apache/fop/fo/pagination/
H A DPageSequenceWrapper.java38 private String indexKey; field in PageSequenceWrapper
55 indexKey = pList.get(PR_INDEX_KEY).getString(); in bind()
85 return indexKey; in getIndexKey()

12345678910