码迷,mamicode.com
首页 >  
搜索关键字:sse    ( 3942个结果
安装office提示Office 16 Click-to-Run Extensibility Component
今天安装office时,提示Office 16 Click-to-Run Extensibility Component或者Office 15 Click-to-Run Extensibility Component,如果提示15对应的就是office2013,如果提示16对应的就是office20 ...
分类:其他好文   时间:2017-11-02 14:30:41    阅读次数:726
移除sql数据所有链接用户
use master; go declare @temp nvarchar(20) declare myCurse cursor for select spid from sys.sysprocesses where dbid=DB_ID('数据库名称')--待清理的数据库 open myCurse ...
分类:数据库   时间:2017-11-02 11:33:22    阅读次数:214
Session.run() & Tensor.eval()
如果有一个Tensor t,在使用t.eval()时,等价于: 这其中最主要的区别是你可以使用sess.run()在同一步获取多个tensor中的值, 例如: 注意到:每次使用 eval 和 run时,都会执行整个计算图,为了获取计算的结果,将它分配给tf.Variable,然后获取。 ...
分类:其他好文   时间:2017-11-01 12:19:52    阅读次数:149
剑指Offer——和为S的连续正数序列
题目描述: 小明很喜欢数学,有一天他在做数学作业时,要求计算出9~16的和,他马上就写出了正确答案是100。但是他并不满足于此,他在想究竟有多少种连续的正数序列的和为100(至少包括两个数)。没多久,他就得到另一组连续正数和为100的序列:18,19,20,21,22。现在把问题交给你,你能不能也很 ...
分类:其他好文   时间:2017-11-01 12:08:43    阅读次数:148
Lua------------------改善Unity编辑器对Lua文件的支持
原创 2017年03月10日 18:44:22 标签: Unity / lua / 编辑器 952 标签: Unity / lua / 编辑器 952 当前版本的Unity(截至Unity5.5.x)中TextAsset类不支持后缀为lua的文件,将lua文件导入到项目中后,其会被识别为类型为Def ...
分类:编程语言   时间:2017-10-31 20:00:08    阅读次数:199
Shiro自定义密码匹配认证
项目集成shiro的时候,有写某个自定义类然后继承自AuthorizingRealm 并且重写实现了他的2个方法: 1、其中一个:认证回调 验证账户密码的 2、另外一个:授权查询 验证权限的 ok,上面没什么用,只是讲述一下,正真用到的是下面的代码 使用上述代码就能通过自定义密码匹配认证 ...
分类:其他好文   时间:2017-10-31 14:13:06    阅读次数:122
创建压缩纹理的工具
Once a texture has been loaded as a compressed texture, it can be used for texturing in exactly the same way as an uncompressed texture. The details o... ...
分类:其他好文   时间:2017-10-31 14:07:54    阅读次数:204
spring boot实战(第十二篇)整合RabbitMQ
前言 本篇主要讲述Spring Boot与RabbitMQ的整合,内容非常简单,纯API的调用操作。 操作之间需要加入依赖Jar [html] view plain copy <dependency> <groupId>org.springframework.boot</groupId> <arti ...
分类:编程语言   时间:2017-10-31 12:39:12    阅读次数:213
Node js : Best way to define entity class
If you start to use a DB like mongo, you might be better off creating objects with mongoose but that's personal preference as well. As for your exampl... ...
分类:Web程序   时间:2017-10-30 16:04:05    阅读次数:203
WebService使用介绍
webservice是什么? webservice即web服务,是一种跨平台远程调用技术,基于http的soap协议进行传输数据。 Webservice工作原理:(对比了Socket开发的原理) wsdl是什么? wsdl即网络服务描述语言,是webservice使用说明书,描述了service(服 ...
分类:Web程序   时间:2017-10-30 15:00:26    阅读次数:264
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!