Home
last modified time | relevance | path

Searched refs:unique_set (Results 1 – 25 of 33) sorted by relevance

12

/dports/www/zenphoto/zenphoto-1.5.9/zp-core/
H A Dclass-persistentobject.php38 private $unique_set = NULL;
51 return instantiate($tablename, $unique_set, $cache_by, $use_cache, $is_transient, $allowCreate);
78 $this->unique_set = $unique_set;
80 $this->cache_by = serialize($unique_set);
82 $this->cache_by = $this->unique_set[$cache_by];
175 …' . prefix($this->table) . getSetClause($new_unique_set) . ' ' . getWhereClause($this->unique_set);
178 $this->unique_set = $new_unique_set;
300 $sql = 'SELECT * FROM ' . prefix($this->table) . getWhereClause($this->unique_set) . ' LIMIT 1;';
316 $entry = array_merge($this->unique_set, $this->updates, $this->tempdata);
345 …if (!$this->unique_set) { // If we don't have a unique set, then this is incorrect. Don't attempt …
[all …]
H A Dfunctions-common.php230 * @param string $unique_set what to add to the WHERE clause
234 function getWhereClause($unique_set) {
235 if (empty($unique_set))
238 foreach ($unique_set as $var => $value) {
/dports/graphics/opencv/opencv-4.5.3/modules/gapi/src/api/
H A Dginfer.cpp23 std::unordered_set<cv::gapi::GBackend> unique_set; in backends() local
24 for (const auto &nn : networks) unique_set.insert(nn.backend); in backends()
25 return std::vector<cv::gapi::GBackend>(unique_set.begin(), unique_set.end()); in backends()
H A Dgkernel.cpp105 std::unordered_set<cv::gapi::GBackend> unique_set; in backends() local
106 ade::util::transform(m_id_kernels, std::inserter(unique_set, unique_set.end()), in backends()
109 return std::vector<cv::gapi::GBackend>(unique_set.begin(), unique_set.end()); in backends()
/dports/databases/percona-toolkit/percona-toolkit-3.3.0/lib/
H A DDuplicateKeyFinder.pm488 foreach my $unique_set ( @unique_sets ) {
491 foreach my $col ( @{$unique_set->{cols}} ) {
493 PTDEBUG && _d('Unique set', $unique_set->{key}->{name},
496 $unique_set->{constraining_key} = $unique_cols{$col};
499 if ( $n_unique_cols && $unique_set->{key}->{name} ne 'PRIMARY' ) {
502 $unique_set->{key}->{name},
504 $unique_set->{constraining_key}->{name},
505 '(',$unique_set->{constraining_key}->{colnames},')');
506 $unconstrain{$unique_set->{key}->{name}}
507 = $unique_set->{constraining_key};
/dports/devel/py-joblib/joblib-1.1.0/joblib/
H A D_deprecated_format_stack.py85 unique_set = set()
87 if nn not in unique_set:
89 unique_set.add(nn)
/dports/misc/vxl/vxl-3.3.2/contrib/oxl/mvl/
H A DPairMatchMulti.h104 bool is_superset(PairMatchSet& unique_set);
/dports/science/py-OpenFermion/OpenFermion-1.3.0/src/openfermion/third_party/representability/constraints/
H A Dspin_orbital_2pos_constraints.py349 unique_set = {(i, j, k, l), (j, i, k, l), (i, j, l, k), (j, i, l, k),
351 for index_element in unique_set:
/dports/devel/py-pydantic/pydantic-1.8.2/pydantic/
H A Dutils.py285 unique_set = set()
287 if v not in unique_set:
288 unique_set.add(v)
/dports/sysutils/py-rdiff-backup/rdiff-backup-2.0.5/src/rdiff_backup/
H A Dmetadata.py731 unique_set = set()
733 if time in unique_set:
750 unique_set.add(time)
/dports/math/spot/spot-2.10.2/bin/
H A Dltlfilt.cc570 fset_t unique_set; member in __anon32a410520211::ltl_processor
798 if (unique && !unique_set.insert(f).second) in process_formula()
H A Dltlcross.cc966 fset_t unique_set; member in __anon7e3f152d0211::processor
1100 if (!unique_set.insert(f).second) in process_formula()
1151 bool res = unique_set.insert(nf).second; in process_formula()
/dports/math/py-spot/spot-2.10.2/bin/
H A Dltlfilt.cc570 fset_t unique_set; member in __anon7af50ee80211::ltl_processor
798 if (unique && !unique_set.insert(f).second) in process_formula()
H A Dltlcross.cc966 fset_t unique_set; member in __anond0afe6830211::processor
1100 if (!unique_set.insert(f).second) in process_formula()
1151 bool res = unique_set.insert(nf).second; in process_formula()
/dports/databases/percona-toolkit/percona-toolkit-3.3.0/bin/
H A Dpt-duplicate-key-checker2732 foreach my $unique_set ( @unique_sets ) {
2735 foreach my $col ( @{$unique_set->{cols}} ) {
2737 PTDEBUG && _d('Unique set', $unique_set->{key}->{name},
2740 $unique_set->{constraining_key} = $unique_cols{$col};
2743 if ( $n_unique_cols && $unique_set->{key}->{name} ne 'PRIMARY' ) {
2745 $unique_set->{key}->{name},
2747 $unique_set->{constraining_key}->{name},
2748 '(',$unique_set->{constraining_key}->{colnames},')');
2749 $unconstrain{$unique_set->{key}->{name}}
2750 = $unique_set->{constraining_key};
/dports/net/py-ldap3/ldap3-2.8.1/ldap3/core/
H A Dconnection.py1570 for unique_set in unique_attr_sets:
1571 if unique_set >= attr_set: # checks if unique set is a superset of attr_set
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/clang/utils/TableGen/
H A DClangAttrEmitter.cpp815 SmallDenseSet<StringRef, 8> unique_set; in uniqueEnumsInOrder() local
817 if (unique_set.insert(i).second) in uniqueEnumsInOrder()
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/clang/utils/TableGen/
H A DClangAttrEmitter.cpp794 SmallDenseSet<StringRef, 8> unique_set; in uniqueEnumsInOrder() local
796 if (unique_set.insert(i).second) in uniqueEnumsInOrder()
/dports/devel/llvm11/llvm-11.0.1.src/tools/clang/utils/TableGen/
H A DClangAttrEmitter.cpp813 SmallDenseSet<StringRef, 8> unique_set; in uniqueEnumsInOrder() local
815 if (unique_set.insert(i).second) in uniqueEnumsInOrder()
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/clang/utils/TableGen/
H A DClangAttrEmitter.cpp813 SmallDenseSet<StringRef, 8> unique_set; in uniqueEnumsInOrder() local
815 if (unique_set.insert(i).second) in uniqueEnumsInOrder()
/dports/devel/llvm90/llvm-9.0.1.src/tools/clang/utils/TableGen/
H A DClangAttrEmitter.cpp787 SmallDenseSet<StringRef, 8> unique_set; in uniqueEnumsInOrder() local
789 if (unique_set.insert(i).second) in uniqueEnumsInOrder()
/dports/devel/llvm12/llvm-project-12.0.1.src/clang/utils/TableGen/
H A DClangAttrEmitter.cpp815 SmallDenseSet<StringRef, 8> unique_set; in uniqueEnumsInOrder() local
817 if (unique_set.insert(i).second) in uniqueEnumsInOrder()
/dports/devel/llvm10/llvm-10.0.1.src/tools/clang/utils/TableGen/
H A DClangAttrEmitter.cpp794 SmallDenseSet<StringRef, 8> unique_set; in uniqueEnumsInOrder() local
796 if (unique_set.insert(i).second) in uniqueEnumsInOrder()
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/clang/utils/TableGen/
H A DClangAttrEmitter.cpp815 SmallDenseSet<StringRef, 8> unique_set; in uniqueEnumsInOrder() local
817 if (unique_set.insert(i).second) in uniqueEnumsInOrder()
/dports/devel/llvm80/llvm-8.0.1.src/tools/clang/utils/TableGen/
H A DClangAttrEmitter.cpp783 SmallDenseSet<StringRef, 8> unique_set; in uniqueEnumsInOrder() local
785 if (unique_set.insert(i).second) in uniqueEnumsInOrder()

12