Home
last modified time | relevance | path

Searched refs:identification (Results 1 – 25 of 9554) sorted by relevance

12345678910>>...383

/dports/www/ilias6/ILIAS-6.14/src/GlobalScreen/Scope/MainMenu/Factory/
H A DMainMenuItemFactory.php29 * @param IdentificationInterface $identification
35 return new TopParentItem($identification);
43 * @param IdentificationInterface $identification
49 return new TopLinkItem($identification);
62 return new Link($identification);
76 return new Separator($identification);
90 return new Complex($identification);
103 return new RepositoryLink($identification);
116 return new LinkList($identification);
129 return new Lost($identification);
[all …]
/dports/www/ilias/ILIAS-5.4.25/src/GlobalScreen/Scope/MainMenu/Factory/
H A DMainMenuItemFactory.php29 * @param IdentificationInterface $identification
35 return new TopParentItem($identification);
43 * @param IdentificationInterface $identification
49 return new TopLinkItem($identification);
62 return new Link($identification);
76 return new Separator($identification);
90 return new Complex($identification);
103 return new RepositoryLink($identification);
116 return new LinkList($identification);
129 return new Lost($identification);
[all …]
/dports/www/ilias/ILIAS-5.4.25/tests/GlobalScreen/Identification/
H A DIdentificationFactoryTest.php53 protected $identification; variable in ILIAS\\GlobalScreen\\MainMenu\\IdentificationFactoryTest
79 $r = new ReflectionClass($this->identification);
117 $identification = $this->identification->core($this->provider_mock)->identifier('dummy');
125 $identification = $this->identification->core($this->provider_mock)->identifier('dummy');
126 $serialized_identification = $identification->serialize();
129 $this->assertEquals($identification, $new_identification);
136 …$identification = $this->identification->plugin($this->plugin_mock, $this->provider_mock)->identif…
137 $serialized_identification = $identification->serialize();
140 $this->assertEquals($identification, $new_identification);
158 $identification = $this->identification->fromSerializedIdentification($string_core);
[all …]
/dports/www/ilias6/ILIAS-6.14/tests/GlobalScreen/Identification/
H A DIdentificationFactoryTest.php53 protected $identification; variable in ILIAS\\GlobalScreen\\MainMenu\\IdentificationFactoryTest
79 $r = new ReflectionClass($this->identification);
118 $identification = $this->identification->core($this->provider_mock)->identifier('dummy');
126 $identification = $this->identification->core($this->provider_mock)->identifier('dummy');
127 $serialized_identification = $identification->serialize();
130 $this->assertEquals($identification, $new_identification);
137 …$identification = $this->identification->plugin($this->plugin_mock->getId(), $this->provider_mock)…
138 $serialized_identification = $identification->serialize();
141 $this->assertEquals($identification, $new_identification);
159 $identification = $this->identification->fromSerializedIdentification($string_core);
[all …]
/dports/www/ilias6/ILIAS-6.14/src/GlobalScreen/Scope/MetaBar/Factory/
H A DMetaBarItemFactory.php16 * @param IdentificationInterface $identification
22 return new TopParentItem($identification);
27 * @param IdentificationInterface $identification
33 return new TopLegacyItem($identification);
38 * @param IdentificationInterface $identification
42 public function linkItem(IdentificationInterface $identification) : LinkItem argument
44 return new LinkItem($identification);
49 * @param IdentificationInterface $identification
55 return new TopLinkItem($identification);
60 * @param IdentificationInterface $identification
[all …]
/dports/www/ilias/ILIAS-5.4.25/Services/MainMenu/classes/Items/
H A Dclass.ilMMItemTranslationStorage.php14 * @param IdentificationInterface $identification
43 * @param IdentificationInterface $identification
55 * @param IdentificationInterface $identification
61 if (!self::hasDefaultTranslation($identification)) {
65 $key = "{$identification->serialize()}|{$lng}";
78 * @param IdentificationInterface $identification
85 $key = "{$identification->serialize()}|{$lng}";
123 protected $identification; variable in ilMMItemTranslationStorage
169 return $this->identification;
174 * @param string $identification
[all …]
H A Dclass.ilMMItemRepository.php117 * @param IdentificationInterface $identification
124 return $this->main_collector->getSingleItem($identification);
203 * @param IdentificationInterface|null $identification
210 …if ($identification === null || $identification instanceof NullIdentification || $identification i…
211 …return new ilMMNullItemFacade($identification ? $identification : new NullIdentification(), $this-…
213 if ($identification->getClassName() === ilMMCustomProvider::class) {
217 return new ilMMItemFacade($identification, $this->main_collector);
222 * @param string $identification
229 $id = $this->services->identification()->fromSerializedIdentification($identification);
241 …$identification = $this->services->identification()->fromSerializedIdentification($top_item_identi…
[all …]
/dports/www/ilias6/ILIAS-6.14/Services/MainMenu/classes/Items/
H A Dclass.ilMMItemTranslationStorage.php14 * @param IdentificationInterface $identification
43 * @param IdentificationInterface $identification
55 * @param IdentificationInterface $identification
61 if (!self::hasDefaultTranslation($identification)) {
65 $key = "{$identification->serialize()}|{$lng}";
78 * @param IdentificationInterface $identification
85 $key = "{$identification->serialize()}|{$lng}";
123 protected $identification; variable in ilMMItemTranslationStorage
169 return $this->identification;
174 * @param string $identification
[all …]
H A Dclass.ilMMItemRepository.php66 * @param IdentificationInterface $identification
71 return $this->main_collector->getSingleItemFromRaw($identification);
146 * @param IdentificationInterface|null $identification
152 …if ($identification === null || $identification instanceof NullIdentification || $identification i…
153 …return new ilMMNullItemFacade($identification ? $identification : new NullIdentification(), $this-…
155 if ($identification->getClassName() === CustomMainBarProvider::class) {
159 return new ilMMItemFacade($identification, $this->main_collector);
163 * @param string $identification
169 $id = $this->services->identification()->fromSerializedIdentification($identification);
180 …$identification = $this->services->identification()->fromSerializedIdentification($top_item_identi…
[all …]
/dports/www/ilias6/ILIAS-6.14/Services/MainMenu/classes/Storage/Resource/Repository/
H A DResourceARRepository.php30 public function blank(ResourceIdentification $identification) : StorableResource argument
32 return new StorableFileResource($identification);
39 public function get(ResourceIdentification $identification) : StorableResource argument
41 $ar = $this->getAR($identification);
42 $r = $this->blank($identification);
52 public function has(ResourceIdentification $identification) : bool argument
54 return ARResource::find($identification->serialize()) instanceof ARResource;
70 * @param ResourceIdentification $identification
78 $ar = ARResource::find($identification->serialize());
81 … throw new ResourceNotFoundException("Resource not found: " . $identification->serialize());
[all …]
/dports/www/ilias6/ILIAS-6.14/src/GlobalScreen/Scope/MainMenu/Collector/Map/
H A DMap.php63 * @param IdentificationInterface $identification
68 $item = $this->raw->offsetGet($identification->serialize());
71 return $this->getLostItem($identification);
78 * @param IdentificationInterface $identification
84 $item = $this->filtered->offsetGet($identification->serialize());
87 return $this->getLostItem($identification);
94 * @param IdentificationInterface $identification
96 public function remove(IdentificationInterface $identification) : void argument
98 $this->raw->offsetUnset($identification->serialize());
102 * @param IdentificationInterface $identification
[all …]
/dports/www/ilias/ILIAS-5.4.25/Services/GlobalScreen/classes/
H A Dclass.ilGSIdentificationStorage.php20 protected $identification; variable in ilGSIdentificationStorage
47 …fication(\ILIAS\GlobalScreen\Identification\IdentificationInterface $identification, \ILIAS\Global… argument
49 $gsi = ilGSIdentificationStorage::find($identification->serialize());
52 $gsi->setIdentification($identification->serialize());
71 if (empty($this->identification)) {
83 return $this->identification;
88 * @param string $identification
92 public function setIdentification(string $identification) : ilGSIdentificationStorage argument
94 $this->identification = $identification;
/dports/www/ilias6/ILIAS-6.14/Services/MainMenu/classes/Storage/
H A DServices.php81 public function find(string $identification) : ?ResourceIdentification argument
83 $resource_identification = new ResourceIdentification($identification);
93 public function getRevision(ResourceIdentification $identification) : Revision argument
95 return $this->resource_builder->get($identification)->getCurrentRevision();
99 public function remove(ResourceIdentification $identification) : void argument
101 $this->resource_builder->remove($this->resource_builder->get($identification));
123 public function download(ResourceIdentification $identification) : DownloadConsumer argument
125 return $this->consumer_factory->download($this->resource_builder->get($identification));
129 public function inline(ResourceIdentification $identification) : InlineConsumer argument
131 return $this->consumer_factory->inline($this->resource_builder->get($identification));
[all …]
/dports/misc/p5-Business-EDI/atz-Business-EDI-327e01f/lib/Business/EDI/data/edifact/untdid/
H A DEDED.d99a.csv16 1147;an..35;B;Account identification
23 1171;an..17;B;Accounting journal identification
52 1523;an..6;B;Association assigned identification
74 3039;an..35;C;Party identification
81 3083;an..17;B;Organisational class identification
83 3127;an..17;B;Carrier identification
93 3197;an..9;I;Agent identification
101 3229;an..9;C;Country sub-entity identification
107 3251;an..9;C;Postcode identification
118 3311;an..8;B;Person inherited characteristic identification
[all …]
H A DEDED.d98a.csv16 1147;an..35;B;Account identification
23 1171;an..17;B;Accounting journal identification
52 1523;an..6;B;Association assigned identification
74 3039;an..35;C;Party identification
81 3083;an..17;B;Organisational class identification
83 3127;an..17;B;Carrier identification
93 3197;an..9;I;Agent identification
101 3229;an..9;C;Country sub-entity identification
107 3251;an..9;C;Postcode identification
118 3311;an..8;B;Person inherited characteristic identification
[all …]
H A DEDED.d98b.csv16 1147;an..35;B;Account identification
23 1171;an..17;B;Accounting journal identification
52 1523;an..6;B;Association assigned identification
74 3039;an..35;C;Party identification
81 3083;an..17;B;Organisational class identification
83 3127;an..17;B;Carrier identification
93 3197;an..9;I;Agent identification
101 3229;an..9;C;Country sub-entity identification
107 3251;an..9;C;Postcode identification
118 3311;an..8;B;Person inherited characteristic identification
[all …]
H A DEDED.d97b.csv16 1147;an..35;B;Account identification
50 1523;an..6;B;Association assigned identification
72 3039;an..35;C;Party identification
79 3083;an..17;B;Organisational class identification
81 3127;an..17;B;Carrier identification
91 3197;an..9;I;Agent identification
99 3229;an..9;C;Country sub-entity identification
105 3251;an..9;C;Postcode identification
116 3311;an..8;B;Person inherited characteristic identification
136 3463;an..6;I;Gate identification
[all …]
H A DEDED.d97a.csv47 1523;an..6;B;Association assigned identification
68 3039;an..35;C;Party id. identification
75 3083;an..17;B;Organisational class identification
77 3127;an..17;B;Carrier identification
87 3197;an..9;I;Agent identification
90 3223;an..25;C;Related place/location one identification
95 3229;an..9;C;Country sub-entity identification
101 3251;an..9;C;Postcode identification
112 3311;an..8;B;Person inherited characteristic identification
132 3463;an..6;I;Gate identification
[all …]
H A DEDED.2932.csv40 3039;an..17;C;Party id identification
45 3127;an..17;C;Carrier identification
58 3225;an..25;C;Place/location identification
66 3251;an..9;C;Postcode identification
73 3433;an..11;C;Institution name identification
107 4415;an..17;C;Test method identification
111 4425;an..17;C;Test reason identification
222 7187;an..17;C;Process type identification
230 7297;an..3;C;Set identification qualifier
232 7361;an..18;C;Customs code identification
[all …]
H A DEDED.1901.csv32 3039;an..17;C;Party Id identification
36 3127;an..17;C;Carrier identification
45 3225;an..25;C;Place/location identification
47 3229;an..9;C;Country sub-entity identification
48 3251;an..9;C;Postcode identification
51 3433;an..11;C;Institution name identification
54 3439;an..17;C;Sub-location identification
55 3446;an..20;C;Party tax identification number
163 7357;an..18;C;Commodity/rate identification
173 7767;an..18;C;Customs code identification
[all …]
H A DEDED.1902.csv32 3039;an..17;C;Party Id identification
36 3127;an..17;C;Carrier identification
45 3225;an..25;C;Place/location identification
47 3229;an..9;C;Country sub-entity identification
48 3251;an..9;C;Postcode identification
51 3433;an..11;C;Institution name identification
54 3439;an..17;C;Sub-location identification
55 3446;an..20;C;Party tax identification number
163 7357;an..18;C;Commodity/rate identification
173 7767;an..18;C;Customs code identification
[all …]
/dports/science/py-pycsw/pycsw-2.6.1/pycsw/core/
H A Dmetadata.py1266 if hasattr(md.identification, 'bbox'):
1267 bbox = md.identification.bbox
1272 len(md.identification.keywords) > 0):
1278 len(md.identification.creator) > 0):
1291 len(md.identification.contact) > 0):
1304 if hasattr(md.identification, 'date'):
1313 … if hasattr(md.identification, 'extent') and hasattr(md.identification.extent, 'description_code'):
1318 if len(md.identification.distance) > 0:
1320 if len(md.identification.uom) > 0:
1327 md.identification.uselimitation[0])
[all …]
/dports/devel/py-PeachPy/PeachPy-01d1515/peachpy/formats/elf/
H A Dfile.py100 identification = bytearray(16)
101 identification[0] = 0x7F
102 identification[1] = ord('E')
103 identification[2] = ord('L')
104 identification[3] = ord('F')
105 identification[4] = self.abi.elf_class
106 identification[5] = self.abi.elf_data_encoding
107 identification[6] = self.file_version
108 return identification
121 self.identification = FileIdentification(self.abi)
[all …]
/dports/www/ilias/ILIAS-5.4.25/Services/MainMenu/classes/Items/Facade/
H A Dclass.ilMMAbstractItemFacade.php40 protected $identification; variable in ilMMAbstractItemFacade
57 $this->identification = $identification;
58 $this->gs_item = $collector->getSingleItem($identification);
66 return $this->identification->serialize();
100 public function identification() : \ILIAS\GlobalScreen\Identification\IdentificationInterface function in ilMMAbstractItemFacade
102 return $this->identification;
154 return $this->identification->getProviderNameForPresentation();
163 … $default_translation = ilMMItemTranslationStorage::getDefaultTranslation($this->identification);
318 … ilMMItemTranslationStorage::storeDefaultTranslation($this->identification, $this->default_title);
337 'identification' => $this->identification->serialize(),
[all …]
/dports/net-mgmt/observium/observium/mibs/zhone/
H A DNTNTECH-SYSTEM-OBJECTS-IDENTIFIER-MIB56 authoritative identification of the network management subsystem
104 "The Paradyne Corporation authoritative identification for the
113 "The Paradyne Corporation authoritative identification for the
122 "The Paradyne Corporation authoritative identification for the
131 "The Paradyne Corporation authoritative identification for the
142 "The Paradyne Corporation authoritative identification for the
151 "The Paradyne Corporation authoritative identification for the
160 "The Paradyne Corporation authoritative identification for the
169 "The Paradyne Corporation authoritative identification for the
178 "The Paradyne Corporation authoritative identification for the
[all …]

12345678910>>...383