Home
last modified time | relevance | path

Searched refs:resourceHandler (Results 1 – 25 of 37) sorted by relevance

12

/dports/www/ilias/ILIAS-5.4.25/libs/composer/vendor/imsglobal/lti/src/ToolProvider/MediaType/
H A DResourceHandler.php23 * @param ProfileResourceHandler $resourceHandler Resource handler object
25 function __construct($toolProvider, $resourceHandler) argument
29 $this->resource_type->code = $resourceHandler->item->id;
31 $this->resource_name->default_value = $resourceHandler->item->name;
32 $this->resource_name->key = "{$resourceHandler->item->id}.resource.name";
34 $this->description->default_value = $resourceHandler->item->description;
35 $this->description->key = "{$resourceHandler->item->id}.resource.description";
38 $this->icon_info->default_location->path = $resourceHandler->icon;
39 $this->icon_info->key = "{$resourceHandler->item->id}.icon.path";
41 foreach ($resourceHandler->requiredMessages as $message) {
[all …]
H A DToolProfile.php78 foreach ($toolProvider->resourceHandlers as $resourceHandler) {
79 $this->resource_handler[] = new ResourceHandler($toolProvider, $resourceHandler);
/dports/www/moodle310/moodle/lib/ltiprovider/src/ToolProvider/MediaType/
H A DResourceHandler.php23 * @param ProfileResourceHandler $resourceHandler Resource handler object
25 function __construct($toolProvider, $resourceHandler) argument
29 $this->resource_type->code = $resourceHandler->item->id;
31 $this->resource_name->default_value = $resourceHandler->item->name;
32 $this->resource_name->key = "{$resourceHandler->item->id}.resource.name";
34 $this->description->default_value = $resourceHandler->item->description;
35 $this->description->key = "{$resourceHandler->item->id}.resource.description";
38 $this->icon_info->default_location->path = $resourceHandler->icon;
39 $this->icon_info->key = "{$resourceHandler->item->id}.icon.path";
41 foreach ($resourceHandler->requiredMessages as $message) {
[all …]
H A DToolProfile.php78 foreach ($toolProvider->resourceHandlers as $resourceHandler) {
79 $this->resource_handler[] = new ResourceHandler($toolProvider, $resourceHandler);
/dports/www/moodle311/moodle/lib/ltiprovider/src/ToolProvider/MediaType/
H A DResourceHandler.php23 * @param ProfileResourceHandler $resourceHandler Resource handler object
25 function __construct($toolProvider, $resourceHandler) argument
29 $this->resource_type->code = $resourceHandler->item->id;
31 $this->resource_name->default_value = $resourceHandler->item->name;
32 $this->resource_name->key = "{$resourceHandler->item->id}.resource.name";
34 $this->description->default_value = $resourceHandler->item->description;
35 $this->description->key = "{$resourceHandler->item->id}.resource.description";
38 $this->icon_info->default_location->path = $resourceHandler->icon;
39 $this->icon_info->key = "{$resourceHandler->item->id}.icon.path";
41 foreach ($resourceHandler->requiredMessages as $message) {
[all …]
H A DToolProfile.php78 foreach ($toolProvider->resourceHandlers as $resourceHandler) {
79 $this->resource_handler[] = new ResourceHandler($toolProvider, $resourceHandler);
/dports/www/moodle39/moodle/lib/ltiprovider/src/ToolProvider/MediaType/
H A DResourceHandler.php23 * @param ProfileResourceHandler $resourceHandler Resource handler object
25 function __construct($toolProvider, $resourceHandler) argument
29 $this->resource_type->code = $resourceHandler->item->id;
31 $this->resource_name->default_value = $resourceHandler->item->name;
32 $this->resource_name->key = "{$resourceHandler->item->id}.resource.name";
34 $this->description->default_value = $resourceHandler->item->description;
35 $this->description->key = "{$resourceHandler->item->id}.resource.description";
38 $this->icon_info->default_location->path = $resourceHandler->icon;
39 $this->icon_info->key = "{$resourceHandler->item->id}.icon.path";
41 foreach ($resourceHandler->requiredMessages as $message) {
[all …]
H A DToolProfile.php78 foreach ($toolProvider->resourceHandlers as $resourceHandler) {
79 $this->resource_handler[] = new ResourceHandler($toolProvider, $resourceHandler);
/dports/deskutils/egroupware/egroupware/vendor/celtic/lti/src/MediaType/
H A DResourceHandler.php24 function __construct($toolProvider, $resourceHandler) argument
27 $this->resource_type->code = $resourceHandler->item->id;
29 $this->resource_name->default_value = $resourceHandler->item->name;
30 $this->resource_name->key = "{$resourceHandler->item->id}.resource.name";
32 $this->description->default_value = $resourceHandler->item->description;
33 $this->description->key = "{$resourceHandler->item->id}.resource.description";
36 $icon_info->default_location->path = $resourceHandler->icon;
37 $icon_info->key = "{$resourceHandler->item->id}.icon.path";
41 foreach ($resourceHandler->requiredMessages as $message) {
44 foreach ($resourceHandler->optionalMessages as $message) {
H A DToolProfile.php80 foreach ($toolProvider->resourceHandlers as $resourceHandler) {
81 $this->resource_handler[] = new ResourceHandler($toolProvider, $resourceHandler);
/dports/multimedia/lms/lms-3.25.2/src/libs/subsonic/impl/
H A DStream.cpp115 std::shared_ptr<IResourceHandler> resourceHandler; in handleDownload() local
134 resourceHandler = createFileResourceHandler(trackPath); in handleDownload()
138 resourceHandler = Wt::cpp17::any_cast<std::shared_ptr<IResourceHandler>>(continuation->data()); in handleDownload()
141 continuation = resourceHandler->processRequest(request, response); in handleDownload()
143 continuation->setData(resourceHandler); in handleDownload()
149 std::shared_ptr<IResourceHandler> resourceHandler; in handleStream() local
158resourceHandler = Av::createTranscodeResourceHandler(streamParameters.trackPath, *streamParameters… in handleStream()
160 resourceHandler = createFileResourceHandler(streamParameters.trackPath); in handleStream()
164 resourceHandler = Wt::cpp17::any_cast<std::shared_ptr<IResourceHandler>>(continuation->data()); in handleStream()
167 continuation = resourceHandler->processRequest(request, response); in handleStream()
[all …]
/dports/multimedia/lms/lms-3.25.2/src/lms/ui/resource/
H A DAudioTranscodeResource.cpp181 std::shared_ptr<IResourceHandler> resourceHandler; in handleRequest() local
190resourceHandler = Av::createTranscodeResourceHandler(parameters->file, parameters->transcodeParame… in handleRequest()
194 resourceHandler = Wt::cpp17::any_cast<std::shared_ptr<IResourceHandler>>(continuation->data()); in handleRequest()
197 if (resourceHandler) in handleRequest()
199 continuation = resourceHandler->processRequest(request, response); in handleRequest()
201 continuation->setData(resourceHandler); in handleRequest()
/dports/lang/mono/mono-5.10.1.57/external/aspnetwebstack/test/System.Web.WebPages.Test/ApplicationParts/
H A DResourceHandlerTest.cs25 var resourceHandler = new ResourceHandler(applicationPart, "bar.foo.jpg"); in ResourceHandlerWritesContentsOfFileToStream()
28 resourceHandler.ProcessRequest(response.Object); in ResourceHandlerWritesContentsOfFileToStream()
44 var resourceHandler = new ResourceHandler(applicationPart, "does-not-exist"); in ResourceHandlerThrows404IfResourceNotFound()
47 Assert.Throws<HttpException>(() => resourceHandler.ProcessRequest(response.Object), in ResourceHandlerThrows404IfResourceNotFound()
/dports/www/grafana8/grafana-8.3.6/pkg/tsdb/azuremonitor/
H A Dazuremonitor-resource-handler.go88 func (s *Service) resourceHandler(subDataSource string) func(rw http.ResponseWriter, req *http.Requ… func
121 mux.HandleFunc("/azuremonitor/", s.resourceHandler(azureMonitor))
122 mux.HandleFunc("/appinsights/", s.resourceHandler(appInsights))
123 mux.HandleFunc("/loganalytics/", s.resourceHandler(azureLogAnalytics))
124 mux.HandleFunc("/resourcegraph/", s.resourceHandler(azureResourceGraph))
H A Dazuremonitor-resource-handler_test.go117 s.resourceHandler(azureMonitor)(rw, req)
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/grafana/grafana-plugin-sdk-go/backend/resource/httpadapter/
H A Dhandler_test.go27 resourceHandler := New(httpHandler)
59 err = resourceHandler.CallResource(context.Background(), req, testSender)
137 resourceHandler := New(httpHandler)
151 err := resourceHandler.CallResource(context.Background(), req, testSender)
187 resourceHandler := New(mux)
198 err := resourceHandler.CallResource(context.Background(), req, testSender)
/dports/games/spring/spring_98.0/rts/Sim/Misc/
H A DResourceMapAnalyzer.cpp69 const CResource* resource = resourceHandler->GetResource(resourceId); in CResourceMapAnalyzer()
73 mapWidth = resourceHandler->GetResourceMapWidth(resourceId); in CResourceMapAnalyzer()
74 mapHeight = resourceHandler->GetResourceMapHeight(resourceId); in CResourceMapAnalyzer()
157 const CResource* resource = resourceHandler->GetResource(resourceId); in Init()
186 const unsigned char* resourceMapArray = resourceHandler->GetResourceMap(resourceId); in GetResourcePoints()
430 const CResource* resource = resourceHandler->GetResource(resourceId); in GetResourcePoints()
618 const CResource* resource = resourceHandler->GetResource(resourceId); in GetCacheFileName()
H A DResourceHandler.h118 #define resourceHandler CResourceHandler::GetInstance() macro
/dports/games/spring/spring_98.0/rts/ExternalAI/
H A DSSkirmishAICallbackImpl.cpp1790 if (resourceId == resourceHandler->GetMetalId()) { in skirmishAiCallback_Map_getResourceMapRaw()
1878 if (resourceId == resourceHandler->GetMetalId()) { in skirmishAiCallback_Map_getMaxResource()
1888 if (resourceId == resourceHandler->GetMetalId()) { in skirmishAiCallback_Map_getExtractorRadius()
2025 return resourceHandler->GetNumResources(); in skirmishAiCallback_getResources()
2045 if (resourceId == resourceHandler->GetMetalId()) { in skirmishAiCallback_Economy_getCurrent()
2058 if (resourceId == resourceHandler->GetMetalId()) { in skirmishAiCallback_Economy_getIncome()
2071 if (resourceId == resourceHandler->GetMetalId()) { in skirmishAiCallback_Economy_getUsage()
2084 if (resourceId == resourceHandler->GetMetalId()) { in skirmishAiCallback_Economy_getStorage()
2192 if (resourceId == resourceHandler->GetMetalId()) { in skirmishAiCallback_UnitDef_getUpkeep()
2205 if (resourceId == resourceHandler->GetMetalId()) { in skirmishAiCallback_UnitDef_getResourceMake()
[all …]
/dports/net-p2p/go-ethereum/go-ethereum-1.10.14/vendor/github.com/status-im/keycard-go/vendor/github.com/ethereum/go-ethereum/swarm/
H A Dswarm.go194 var resourceHandler *mru.Handler
197 resourceHandler = mru.NewHandler(rhparams)
198 resourceHandler.SetStore(self.netStore)
202 resourceHandler,
218 self.api = api.NewAPI(self.fileStore, self.dns, resourceHandler, self.privateKey)
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/plugins/designer/
H A Dformwindowfile.cpp102 resourceHandler()->updateProjectResources(); in open()
274 ResourceHandler *FormWindowFile::resourceHandler() const in resourceHandler() function in Designer::Internal::FormWindowFile
H A Dformwindowfile.h70 ResourceHandler *resourceHandler() const;
/dports/devel/py-zope.browserresource/zope.browserresource-3.10.3/src/zope/browserresource/
H A Dmetaconfigure.py91 callable = resourceHandler,
96 def resourceHandler(name, layer, checker, factory, file, context_info): function
/dports/textproc/goldendict/goldendict-73ec1b5/
H A Dbgl_babylon.cc329 bgl_entry Babylon::readEntry( ResourceHandler * resourceHandler ) in readEntry() argument
364 if ( resourceHandler ) in readEntry()
365 resourceHandler->handleBabylonResource( filename, in readEntry()
H A Dbgl.cc1297 ResourceHandler resourceHandler( idx ); in makeDictionaries() local
1327 bgl_entry e = b.readEntry( &resourceHandler ); in makeDictionaries()
1367 idxHeader.resourcesCount = resourceHandler.getResources().size(); in makeDictionaries()
1370 resourceHandler.getResources().begin(); in makeDictionaries()
1371 j != resourceHandler.getResources().end(); ++j ) in makeDictionaries()

12