Yahoo Poland Wyszukiwanie w Internecie

Search results

  1. 26 paź 2024 · Web developers can check how much space is available for their origin and how much is being used by the origin with the navigator.storage.estimate() method of the Storage API. Note that this method only returns the estimated usage value, not the actual value.

  2. 26 lip 2024 · The estimate() method of the StorageManager interface asks the Storage Manager for how much storage the current origin takes up (usage), and how much space is available (quota). This method operates asynchronously, so it returns a Promise which resolves once the information is available.

  3. 6 mar 2024 · The StorageManager interface of the Storage API provides an interface for managing persistence permissions and estimating available storage. You can get a reference to this interface using either navigator.storage or WorkerNavigator.storage.

  4. 7 cze 2010 · You can use the following code in modern browsers to efficiently check the storage quota (total & used) in real-time: if ('storage' in navigator && 'estimate' in navigator.storage) { navigator.storage.estimate() .then(estimate => { console.log("Usage (in Bytes): ", estimate.usage, ", Total Quota (in Bytes): ", estimate.quota); }); }

  5. 5 cze 2017 · Quotas are conservative estimates of the space available for the origin's use, and should be less than the available space on the device to help prevent overruns.

  6. 5 cze 2017 · The StorageManager interface of the the Storage API provides an interface for managing persistance permissions and estimating available storage. You can get a reference to this interface using either navigator.storage or WorkerNavigator.storage.

  7. The storageQuota property of the Navigator interface of the Quota Management API provides means to query and request storage usage and quota information. You can get a reference to this interface using Navigator.storageQuota. Returns a list of the available storage types.

  1. Ludzie szukają również