码迷,mamicode.com
首页 >  
搜索关键字:ram    ( 12323个结果
记录springboot+注解形式实现接口防刷
首先是写一个注解类: import java.lang.annotation.Retention;import java.lang.annotation.Target; import static java.lang.annotation.ElementType.METHOD;import stat ...
分类:编程语言   时间:2021-01-30 11:43:21    阅读次数:0
django限流全局和单个视图
全局匿名和用户节流: # 限流 'DEFAULT_THROTTLE_CLASSES': [ 'rest_framework.throttling.AnonRateThrottle', 'rest_framework.throttling.UserRateThrottle' ], 'DEFAULT_T ...
分类:其他好文   时间:2021-01-30 11:42:33    阅读次数:0
在线画图网站
坐标函数 https://www.geogebra.org/graphing https://www.desmos.com/calculator 通用画图,简易Visio https://c.runoob.com/more/shapefly-diagram/ ...
分类:Web程序   时间:2021-01-29 12:08:03    阅读次数:0
springmvc 梳理4--内置统一的(国际化)字符集处理
在 web.xml 中配置一个字符集过滤器即可 <filter> <filter-name>CharacterEncodingFilter</filter-name> <filter-class>org.springframework.web.filter.CharacterEncodingFilt ...
分类:编程语言   时间:2021-01-27 13:08:28    阅读次数:0
logback配置文件---logback.xml详解
一、参考文档 1、官方文档 http://logback.qos.ch/documentation.html 2、博客文档 http://www.cnblogs.com/warking/p/5710303.html 二、logback.xml常用配置详解 常用节点结构图: 1、根节点<configu ...
分类:其他好文   时间:2021-01-26 12:09:45    阅读次数:0
Python for Data Science - DBSCan clustering to identify outliers
Chapter 4 - Clustering Models Segment 3 - DBSCan clustering to identify outliers DBSCAN for Outlier Detection Unsupervised method that clusters core s ...
分类:数据库   时间:2021-01-26 11:57:37    阅读次数:0
Leetcode 17.17 多次搜索 前缀树
相比起暴力解法,前缀树可以实现空间换时间。将多个 small 构建为一棵前缀树,在树上遍历一次 big 。可替代用每个 small 与 big 比对。 JAVA: private class Trie { boolean isEnd; Trie[] childs; int num; int flag ...
分类:其他好文   时间:2021-01-22 12:17:01    阅读次数:0
Android触摸事件分发
整体分发流程 Android Input Framework 这篇详细讲解了触摸事件从硬件分发到Activity之前的过程。 graph TD; a(Input Hardware)-->b(Kernel/Driver); b-->c(EventHub); c-->d(InputReader); d- ...
分类:移动开发   时间:2021-01-22 12:02:30    阅读次数:0
winfrom中Application.Restart()
System.Windows.Forms.Application.Restart();方法系统实现自动重启。 if (FrmDialog.ShowDialog(this, "确定退出登录吗?", "提示", false, false, false, null, DialogType.YesNo) = ...
分类:移动开发   时间:2021-01-22 11:52:41    阅读次数:0
DRF源码刨析
一、开发模式 1、前后端不分离 前后端放在一块写 2、前后端分离 2.1、前端开发 2.2、后端开发 为前端提供API开发 永远返回HttpResponse 3、Django FBV、 CBV 3.1、FBV def users(request): if request.method == 'GET ...
分类:其他好文   时间:2021-01-21 10:44:00    阅读次数:0
12323条   上一页 1 ... 18 19 20 21 22 ... 1233 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!