Questions tagged [consumption]

96 questions
3
votes
1 answer

How to measure the energy consumed by my Android app in a certain moment

I have been trying to figure this out since couple months ago because I'm working on my thesis, but unfortunately I have not been able to make it. What I'm doing is a performance analysis regarding energy consumed by an application running an…
KinGPinG
  • 171
  • 3
  • 11
2
votes
4 answers

Memory Consumption?

I have a piece of code where for ( ; ; ) { char *buf; /* Some code */ } The question here will the code allocate memory every time when it cycles through the loop . I mean atleast 4 bytes will be reserved for the pointer when it cycles .
sameer karjatkar
  • 2,017
  • 4
  • 23
  • 43
2
votes
0 answers

Azure Consumption API: What meter rates are used in Azure Usage Details list

I'm using the usage details API to pull a subscription-based Usage details list, and I'm trying to determine what rate was used in each one of the list items. I used this call GET…
Tal Sofer
  • 76
  • 6
2
votes
1 answer

Mapview mobile data consumption

i am working with google maps v2 api in my applicaiton. i am using a mapview inside a fragment like this: @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { …
jakub
  • 186
  • 2
  • 10
2
votes
1 answer

Is there any way to get instant Power Consumption for Android?

Is there a way to get the instant power consumption on an Android phone? Not a per process consumption, but an overall consumption. I need it to be accessible on an app to be associated with some settings on the phone at that time. Regarding the…
Minoru
  • 1,680
  • 3
  • 20
  • 44
2
votes
2 answers

Does Linux server consume less power than desktop edition?

I was searching for some benchmark between hardware between Linux server and it version for desktop. All that I could find was between different kinds of servers mainly Linux and windows. Anyway, my question is if the Linux server, Ubuntu 14.04 to…
joaonrb
  • 965
  • 11
  • 30
2
votes
2 answers

Ruby Celluloid and resources consumption

I'm new to Celluloid and have some questions about pools and futures. I'm building a simple web crawler (see the example at bottom). My URLS array dozen of thousands of URLs, so the example is stripped to some hundred. What I now want to do is to…
ctp
  • 1,077
  • 1
  • 10
  • 28
1
vote
0 answers

Reactive Extensions C# - How do I skip message while executing a (relatively) long-running subscription logic

I am new to all of the Reactive programming concepts and I need to deal with the following situation -- I have a consumer logic that is relatively long-running, in a way that a couple of messages may be produced while a preceding message is still…
Ivaylo Slavov
  • 8,839
  • 12
  • 65
  • 108
1
vote
1 answer

Microsoft.Azure.Management.Consumption .NET package and ApiVersion

I am trying to use the Microsoft.Azure.Management.Consumption 3.0.2 package to access the usage and consumption data. However in the call to UsageDetails.List I get the following error: Subscription scope usage is not supported for current api…
exvdev365
  • 13
  • 3
1
vote
0 answers

Is there a way to determine how much power/energy it takes to run my R-code?

I'm interested to know if there is an r package (or any other sort of approach) that helps determine how much power my r-code is using. What sort of factors would this depend on? Run time of my code, efficiency of my code, etc.? Many thanks for any…
seabass20
  • 227
  • 3
  • 14
1
vote
2 answers

Azure function activity in ADF V2 timeouts after 4min 7sec, even though in code i have mentioned "functionTimeout": "00:10:00" which is 10mins?

I have created an azure function and its timeout is set to 10mins in hosts.json but when I am triggering it through ADF V2 azure function activity then activity is getting terminated after 4mins 7sec, Can any one guide me what is happening at the…
1
vote
0 answers

Memory consumption increases steadily and processor 100% Java App

I built an application for a TeamSpeak server (the code I write through a dedicated framework), and this application contains 3 timers and some instructions that update the records from the database from second to second. The application goes…
1
vote
0 answers

How to consume a webservice using excel?

Possible Duplicate: Call web service in excel Hi, I have a wsdl-based webservice running on my intranet with some important organizational data that is constantly being updated. I have excel reports generated from some software we have running…
Rotem Tamir
  • 1,397
  • 2
  • 11
  • 26
1
vote
3 answers

Storage consumption report in Azure

I want to produce an email to be sent with this output for one specific vmname for period of one month: Server (vmname): - primary storage consumption - ... TB (average), - backup storage consumption - ... TB (average), - DR storage consumption -…
lubierzca
  • 160
  • 2
  • 14
1
vote
0 answers

Dynamic Optmization

I'm trying to set a problem that maximizes the consumption(u) over the time (10 years) subject to the variation of wealth (xt+1 - xt= -ct), where x0=1000. I've tried to solve it, but can't evaluate function at initial parameters. Also, the final…