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
2
votes
2 answers

QUnit Async testing stop function isn't working

I'm having a problem with QUnit stop() basically it doesn't seem to be working at all. Here's an example of something I'm trying to do: http://jsfiddle.net/7hZMM/1/ If you remove the line: testIframe.remove(); It works fine and runs the test and…
Tim
  • 7,660
  • 3
  • 30
  • 33
2
votes
2 answers

jQuery each() and load() ordering

I have a script that loops through a series of JSON objects that represent images, the loop loads an image and once it has been loaded it appends it to an element on my website/application. The images are in the correct order in the JSON however…
Alex
  • 8,353
  • 9
  • 45
  • 56
2
votes
2 answers

Is there a way to reduce CPU and GPU load in my simple 2D DirectX game?

I guess I have some explaining to do: I'm fairly new to game programming, so please don't get mad if I don't understand a concept immediately The game makes use of DirectX 10 and is written in C++ It's very simple 2D game The situation: Despite of…
2
votes
1 answer

jQuery: Hide images until resizing completes

The size and padding of the images on my site are calculated based on the size of the browser window. They fade in once they've loaded, but sometimes thats before they've been resized. How can I make them only fadein once they've loaded and been…
lizzmo
  • 201
  • 1
  • 13
2
votes
3 answers

Store a variable directly from loading in r

I have an RData "E.g.RData" I loaded it into R console using the load function. load("E.g.RData") it has a variable e.g. in RData. I am doing like this - e <- load("E.g.RData") then e gets the character vector as "e.g." but I want the contents of…
user1021713
  • 2,133
  • 8
  • 27
  • 40
2
votes
1 answer

Load a big plist from url in background

I load a big plist file from url and I must wait for some seconds before I can use the application. Is there some solution? How it can be loaded in background? Is GCD what I need? How it can be implemented? My code: NSString *urlStr = [[NSString…
Pavel Kaljunen
  • 1,291
  • 2
  • 26
  • 53
2
votes
3 answers

Load database content into variable

I need to load database content according to the following scheme into the variable data. var data = { "62": { sku: "62", section: "bodyImage", img: "images/diy-images/config-images/62.png", label: "plain red", …
Stefan Schneider
  • 157
  • 3
  • 18
2
votes
2 answers

Loading a link within the same page jQuery

This code is for a filterable portfolio. Originally I had PHP for the next and previous links, but when the portfolio is filtered it doesn't find the next filtered object. I found that the filter places the list items next to each other in the DOM…
2
votes
1 answer

JavaScript Local app save/load file?

I'm building a GUI for a plugin and it runs in Firefox locally. Is there any way to save .data for objects out to a .js or .txt file then have the ability to load these saved files (which would just contain the number of elements a user has added…
Aaron
  • 2,482
  • 1
  • 26
  • 56
2
votes
2 answers

jQuery - How to auto load content every one minute using load()

I have a script that loads content using load() via a click function. I'd like to change this to auto load content every one minute like a slideshow. I have 3 videos I need to loop through. Please can someone point me in the right direction I have…
Clinton Green
  • 9,697
  • 21
  • 68
  • 103
2
votes
1 answer

Jquery load refresh div

I am trying to update my div with ajax and jquery. The ajax request is performed correctively and the database is updated, the div is not reloading however. The methode update(ajax) is called, however. The $stats div is not updating. Can anyone help…
user1390504
  • 183
  • 4
  • 15
2
votes
1 answer

Android WebView: parallel Loading, Layout and Javascript

I have many (5-10) WebViews that are shown simultaneously (e.g. as a "carousel" similar to stock Gallery). Remote web sites are loaded into these WebViews (not local html files). The web sites are quite complex - they have lots of javascript,…
myself
  • 482
  • 3
  • 21
2
votes
0 answers

Lazy Load on MULTIPLE horizontal containers

I'm using Lazy Load jQuery plugin: http://www.appelsiini.net/projects/lazyload My question is: is it possible to have multiple scrolling containers each with a lazyload images inside, like this: $("#container1 img.lazy").lazyload({ container:…
Elisa
  • 21
  • 2
2
votes
1 answer

Opera: Can't get load event from window.open()

var openedWindow = window.open("test.html", "title"); openedWindow.addEventListener("load", function() { console.log("received load event"); }, false); I want to get the load event from an opened window. The code above works, but the callback…
Martin
  • 61
  • 7
2
votes
1 answer

Limit number of simultaneous file uploads in PHP to prevent DOS?

I would like to know a number of simultaneous file uploads in the very moment. E.g. If the number exceeds my limit, I would display a message to the user with apology to try later. Is there a way how to get the number of currently running uploads…
Frodik
  • 14,986
  • 23
  • 90
  • 141
1 2 3
99
100