码迷,mamicode.com
首页 >  
搜索关键字:mine number    ( 27191个结果
TypeScript 类型注解和类型推断
type annotation 类型注解 let count: number; count = 1; type inference 类型推断 const one = 1; const two = 2; const three = one + two; const person = { name: " ...
分类:其他好文   时间:2020-12-29 11:26:26    阅读次数:0
jenkins_pipeline后端_python_docker
pipeline { agent any environment { imagename = "镜像命名" tag = "v${BUILD_NUMBER}" } stages { stage('Pull code') { steps { echo "${imagename}:${tag}" git ...
分类:编程语言   时间:2020-12-29 11:16:14    阅读次数:0
jenkins_pipeline前端_docker
pipeline { agent any environment { imagename = '镜像名' tag = "v${BUILD_NUMBER}" #版本号 } stages { stage('Pull code') { steps { echo "${imagename}:${tag}" ...
分类:其他好文   时间:2020-12-29 11:15:03    阅读次数:0
根据屏幕高度自适应页面高度
var window_h=function(element,height){ var element=document.getElementsByClassName(element); for(let i=0;i<element.length;i++){ element[i].style.heigh ...
分类:其他好文   时间:2020-12-29 11:11:45    阅读次数:0
DRF使用超链接API实现真正RESTful
很多API并不是真正的实现了RESTful,而应该叫做RPC (Remote Procedure Call 远程过程调用),Roy Fielding曾经提到了它们的区别,原文如下: I am getting frustrated by the number of people calling any ...
分类:Windows程序   时间:2020-12-25 13:17:22    阅读次数:0
[LeetCode] 974. Subarray Sums Divisible by K 子数组数字之和可被K整除
Given an array of integers, return the number of (contiguous, non empty) subarrays that have a sum divisible by . Example 1: Note: 1. `1 这道题给了一个数组,让返回 ...
分类:编程语言   时间:2020-12-25 11:49:15    阅读次数:0
vue基础知识
vue基础语法 介绍:Vue是一套用于构建用户界面的渐进式框架 Vue核心库只关注视图层,不仅容易上手,还便于与第三方既有项目整合 vue官网 Hello World 1.引入vue.js 2.创建一个带有id的dom 3.编写vue实例,el挂载点对应HTMLdom,data表示vue实例中的数据 ...
分类:其他好文   时间:2020-12-24 11:36:30    阅读次数:0
MSTP+VRRP+OSPF+双出口
拓扑图实验需求:公司人数较多且多网络冗余和可用性要求较高,故网络中使用MSTP对不同的VLAN负载均衡,使用VRRP对网关进行负载均衡和平均流量,使用两家运营商线路对出口进行负载均衡。接入端配置边缘端口使终端快速进入转发,配置bpdu防护,保护边缘端口接收到bpdu报文后立即关闭,减少网络的震荡。两台core之间使用eth-trunk,配置步骤:1.access和core交换机之间的上下联启tru
分类:其他好文   时间:2020-12-23 12:44:07    阅读次数:0
pa_transaction_interface_all
As some data error, i am going to update the Project Number filed on PA_TRANSACTION_INTERFACE_ALL Table. But once i applied the SQL, there will appear ...
分类:其他好文   时间:2020-12-22 12:34:26    阅读次数:0
JS中的堆和栈
堆(heap):动态分配内存,大小不一,不自动分配。 栈(stack):自动分配相对固定大小的内存空间,有系统自动释放。 Array、Object、Function。。。 JavaScript中基本数据类型:Undefined、Null、Number、String、Boolean、Symbol。 直 ...
分类:Web程序   时间:2020-12-22 11:56:20    阅读次数:0
27191条   上一页 1 ... 29 30 31 32 33 ... 2720 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!