代码空间

摘要(Abstract)

网格计算是分布式计算的一种,是一门计算机科学。它研究如何把一个需要非常巨大的计算能力才能解决的问题分成许多小的部分,然后把这些部分分配给许多计算机进行处理,最后把这些计算结果综合起来得到最终结果。 最近的分布式计算项目已经被用于使用世界各地成千上万志愿者的计算机的闲置计算能力,通过因特网,您可以分析来自外太空的电讯号,寻找隐蔽的黑洞,并探索可能存在的外星智慧生命;您可以寻找超过1000万位数字的梅森质数;您也可以寻找并发现对抗艾滋病毒更为有效的药物。用以完成需要惊人的计算量的庞大项目。 随着物联网的不断发展,云计算在快速处理不同网络上各种互联设备的大量数据方面存在不足。对于物联网来说,雾计算看起来更适合,美国国家标准和技术协会提供了有关雾技术和霾计算方面的定义和背景。 根据美国国家标准和技术协会的定义,雾计算将应用程序、管理和数据分析分散到网络上,通过为设备提供本地计算资源和为集中式服务提供网络连接,从而尽量缩短请求到响应之间的时间。它在多层架构中运行各应用程序,将硬件和软件功能分离和网格化,保证在执行智能计算和传输服务时能够为不同的应用程序进行动态重配置。

主题(Topic)



项目(Project)

ncu-psl/BigO-Calc elijahsimpsonn/DSA-Big-O ufukkulahli/practicing-big-o-notation Theemiss/sorting_algorithms alvarofpp/4linux-curso-hadoop Yesid4Code/Sorting_algorithms fayedraza/Big-OPractice HowProgrammingWorks/Complexity fayedraza/Big-O joeegan/big-o smokecoffee/Big-O manekinekko/big-o RolEYder/Algorithms Techie-Tessie/Big_O dsnair/computer-science TusharMalakar/SoftwareAnalysis-Design NicChappell/big-o-notation rslvn/big-o-challenge humbertodias/practice-big-o MGMAdvance/Big-O-Notation justingeist0/big-o-notation marcusvieira88/big-o-notation oimoralest/sorting_algorithms langston-barrett/coq-big-o Then make sure `package.json` of your project ends with this block: ```js { // ... "eslintConfig": { "extends": "./node_modules/react-scripts/config/eslint.js" } } ``` Projects generated with `react-scripts@0.2.0` and higher should already have it. If you don’t need ESLint integration with your editor, you can safely delete those three lines from your `package.json`. Finally, you will need to install some packages *globally*: ```sh npm install -g eslint babel-eslint eslint-plugin-react eslint-plugin-import eslint-plugin-jsx-a11y eslint-plugin-flowtype ``` We recognize that this is suboptimal, but it is currently required due to the way we hide the ESLint dependency. The ESLint team is already [working on a solution to this](https://github.com/eslint/eslint/issues/3458) so this may become unnecessary in a couple of months. ## Installing a Dependency The generated project includes React and ReactDOM as dependencies. It also includes a set of scripts used by Create React App as a development dependency. You may install other dependencies (for example, React Router) with `npm`: ``` npm install --save ``` ## Importing a Component This project setup supports ES6 modules thanks to Babel. While you can still use `require()` and `module.exports`, we encourage you to use [`import` and `export`](http://exploringjs.com/es6/ch_modules.html) instead. For example: ### `Button.js` ```js import React, { Component } from 'react'; class Button extends Component { render() { // ... } } export default Button; // Don’t forget to use export default! ``` ### `DangerButton.js` ```js import React, { Component } from 'react'; import Button from './Button'; // Import a component from another file class DangerButton extends Component { render() { return