1.table-cell <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <style> .box{ width: 200px; height: 200px; background-color: red; di ...
分类:
Web程序 时间:
2021-04-22 15:56:20
阅读次数:
0
MVC顶层设计 一、请求调用 public class GPDispatcherServlet extends HttpServlet { //保存Controller中URL和Method的对应关系 private List<GPHandlerMapping> handlerMappings = ...
分类:
Web程序 时间:
2021-04-22 15:16:33
阅读次数:
0
尝试输出keras模型参数的时候,需要解决的问题: 1 import tensorflow.compat.v1 as tf 2 tf.disable_v2_behavior() 3 import numpy as np 4 weight = tf.get_variable(name='weights ...
分类:
其他好文 时间:
2021-04-21 12:37:02
阅读次数:
0
Dim bag,pipe do Set bag=GetObject("WinMgmts:") Set pipe=bag.execquery("select * from win32_process where name='notepad.exe'") for each i in pipe i.ter ...
分类:
系统相关 时间:
2021-04-21 12:36:32
阅读次数:
0
1、 dat <- data.frame(v1=sample(1:15,15),v2=sample(1:15,15)) dat$cat[dat$v1 <= 8] <- "SMALL" dat$cat[dat$v1 > 8 ] <- "BIG" 2、 dat <- data.frame(v1=samp ...
分类:
编程语言 时间:
2021-04-20 14:08:55
阅读次数:
0
###1、@Api:用在请求的类上,说明该类的作用 @Api:用在请求的类上,说明该类的作用 tags="说明该类的作用" value="该参数没什么意义,所以不需要配置" ###2、@ApiOperation:用在请求的方法上,说明方法的作用 @ApiOperation:"用在请求的方法上,说明方 ...
分类:
其他好文 时间:
2021-04-20 14:04:21
阅读次数:
0
R语言中求数据框每一列的最大值、最小值、平均数、中位数、方差和标准差 1、 d <- data.frame(v1=sample(1:10,6),v2=sample(1:10,6),v3=sample(1:10,6), v4=sample(1:10,6)) rmax <- vector() rmin ...
分类:
编程语言 时间:
2021-04-20 14:01:50
阅读次数:
0
meta 在cube.js 还是比较重要的(尽管当前没有太多的使用介绍),但是我们基于meta 可以进行 代码生成,进行数据分析处理(基于元数据,方便开发数据分析应用),playground 就是集成了次 进行界面开发 参考代码 app.js const {prepareCompiler} = re ...
分类:
Web程序 时间:
2021-04-15 12:34:55
阅读次数:
0
Pattern和Matcher的介绍: Pattern对象是正则表达式编译后在内存中的表示形式,因此正则表达式宇符串必须先被编译为Pattern对象,然后再用该Pattern对象创建对应的Matcher对象,执行匹配所涉及的状态保留在 Matcher 对象中 多个 Matcher 对象可共享同 Pa ...
分类:
编程语言 时间:
2021-04-15 12:34:06
阅读次数:
0
http://www.51nod.com/Challenge/Problem.html#problemId=1254 最终答案只有2种情况 1、不交换最大,相当于随便交换2个在最大子段和里的数。 2、把一个原本不在最大子段和里的数换到最大子段和里。 第1种情况就跑一遍求最大子段和就好 对于第2种情况 ...
分类:
其他好文 时间:
2021-04-15 12:23:14
阅读次数:
0