码迷,mamicode.com
首页 >  
搜索关键字:rsyncerror: unknown module    ( 11207个结果
vue-cli webpack躺坑之旅
1、Sass -- vue解决sass-loader的版本过高导致的编译错误 Module build failed: TypeError: this.getResolve is not a function at Object.loader (C:\Users\Baicells\Desktop\h ...
分类:Web程序   时间:2020-07-08 13:11:47    阅读次数:84
webpack 编译时,提示 Unexpected token: keyword «const»
代码里如果用到const 关键字,编译报这种错误 解决方法: npm install terser-webpack-plugin --save然后,webpack配置: const TerserPlugin = require('terser-webpack-plugin'); module.exp ...
分类:Web程序   时间:2020-07-08 11:45:45    阅读次数:310
fixture的作用范围(scope)
####一、前言 fixture里面有个scope参数可以控制fixture的作用范围: session > module > class > function ####二、fixture作用范围 function:每一个函数或方法都会调用 class:每一个类调用一次,一个类可以有多个方法 mod ...
分类:其他好文   时间:2020-07-08 01:30:36    阅读次数:63
Pytest07-配置
7.配置 7.1 pytest配置文件概念 pytest常见的非测试文件,如下所示: 1.pytest.ini:pytest的主配置文件,可以改变pytest的默认行为,其中有很多可配置的选项 2.conftest.py:本地的插件库,其中的hook函数和fixture将作用于该文件所在的目录及其子 ...
分类:其他好文   时间:2020-07-07 19:31:41    阅读次数:40
读取excel,将读取到的数据存储到列表和对象中(2)
#基础用例数据类class CaseInfo: def __init__(self,case_id,case_name,case_module,case_pri,case_step,case_result): self.case_id=case_id self.case_name=case_name ...
分类:其他好文   时间:2020-07-07 17:34:21    阅读次数:57
<router-outlet> 干什么用的?
序言 在 Angular 5.X 中,有一个特别的标签: <router-outlet> , 其实,同样的,甚至同名的标签,在 React 中也有。 可见 Angular 与 React 的相似性有多高! 在 app.module.ts 路由文件中,有这么一段代码: imports: [ Brows ...
分类:其他好文   时间:2020-07-07 15:45:53    阅读次数:80
webpack---style-loader的配置:insertAt 和insert
这两天在配置webpack4.0的时候,出现了下面的问题 module: { rules: [{ test: /\.css$/, use: [{ loader: 'style-loader', options: { insertAt: "top" }, }, 'css-loader'] }, { t ...
分类:Web程序   时间:2020-07-07 09:24:32    阅读次数:131
node中转后台提供的接口,前端拿到路由进行导出
node端 第一步 先创建一个路由 'use strict' /** * @param {Egg.Application} app - egg application */ module.exports = ({ router, controller: { searchStastics: { sea ...
分类:其他好文   时间:2020-07-06 20:09:33    阅读次数:100
第一个FPGA程序——100MHz时钟分频
1.源文件 `timescale 1ns / 1ps module first_verilog( input clk, input rst, output reg cycle_20ms ); reg [23:0] cnt_reg ; always @(posedge clk) begin if(rs ...
分类:其他好文   时间:2020-07-06 16:33:26    阅读次数:90
激光雷达模块支持提高高速公路速度
激光雷达模块支持提高高速公路速度 LiDAR module supports increased highway speed What’s LIDAR? 自动驾驶技术的出现,无疑地扩大了激光成像探测和测距(LiDAR)传感器在汽车电子平台中的应用。激光雷达根据雷达原理工作,但使用红外激光二极管发射的 ...
分类:其他好文   时间:2020-07-06 14:37:54    阅读次数:66
11207条   上一页 1 ... 43 44 45 46 47 ... 1121 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!