import Vue from 'vue' import Router from 'vue-router' import Home from '@/components/Home' Vue.use(Router) const router = new Router({ mode: 'history' ...
分类:
其他好文 时间:
2020-06-24 23:28:16
阅读次数:
68
以爱词霸翻译为例:http://fy.iciba.com 为了方便查看,使用筛选器filters只展示fy.iciba.com的请求。 在爱词霸翻译test查看原本结果 一、请求前修改数据: 在fiddler上设置断点:rules-automatic breakpoints-before reque ...
分类:
Web程序 时间:
2020-06-23 19:19:52
阅读次数:
71
script script is the only required keyword that a job needs. It's a shell script which is executed by the Runner. For example: job: script: "bundle ex ...
分类:
其他好文 时间:
2020-06-23 18:56:37
阅读次数:
111
vim /etc/systemd/system/node_exporter.service [Unit] Description=node_exporter Documentation=https://prometheus.io/ After=network.target [Service] Typ ...
分类:
系统相关 时间:
2020-06-22 17:16:37
阅读次数:
107
手动创建Function SQL> @?/rdbms/admin/owmctab.plb SQL> @?/rdbms/admin/owmaggrs.plb SQL> @?/rdbms/admin/owmaggrb.plb Before Oracle Database 12c, an Invoker ...
分类:
其他好文 时间:
2020-06-22 13:20:34
阅读次数:
200
环境 JDK 6 JUnit 4.13 Spring Tool Suite 4.6.2 Maven 3.6.3 假设 Assumptions 即假设,JUnit 用它来确定条件满足的情况下才执行测试,否则就直接忽略。 如果是在 @Before 或者 @BeforeClass 方法中,和放在 @Tes ...
分类:
其他好文 时间:
2020-06-22 13:08:25
阅读次数:
46
##目录 多线程需要解决的问题 线程之间的通信 线程之间的同步 Java内存模型 内存间的交互操作 指令屏障 happens-before规则 指令重排序 从源程序到字节指令的重排序 as-if-serial语义 程序顺序规则 顺序一致性模型 顺序一致性模型特性 顺序一致性模型特性 当程序未正确同步 ...
分类:
编程语言 时间:
2020-06-22 01:23:32
阅读次数:
56
Django rest framework源码分析(3) 节流 添加节流 自定义节流的方法 限制60s内只能访问3次 (1)API文件夹下面新建throttle.py,代码如下: # utils/throttle.py from rest_framework.throttling import Ba ...
分类:
其他好文 时间:
2020-06-21 20:12:57
阅读次数:
44
Function.prototype.before = function( beforefn ){ var __self = this; // 保存原函数的引用 return function(){ // 返回包含了原函数和新函数的"代理"函数 beforefn.apply( this, argum ...
分类:
其他好文 时间:
2020-06-20 13:36:05
阅读次数:
39
触发器(TRIGGER)是由事件来触发某个操作。这些事件包括 INSERT 语句、UPDATE 语句和 DELETE 语句。 当数据库系统执行这些事件时,就会激活触发器执行相应的操作。 一、创建只有一个执行语句的触发器 CREATE TRIGGER 触发器名 BEFORE | AFTER 触发事件O ...
分类:
数据库 时间:
2020-06-20 10:34:54
阅读次数:
57