码迷,mamicode.com
首页 >  
搜索关键字:compute    ( 1898个结果
【AWS征文】使用 AWS EC2 安装 Apache 服务
Amazon Elastic Compute Cloud (Amazon EC2) 直译过来是一种可伸缩的计算云,提供了广泛的实例类型选择,这些实例类型经过优化以适应不同的用例,实例类型包括CPU、内存、存储和网络容量的不同组合,使我们能够灵活地为应用程序选择适当的资源组合。
分类:Web程序   时间:2020-09-18 01:02:15    阅读次数:54
【odoo12】res_config_setting的view视图
1 <div class="row mt16 o_settings_container"> 2 <div class="col-12 col-lg-6 o_setting_box"> 3 <div class="o_setting_right_pane"> 4 <label for="resourc ...
分类:其他好文   时间:2020-09-11 14:22:32    阅读次数:33
Vue开发技巧
前言 看了掘金一篇关于Vue开发相关优化技巧,确实发现以前项目中写的代码有些问题,但是无关逻辑问题,当时写的代码感觉加载编译,甚至逻辑都没有问题,但是现在想一下,确实是有一些优化方面的问题,也就是说以前写的代码的确是有一些问题的。所以看了这篇帖子,借此总结一下。 Vue开发中的一些优化方式 v-sh ...
分类:其他好文   时间:2020-07-26 22:55:42    阅读次数:62
Es6(1)
1.let <script> //1.声明变量 let a; let b,c,d; let e =100; let f=521,g='iloveyou',h=[]; //2.let变量不能重复定义 例 // let peope = 'bill' // let peope = 'jom' //会报错: ...
分类:其他好文   时间:2020-07-26 19:49:20    阅读次数:86
vue中的动态组件(component & keep-alive)
多个组件使用同一个挂载点,并且进行动态的切换这就是动态组件。 通过使用<component>元素动态的绑定到它的is特性,来实现动态组件 <div id="test"> <button @click="change">切换页面</button> <component :is="currentView ...
分类:其他好文   时间:2020-07-26 19:19:13    阅读次数:119
cuda是什么
cuda是Compute Unified Device Architecture的缩写。中文叫统一计算架构。是为了让nvidia gpu可以完成通用计算任务的一种集成技术。我们通常可以使用的cuda框架有c,c++,fortran,python,java的,可以为数据大吞吐量的工作提供很好的加速功能 ...
分类:其他好文   时间:2020-07-26 15:10:23    阅读次数:140
Some features we need to keep in mind about the implementation of QuickSort algorithm
In this note,you will not find the concept of QS and the method of how to compute the cost of time and space of this algorithm。This page will not refe ...
分类:其他好文   时间:2020-07-26 01:23:01    阅读次数:76
43-类与类之间的关系说明
对象关联 就是一个对象中使用另外一个对象 1 依赖关系 代码中一般指由局部变量、函数参数、返回值建立的对于其他对象的调用关系。 class A{ public B method(C c,D d){ E e = new E();. .. B b = new B(); ... return b; }}这 ...
分类:其他好文   时间:2020-07-26 01:08:49    阅读次数:67
7-4 Dijkstra Sequence (30分)
Dijkstra's algorithm is one of the very famous greedy algorithms. It is used for solving the single source shortest path problem which gives the short ...
分类:其他好文   时间:2020-07-24 21:53:35    阅读次数:107
设计模式(10) 外观模式
外观模式(或门面模式、包装模式)是设计模式中非常朴素地体现面向对象“封装”概念的模式,它的基本原理是将复杂的内部实现以统一接口的方式暴露出来,最大程度地减少客户程序对某些子系统内部众多对象的依赖关系。 外观模式在开发过程中运用频率非常高,比如各种第三方SDK大多会使用外观模式。通过一个外观类是的整个 ...
分类:其他好文   时间:2020-07-23 09:18:32    阅读次数:63
1898条   上一页 1 ... 3 4 5 6 7 ... 190 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!