Home
last modified time | relevance | path

Searched refs:entity_id (Results 1 – 25 of 1139) sorted by relevance

12345678910>>...46

/dports/www/guacamole-client/guacamole-client-1.3.0/extensions/guacamole-auth-jdbc/modules/guacamole-auth-jdbc-postgresql/schema/upgrade/
H A Dupgrade-pre-1.0.0.sql50 PRIMARY KEY (entity_id),
74 UNIQUE (entity_id),
77 FOREIGN KEY (entity_id)
124 FOREIGN KEY (entity_id)
161 UNIQUE (entity_id);
166 FOREIGN KEY (entity_id)
195 FOREIGN KEY (entity_id)
231 FOREIGN KEY (entity_id)
267 FOREIGN KEY (entity_id)
303 FOREIGN KEY (entity_id)
[all …]
/dports/www/guacamole-client/guacamole-client-1.3.0/extensions/guacamole-auth-jdbc/modules/guacamole-auth-jdbc-mysql/schema/upgrade/
H A Dupgrade-pre-1.0.0.sql46 PRIMARY KEY (`entity_id`),
60 `entity_id` int(11) NOT NULL,
70 FOREIGN KEY (`entity_id`)
121 FOREIGN KEY (`entity_id`)
151 UNIQUE (entity_id);
156 FOREIGN KEY (entity_id)
184 FOREIGN KEY (entity_id)
218 FOREIGN KEY (entity_id)
252 FOREIGN KEY (entity_id)
286 FOREIGN KEY (entity_id)
[all …]
/dports/www/guacamole-client/guacamole-client-1.3.0/extensions/guacamole-auth-jdbc/modules/guacamole-auth-jdbc-sqlserver/schema/upgrade/
H A Dupgrade-pre-1.0.0.sql99 UNIQUE ([entity_id]),
208 UNIQUE ([entity_id]);
213 FOREIGN KEY ([entity_id])
252 FOREIGN KEY ([entity_id])
295 FOREIGN KEY ([entity_id])
338 FOREIGN KEY ([entity_id])
375 FOREIGN KEY ([entity_id])
432 FOREIGN KEY ([entity_id])
461 WHERE [entity_id] IN (SELECT [entity_id] FROM DELETED);
464 WHERE [entity_id] IN (SELECT [entity_id] FROM DELETED);
[all …]
/dports/www/guacamole-client/guacamole-client-1.3.0/extensions/guacamole-auth-jdbc/modules/guacamole-auth-jdbc-postgresql/schema/
H A D001-create-schema.sql157 PRIMARY KEY (entity_id),
205 UNIQUE (entity_id),
208 FOREIGN KEY (entity_id)
231 UNIQUE (entity_id),
234 FOREIGN KEY (entity_id)
476 FOREIGN KEY (entity_id)
505 FOREIGN KEY (entity_id)
534 FOREIGN KEY (entity_id)
558 FOREIGN KEY (entity_id)
585 FOREIGN KEY (entity_id)
[all …]
H A D002-create-admin-user.sql22 INSERT INTO guacamole_user (entity_id, password_hash, password_salt, password_date)
24 entity_id,
31 INSERT INTO guacamole_system_permission (entity_id, permission)
32 SELECT entity_id, permission::guacamole_system_permission_type
45 INSERT INTO guacamole_user_permission (entity_id, affected_user_id, permission)
46 SELECT guacamole_entity.entity_id, guacamole_user.user_id, permission::guacamole_object_permission_…
55 JOIN guacamole_user ON guacamole_user.entity_id = affected.entity_id;
/dports/www/guacamole-client/guacamole-client-1.3.0/extensions/guacamole-auth-jdbc/modules/guacamole-auth-jdbc-sqlserver/schema/
H A D001-create-schema.sql247 UNIQUE ([entity_id]),
250 FOREIGN KEY ([entity_id])
275 UNIQUE ([entity_id]),
278 FOREIGN KEY ([entity_id])
552 FOREIGN KEY ([entity_id])
585 FOREIGN KEY ([entity_id])
618 FOREIGN KEY ([entity_id])
645 FOREIGN KEY ([entity_id])
861 WHERE [entity_id] IN (SELECT [entity_id] FROM DELETED);
864 WHERE [entity_id] IN (SELECT [entity_id] FROM DELETED);
[all …]
/dports/www/guacamole-client/guacamole-client-1.3.0/extensions/guacamole-auth-jdbc/modules/guacamole-auth-jdbc-mysql/schema/
H A D001-create-schema.sql95 PRIMARY KEY (`entity_id`),
143 FOREIGN KEY (`entity_id`)
168 FOREIGN KEY (`entity_id`)
378 `entity_id` int(11) NOT NULL,
392 FOREIGN KEY (`entity_id`)
418 FOREIGN KEY (`entity_id`)
444 FOREIGN KEY (`entity_id`)
456 `entity_id` int(11) NOT NULL,
467 FOREIGN KEY (`entity_id`)
494 FOREIGN KEY (`entity_id`)
[all …]
/dports/www/kanboard/kanboard-1.2.21/app/Model/
H A DMetadataModel.php37 * @param integer $entity_id
40 public function getAll($entity_id) argument
44 ->eq($this->getEntityKey(), $entity_id)
53 * @param integer $entity_id
62 ->eq($this->getEntityKey(), $entity_id)
71 * @param integer $entity_id
75 public function exists($entity_id, $name) argument
88 * @param integer $entity_id
101 if ($this->exists($entity_id, $key)) {
129 * @param integer $entity_id
[all …]
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/app/workers/bulk_imports/
H A Dentity_worker.rb18 def perform(entity_id, current_stage = nil) argument
19 return if stage_running?(entity_id, current_stage)
23 entity_id: entity_id,
27 next_pipeline_trackers_for(entity_id).each do |pipeline_tracker|
31 entity_id
37 entity_id: entity_id,
42 Gitlab::ErrorTracking.track_exception(e, entity_id: entity_id)
47 def stage_running?(entity_id, stage) argument
50 BulkImports::Tracker.stage_running?(entity_id, stage)
53 def next_pipeline_trackers_for(entity_id) argument
[all …]
/dports/security/py-pysaml24/pysaml2-4.9.0/src/saml2/
H A Dmdstore.py272 srvs = self[entity_id][typ]
379 def entity_categories(self, entity_id): argument
413 ent = self[entity_id]
582 for t in self[entity_id][typ]:
810 def sha1_entity_transform(entity_id): argument
1173 if entity_id in _md:
1212 if entity_id in _md:
1216 def vo_members(self, entity_id): argument
1295 def mdui_uiinfo(self, entity_id): argument
1297 data = self[entity_id]
[all …]
H A Dmcache.py24 for entity_id in entities:
60 oldees.append(entity_id)
88 res = self._cache.get(_key(subject_id, entity_id))
94 def set(self, subject_id, entity_id, info, timestamp=0): argument
115 if entity_id not in entities:
116 entities.append(entity_id)
124 def reset(self, subject_id, entity_id): argument
153 def active(self, subject_id, entity_id): argument
183 def update(self, subject_id, entity_id, ava): argument
184 res = self._cache.get(_key(subject_id, entity_id))
[all …]
H A Dmdbcache.py65 for entity_id in entities:
67 info = self.get(subject_id, entity_id,
70 oldees.append(entity_id)
101 "entity_id": entity_id})
107 def set(self, subject_id, entity_id, info, timestamp=0): argument
123 "entity_id": entity_id,
129 def reset(self, subject_id, entity_id): argument
158 def active(self, subject_id, entity_id): argument
168 "entity_id": entity_id})
184 def update(self, subject_id, entity_id, ava): argument
[all …]
/dports/security/py-pysaml26/pysaml2-6.5.2/src/saml2/
H A Dmcache.py24 for entity_id in entities:
60 oldees.append(entity_id)
88 res = self._cache.get(_key(subject_id, entity_id))
94 def set(self, subject_id, entity_id, info, timestamp=0): argument
115 if entity_id not in entities:
116 entities.append(entity_id)
124 def reset(self, subject_id, entity_id): argument
153 def active(self, subject_id, entity_id): argument
183 def update(self, subject_id, entity_id, ava): argument
184 res = self._cache.get(_key(subject_id, entity_id))
[all …]
H A Dmdstore.py351 srvs = self[entity_id][typ]
488 ent = self[entity_id]
884 def sha1_entity_transform(entity_id): argument
1279 if entity_id in _md:
1318 if entity_id in _md:
1322 def vo_members(self, entity_id): argument
1488 md = self[entity_id]
1521 def mdui_uiinfo(self, entity_id): argument
1523 data = self[entity_id]
1610 data = self[entity_id]
[all …]
H A Dmdbcache.py65 for entity_id in entities:
67 info = self.get(subject_id, entity_id,
70 oldees.append(entity_id)
101 "entity_id": entity_id})
107 def set(self, subject_id, entity_id, info, timestamp=0): argument
124 "entity_id": entity_id,
131 def reset(self, subject_id, entity_id): argument
160 def active(self, subject_id, entity_id): argument
170 "entity_id": entity_id})
186 def update(self, subject_id, entity_id, ava): argument
[all …]
/dports/security/py-pysaml2/pysaml2-7.1.0/src/saml2/
H A Dmcache.py24 for entity_id in entities:
60 oldees.append(entity_id)
88 res = self._cache.get(_key(subject_id, entity_id))
94 def set(self, subject_id, entity_id, info, timestamp=0): argument
115 if entity_id not in entities:
116 entities.append(entity_id)
124 def reset(self, subject_id, entity_id): argument
153 def active(self, subject_id, entity_id): argument
183 def update(self, subject_id, entity_id, ava): argument
184 res = self._cache.get(_key(subject_id, entity_id))
[all …]
H A Dmdstore.py351 srvs = self[entity_id][typ]
488 ent = self[entity_id]
887 def sha1_entity_transform(entity_id): argument
1280 if entity_id in _md:
1319 if entity_id in _md:
1323 def vo_members(self, entity_id): argument
1489 md = self[entity_id]
1522 def mdui_uiinfo(self, entity_id): argument
1524 data = self[entity_id]
1611 data = self[entity_id]
[all …]
H A Dmdbcache.py65 for entity_id in entities:
67 info = self.get(subject_id, entity_id,
70 oldees.append(entity_id)
101 "entity_id": entity_id})
107 def set(self, subject_id, entity_id, info, timestamp=0): argument
124 "entity_id": entity_id,
131 def reset(self, subject_id, entity_id): argument
160 def active(self, subject_id, entity_id): argument
170 "entity_id": entity_id})
186 def update(self, subject_id, entity_id, ava): argument
[all …]
/dports/net-mgmt/observium/observium/includes/
H A Dentities.inc.php24 * @param mixed $entity_id
30 if (is_array($entity_id))
34 $entity_id = $entity_id[$translate['id_field']];
56 * @param mixed $entity_id
61 if (is_array($entity_id))
65 $entity_id = $entity_id[$translate['id_field']];
88 * @param mixed $entity_id
96 if (is_array($entity_id))
100 $entity = $entity_id;
146 * @param mixed $entity_id
[all …]
/dports/www/drupal8/drupal-8.9.20/core/modules/quickedit/tests/src/FunctionalJavascript/
H A DQuickEditJavascriptTestBase.php44 * @param int $entity_id
49 protected function startQuickEditViaToolbar($entity_type_id, $entity_id, $entity_instance_id) { argument
124 * @param int $entity_id
127 protected function awaitQuickEditForEntity($entity_type_id, $entity_id) { argument
128 $entity_selector = '[data-quickedit-entity-id="' . $entity_type_id . '/' . $entity_id . '"]';
138 * @param int $entity_id
150 $entity_page_id = $entity_type_id . '/' . $entity_id . '[' . $entity_instance_id . ']';
211 * @param int $entity_id
223 $entity_page_id = $entity_type_id . '/' . $entity_id . '[' . $entity_instance_id . ']';
249 * @param int $entity_id
[all …]
/dports/www/limesurvey/limesurvey/application/models/
H A DSettingsUser.php9 * @property string $entity_id Entity ID
76 * @param integer $entity_id | optional defaults to 'null'
84 $setting = self::getUserSetting($stg_name, $uid, $entity, $entity_id);
93 'entity_id' => $entity_id
107 * @param integer $entity_id | optional defaults to 'null'
110 public static function getUserSetting($stg_name, $uid = null, $entity = null, $entity_id = null) argument
126 if ($entity_id != null) {
128 $searchParams[':entity_id'] = $entity_id;
147 * @param integer|null $entity_id | optional defaults to 'null'
152 $setting = self::getUserSetting($stg_name, $uid, $entity, $entity_id);
[all …]
/dports/www/drupal8/drupal-8.9.20/core/modules/block/src/
H A DBlockListBuilder.php161 foreach ($entities as $entity_id => $entity) {
163 $blocks[$entity->getRegion()][$entity_id] = [
165 'entity_id' => $entity_id,
264 $entity_id = $info['entity_id'];
266 $form[$entity_id] = [
276 $form[$entity_id]['info'] = [
282 $form[$entity_id]['type'] = [
285 $form[$entity_id]['region-theme']['region'] = [
297 $form[$entity_id]['region-theme']['theme'] = [
302 $form[$entity_id]['weight'] = [
[all …]
/dports/www/drupal9/drupal-9.2.10/core/modules/block/src/
H A DBlockListBuilder.php159 foreach ($entities as $entity_id => $entity) {
161 $blocks[$entity->getRegion()][$entity_id] = [
163 'entity_id' => $entity_id,
262 $entity_id = $info['entity_id'];
264 $form[$entity_id] = [
274 $form[$entity_id]['info'] = [
280 $form[$entity_id]['type'] = [
283 $form[$entity_id]['region-theme']['region'] = [
295 $form[$entity_id]['region-theme']['theme'] = [
300 $form[$entity_id]['weight'] = [
[all …]
/dports/www/drupal8/drupal-8.9.20/core/modules/content_translation/tests/src/Kernel/
H A DContentTranslationFieldSyncRevisionTest.php133 $entity_id = $entity->id();
134 $this->assertLatestRevisionFieldValues($entity_id, [1, 1, 1, 'Alt 1 EN']);
200 $entity_id = $entity->id();
201 $this->assertLatestRevisionFieldValues($entity_id, [8, 1, 1, 'Alt 1 EN']);
210 $this->assertLatestRevisionFieldValues($entity_id, [9, 2, 2, 'Alt 2 EN']);
272 $entity_id = $entity->id();
273 $this->assertLatestRevisionFieldValues($entity_id, [15, 1, 1, 'Alt 1 EN']);
320 $entity_id = $entity->id();
321 $this->assertLatestRevisionFieldValues($entity_id, [21, 1, 1, 'Alt 1 EN']);
345 $entity_id = $entity->id();
[all …]
/dports/www/drupal9/drupal-9.2.10/core/modules/content_translation/tests/src/Kernel/
H A DContentTranslationFieldSyncRevisionTest.php133 $entity_id = $entity->id();
134 $this->assertLatestRevisionFieldValues($entity_id, [1, 1, 1, 'Alt 1 EN']);
200 $entity_id = $entity->id();
201 $this->assertLatestRevisionFieldValues($entity_id, [8, 1, 1, 'Alt 1 EN']);
210 $this->assertLatestRevisionFieldValues($entity_id, [9, 2, 2, 'Alt 2 EN']);
272 $entity_id = $entity->id();
273 $this->assertLatestRevisionFieldValues($entity_id, [15, 1, 1, 'Alt 1 EN']);
320 $entity_id = $entity->id();
321 $this->assertLatestRevisionFieldValues($entity_id, [21, 1, 1, 'Alt 1 EN']);
345 $entity_id = $entity->id();
[all …]

12345678910>>...46