2-2 软件构造的流程和工具广义的软件构造:Design ==> Programming/refactoring ==> Debugging ==> Testing ==> Build ==> Release狭义的软件构造:Validate ==> Compile ==> Link ==> Test... ...
分类:
其他好文 时间:
2019-12-06 11:47:57
阅读次数:
102
带表达式的 require 语句如果 require参数含有表达式(expressions),会创建一个上下文(context),因为在编译时(compile time)并不清楚具体是哪一个模块被导入 require("./template/" + name + ".ejs");1webpack 解 ...
分类:
Web程序 时间:
2019-12-05 11:39:04
阅读次数:
216
正则表达式 作用:验证某个字符串是否符合某种规则 代码: //1.正则表达式验证的规则 String reg = "正则表达式"; //Pattern,Matcher在java.util包中 //2.编译正则表达式规则 Pattern pattern = Pattern.compile(reg); ...
分类:
编程语言 时间:
2019-12-05 01:11:00
阅读次数:
89
Python3 正则表达式 正则表达式是一个特殊的字符序列,它能帮助你方便的检查一个字符串是否与某种模式匹配。 Python 自1.5版本起增加了re 模块,它提供 Perl 风格的正则表达式模式。 re 模块使 Python 语言拥有全部的正则表达式功能。 compile 函数根据一个模式字符串和 ...
分类:
编程语言 时间:
2019-12-03 19:27:33
阅读次数:
112
1.在vscode中安装easyless插件 2.在vscode的配置json文件中添加 "less.compile": { "outExt": ".wxss", // 输出文件的后缀,默认为.css } ...
分类:
微信 时间:
2019-12-03 17:55:30
阅读次数:
643
本文首发于个人博客 "https://kezunlin.me/post/95370db7/" ,欢迎阅读最新内容! keras multi gpu training <! more Guide multi_gpu_model python import tensorflow as tf from k ...
分类:
其他好文 时间:
2019-11-30 11:24:23
阅读次数:
107
安装依赖 sudo apt-get install libprotobuf-dev libleveldb-dev libsnappy-dev libhdf5-serial-dev protobuf-compile sudo apt-get install --no-install-recommend ...
分类:
其他好文 时间:
2019-11-29 12:50:30
阅读次数:
76
开始的时候引入别人的一个项目 npm install npm run dev 启动项目 报错 > node build/dev-server.js Listening at http://localhost:8888 webpack: wait until bundle finished: /ind ...
分类:
其他好文 时间:
2019-11-29 10:46:22
阅读次数:
99
Module 1 – Getting StartedQ1.What will happen when you compile and run the following code? public class MyClass{ static int i; public static void main ...
分类:
编程语言 时间:
2019-11-28 21:23:30
阅读次数:
61