Questions tagged [load]

A measure of the amount of work a computer is performing. CPU load is closely related too, but not exactly the same as CPU utilization.

In computing (typically UNIX), load is a measure of the amount of computational work that a computer system performs.

All Unix and Unix-like systems generate a metric of three "load average" which represent the system load during the last one-, five-, and fifteen-minute periods.

7165 questions
26
votes
5 answers

PhoneGap for iPhone: problem loading external URL

I'm writing an application for iPad using PhoneGap and I would like to load an external URL without triggering Safari or using internal web browser like ChildBrowser. I'm using the PhoneGap iPad/iPhone sample project and I tried different…
Claus
  • 5,662
  • 10
  • 77
  • 118
26
votes
4 answers

window load inside a document ready?

Sorry if this has been answered before but all searches talk about the differences, not about using the two together, if possible. Simply, can $(window).load.(function() {}) be used INSIDE of $(document).ready.(function() {}) ? I have some things…
Sparky
  • 98,165
  • 25
  • 199
  • 285
26
votes
4 answers

How can I correct MySQL Load Error

I'm not quite sure a similar question to this was closed by I'm trying to execute the following MySQL program. mysql -e "load data local infile \ '/tmp/ept_inventory_wasp_export_04292013.csv' into \ table wasp_ept_inv fields terminated by ','…
octopusgrabbus
  • 10,555
  • 15
  • 68
  • 131
25
votes
2 answers

how to load view into another view codeigniter 2.1?

Ive been working with CI and I saw on the website of CI you can load a view as a variable part of the data you send to the "main" view, so, according the site (that says a lot of things, and many are not like they say ...ej pagination and others) i…
jpganz18
  • 5,508
  • 17
  • 66
  • 115
25
votes
8 answers

web server Load testing tool

Can you suggest a software tool (with GPLv license) to perform load testing for a Web server?
rak
  • 251
  • 1
  • 4
  • 4
25
votes
2 answers

Load content of a div on another page

You will see from this code that it loads the content URL from the hash tag. Is there anyway to load only a single div element from that external page. $(function() { if(location.hash) $("#content_inload").load(location.hash.substring(1)); …
Walrus
  • 19,801
  • 35
  • 121
  • 199
24
votes
7 answers

Load event for iFrame not fired in IE

Why is the load event not fired in IE for iFrames? Please take a look at this example. Work perfectly as expected in FF and Chrome, but IE fails.
Muleskinner
  • 14,150
  • 19
  • 58
  • 79
24
votes
4 answers

Elixir - Call method on module by String-name

I'm pretty new to Elixir and functional programming-languages in general. In Elixir, I want to call one specific function on Modules, given the Module name as String. I've got the following (very bad) code working, which pretty much does what I want…
lschuermann
  • 862
  • 1
  • 7
  • 17
24
votes
3 answers

Jquery on() load event on a single element

I'm sorry if this question has already been asked, but i didn't find a solution. I have 3 radios elements and I want to check the value when the selection changes and when the page loads. I would do that by using only the on() function. My problem…
FLX
  • 2,626
  • 4
  • 26
  • 57
24
votes
3 answers

How to require for the second time

Is there a way to force require-ing of a file for the second time? I am writing a library that is located in a path for Ruby. I am editing the file while doing a simple test of it in IRB. Each time I make a change to the file, I want to reload it…
sawa
  • 165,429
  • 45
  • 277
  • 381
23
votes
1 answer

Side effects of calling Assembly.Load multiple times

If one calls Assembly.Load multiple times does it cause any side effects? e.g. for (int i = 0; i < N; i++) { Assembly.Load(assemblyStrongName); // ....... } This loads the assembly one time doesn't it? I've checked with…
JohnDoDo
  • 4,720
  • 8
  • 31
  • 47
23
votes
5 answers

Elastic Load Balancing in EC2

It's been on the cards for a while, but now that Amazon have released Elastic Load balancing (ELB), what are your thoughts on deploying this solution for a high-traffic web application? Should we replace HAProxy or consider ELB as a complimentary…
Dom
  • 1,486
  • 2
  • 14
  • 22
23
votes
3 answers

JQuery .load() callback function

I've seen lots of questions and solutions to problems like this but nothing has worked for me. I have this: function() { $("#bdiv").load("bosses.php #icc10n",function(){ return $("#bdiv").html(); }); } But it's not working. To…
Dan
  • 357
  • 1
  • 3
  • 8
23
votes
3 answers

jqGrid - how to set grid to NOT load any data initially?

How can you create a grid but not load any data? If I omit the url option then the loadError callback is triggered. Currently we set url:NoData.json where NoData.json is a static file with no rows in it. Issue is in our loadComplete callback we'd…
Marcus Leon
  • 55,199
  • 118
  • 297
  • 429
23
votes
6 answers

jQuery: Check if image exists

I'm loading an image path via jQuery $.ajax and before showing the image I'd like to check if it in fact exists. Can I use the image load/ready event or something similar to determine that the file path is valid? Having .myimage set to display:…
Marko
  • 71,361
  • 28
  • 124
  • 158