Home
last modified time | relevance | path

Searched refs:agentRef (Results 1 – 17 of 17) sorted by relevance

/dports/devel/fossology-nomos-standalone/fossology-3.11.0/src/lib/php/Data/Clearing/
H A DAgentClearingEvent.php29 private $agentRef; variable in Fossology\\Lib\\Data\\Clearing\\AgentClearingEvent
37 * @param AgentRef $agentRef
41 public function __construct(LicenseRef $licenseRef, AgentRef $agentRef, argument
45 $this->agentRef = $agentRef;
143 return $this->agentRef;
151 return $this->agentRef->getAgentName();
159 return $this->agentRef->getAgentId();
/dports/devel/fossology-nomos-standalone/fossology-3.11.0/src/lib/php/Data/test/
H A DAgentRefTest.php27 private $agentRef; variable in Fossology\\Lib\\Data\\AgentRefTest
31 $this->agentRef = new AgentRef($this->agentId, $this->agentName, $this->agentRevision);
36 assertThat($this->agentRef->getAgentId(), is($this->agentId));
41 assertThat($this->agentRef->getAgentName(), is($this->agentName));
46 assertThat($this->agentRef->getAgentRevision(), is($this->agentRevision));
51 assertThat(strval($this->agentRef), is("AgentRef(1243, <agentName>, <agentRevision)"));
H A DLicenseMatchTest.php27 private $agentRef; variable in Fossology\\Lib\\Data\\LicenseMatchTest
59 $this->agentRef = new AgentRef($this->agentId, $this->agentName, $this->agentRevision);
65 …$this->licenseMatch = new LicenseMatch($this->fileId, $this->licenseRef, $this->agentRef, $this->l…
92 assertThat($this->licenseMatch->getAgentRef(), is($this->agentRef));
/dports/devel/fossology-nomos-standalone/fossology-3.11.0/src/lib/php/Data/
H A DLicenseMatch.php31 private $agentRef; variable in Fossology\\Lib\\Data\\LicenseMatch
48 * @param AgentRef $agentRef
52 …public function __construct($fileId, LicenseRef $licenseRef, AgentRef $agentRef, $licenseFileId, $… argument
56 $this->agentRef = $agentRef;
90 return $this->agentRef;
/dports/devel/fossology-nomos-standalone/fossology-3.11.0/src/lib/php/Data/Clearing/test/
H A DAgentClearingEventTest.php31 private $agentRef; variable in Fossology\\Lib\\Data\\Clearing\\AgentClearingEventTest
45 $this->agentRef = M::mock(AgentRef::class);
47 …$this->agentClearingEvent = new AgentClearingEvent($this->licenseRef, $this->agentRef, $this->matc…
128 assertThat($this->agentClearingEvent->getAgentRef(), is($this->agentRef));
134 $this->agentRef->shouldReceive('getAgentId')
145 $this->agentRef->shouldReceive('getAgentName')
/dports/devel/fossology-nomos-standalone/fossology-3.11.0/src/lib/php/BusinessRules/
H A DAgentLicenseEventProcessor.php105 $agentRef = $licenseMatch->getAgentRef();
106 $agentName = $agentRef->getAgentName();
107 $agentId = $agentRef->getAgentId();
112 'agentRef' => $agentRef,
138 $agentRef = $licenseMatch->getAgentRef();
139 $agentName = $agentRef->getAgentName();
140 $agentId = $agentRef->getAgentId();
/dports/devel/fossology-nomos-standalone/fossology-3.11.0/src/lib/php/BusinessRules/test/
H A DAgentLicenseEventProcessorTest.php201 $agentRef = M::mock(LicenseRef::class);
202 $agentRef->shouldReceive("getAgentId")->withNoArgs()->andReturn($agentId);
203 $agentRef->shouldReceive("getAgentName")->withNoArgs()->andReturn($agentName);
204 $agentRef->shouldReceive("getAgentName")->withNoArgs()->andReturn($agentName);
208 $licenseMatch->shouldReceive("getAgentRef")->withNoArgs()->andReturn($agentRef);
211 return array($licenseMatch, $licenseRef, $agentRef);
H A DClearingDecisionProcessorTest.php414 list($scannerResults, $licenseRef, $agentRef) = $this->createScannerDetectedLicenses();
438 assertThat($agentEvent->getAgentRef(), is($agentRef));
545 $agentRef = M::mock(AgentRef::class);
548 …$licenseId => array(new AgentClearingEvent($licenseRef, $agentRef, self::MATCH_ID, self::PERCENTAG…
551 return array($scannerEvents, $licenseRef, $agentRef);
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/rt.equinox.p2/bundles/org.eclipse.equinox.p2.publisher/src/org/eclipse/equinox/p2/publisher/
H A DAbstractPublisherApplication.java67 private ServiceReference<IProvisioningAgent> agentRef; field in AbstractPublisherApplication
240 agentRef = Activator.getContext().getServiceReference(IProvisioningAgent.class); in setupAgent()
241 if (agentRef != null) { in setupAgent()
242 agent = Activator.getContext().getService(agentRef); in setupAgent()
332 if (agentRef != null) { in stop()
333 Activator.getContext().ungetService(agentRef); in stop()
334 agentRef = null; in stop()
/dports/devel/fossology-nomos-standalone/fossology-3.11.0/src/monk/agent_tests/Functional/
H A DschedulerTest.php165 $agentRef = $licenseMatch->getAgentRef();
166 $this->assertEquals($agentRef->getAgentName(), "monk");
217 $agentRef = $licenseMatch->getAgentRef();
218 $this->assertEquals($agentRef->getAgentName(), "monk");
/dports/devel/fossology-nomos-standalone/fossology-3.11.0/src/lib/php/Proxy/
H A DScanJobProxy.php62 $agentRef = $scanAgents[0];
63 $agentIds[$agentName] = $agentRef->getAgentId();
/dports/devel/fossology-nomos-standalone/fossology-3.11.0/src/ninka/agent_tests/Functional/
H A DschedulerTest.php164 $agentRef = $licenseMatch->getAgentRef();
165 $this->assertEquals($agentRef->getAgentName(), "ninka");
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/rt.equinox.p2/bundles/org.eclipse.equinox.p2.repository.tools/src/org/eclipse/equinox/p2/internal/repository/tools/
H A DAbstractApplication.java64 …ServiceReference<IProvisioningAgent> agentRef = Activator.getBundleContext().getServiceReference(I… in setupAgent() local
65 if (agentRef != null) { in setupAgent()
66 agent = Activator.getBundleContext().getService(agentRef); in setupAgent()
/dports/devel/fossology-nomos-standalone/fossology-3.11.0/src/lib/php/Dao/test/
H A DLicenseDaoTest.php92 $agentRef = new AgentRef($agentId, $agentName, $agentRev);
93 …$expected = array( new LicenseMatch($pfileId, $licenseRef, $agentRef, $licenseFileId, $matchPercen…
435 $agentRef = new AgentRef($agentId, $agentName, $agentRev);
436 …$expected = array( new LicenseMatch($pfileId, $licenseRef, $agentRef, $licenseFileId, $matchPercen…
/dports/devel/fossology-nomos-standalone/fossology-3.11.0/src/lib/php/Dao/
H A DLicenseDao.php91 … $agentRef = new AgentRef(intval($row['agent_id']), $row['agent_name'], $row['agent_revision']);
92 …$matches[] = new LicenseMatch(intval($row['file_id']), $licenseRef, $agentRef, intval($row['licens…
138 $agentRef = new AgentRef($agentID, $agentName, "empty");
139 …$matches[] = new LicenseMatch(intval($row['file_id']), $licenseRef, $agentRef, intval($row['licens…
/dports/graphics/urho3d/Urho3D-1.7.1/Source/ThirdParty/DetourCrowd/source/
H A DDetourCrowd.cpp970 dtPolyRef agentRef = ag->corridor.getFirstPoly(); in checkPathValidity() local
972 if (!m_navquery->isValidPolyRef(agentRef, &m_filters[ag->params.queryFilterType])) in checkPathValidity()
978 agentRef = 0; in checkPathValidity()
979 …m_navquery->findNearestPoly(ag->npos, m_ext, &m_filters[ag->params.queryFilterType], &agentRef, ne… in checkPathValidity()
982 if (!agentRef) in checkPathValidity()
994 ag->corridor.fixPathStart(agentRef, agentPos); in checkPathValidity()
1022 ag->corridor.reset(agentRef, agentPos); in checkPathValidity()
/dports/graphics/recastnavigation/recastnavigation-e75adf86f91eb3082220085e42dda62679f9a3ea/DetourCrowd/Source/
H A DDetourCrowd.cpp960 dtPolyRef agentRef = ag->corridor.getFirstPoly(); in checkPathValidity() local
962 if (!m_navquery->isValidPolyRef(agentRef, &m_filters[ag->params.queryFilterType])) in checkPathValidity()
968 agentRef = 0; in checkPathValidity()
969 …ag->npos, m_agentPlacementHalfExtents, &m_filters[ag->params.queryFilterType], &agentRef, nearest); in checkPathValidity()
972 if (!agentRef) in checkPathValidity()
984 ag->corridor.fixPathStart(agentRef, agentPos); in checkPathValidity()
1012 ag->corridor.reset(agentRef, agentPos); in checkPathValidity()