为您找到相关结果1,038,867个
Vue项目导入字体文件的方法步骤_vue.js_脚本之家
font-weight:normal; font-style:normal; } @font-face { font-family:"PingFangSC-Regular"; src:url('./PingFang\ SC\ Regular.ttf'); font-weight:normal; font-style:normal; } @font-face { font-family:"PingFangSC-Semibold"; src:url('./PingFang\ SC\ Semibold.ttf'); ...
www.jb51.net/javascript/318940v...htm 2025-3-18
Java用itextpdf导出PDF方法(通俗易懂)_java_脚本之家
Paragraph paragraph = new Paragraph(text, new Font(bfChinese, 16, Font.NORMAL)); paragraph.setAlignment(alignment); //设置文字居中 0靠左 1,居中 2,靠右 paragraph.setIndentationLeft(0); //设置左缩进 paragraph.setIndentationRight(0); //设置右缩进 paragraph.setFirstLineIndent(0); //设置首行缩进...
www.jb51.net/program/292587j...htm 2025-3-15
TensorFlow实现MLP多层感知机模型_python_脚本之家
W1=tf.Variable(tf.truncated_normal([in_units, h1_units], stddev=0.1))#初始化隐含层权重W1,服从默认均值为0,标准差为0.1的截断正态分布 b1=tf.Variable(tf.zeros([h1_units]))#隐含层偏置b1全部初始化为0 W2=tf.Variable(tf.zeros([h1_units,10])) ...
www.jb51.net/article/1361...htm 2025-2-24
模式语法
After matching all 6 digits and then failing to match "foo", the normal action of the matcher is to try again with only 5 digits matching the \d+ item, and then with 4, and so on, before ultimately failing. Once-only subpatterns provide the means for specifying that once a portion ...
www.jb51.net/shouce/php5/zh/referenc... 2025-3-17
基于Spring-cloud-gateway实现全局日志记录的方法_java_脚本之家
case GatewayLogType.NORMAL_REQUEST: log.info("[{}] {} {},route: {},status: {},excute: {} mills,queryParams: {}" ,gatewayLog.getIp() ,gatewayLog.getMethod() ,gatewayLog.getRequestPath() ,gatewayLog.getTargetServer() ,gatewayLog.getCode() ,gatewayLog.getExecuteTime() ,gatewayLog.ge...
www.jb51.net/program/306347y...htm 2025-3-15