码迷,mamicode.com
首页 >  
搜索关键字:collections deque counter    ( 12297个结果
promethues常用的函数
prometheus函数常用 increase函数 应用场景:取指标的一段时间的增量,就是一小时内的最大值减去最小值,适合counter类型指标 increase(login[1h]) 登录次数一小时以内的增量 increase(login{status="false"}[1h]) 登录错误一小时以 ...
分类:其他好文   时间:2020-07-27 23:43:40    阅读次数:102
Rust 存在重复元素 两种解法
HashMap 第一种也是我最先想到的使用HashMap迭代数组,数组元素做Map的K,V随意 最后比较 Map.len() 和 Vec.len() 。耗时 4ms ; use std::collections::HashMap; let mut map: HashMap<i32,i32> = Ha ...
分类:其他好文   时间:2020-07-27 17:42:29    阅读次数:68
login_while
# -*- coding: utf-8 -*- # @Time : 2020/7/25 22:45 # @Author : Breeze # @FileName: login_while.py user_name = "Breeze" password = "123456789" counter = ...
分类:其他好文   时间:2020-07-27 15:35:26    阅读次数:67
C++ set用法总结(整理)
set简介: 顺序容器包括vector、deque、list、forward_list、array、string,所有顺序容器都提供了快速顺序访问元素的能力。 关联容器包括set、map 关联容器和顺序容器有着根本的不同:关联容器中的元素是按关键字来保存和访问的。与之相对,顺序容器中的元素是按它们在 ...
分类:编程语言   时间:2020-07-27 09:48:43    阅读次数:107
C#.netmvc单文件上传 ajax上传文件
写到到数据库的模型 using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Web; namespace ...
分类:Windows程序   时间:2020-07-26 22:58:41    阅读次数:95
Sorted对流中的数据进行排序,如list集合
package com.jeesite.modules.jiQiao.web;import com.google.common.collect.Lists;import java.util.ArrayList;import java.util.Collections;public class Dem ...
分类:编程语言   时间:2020-07-26 22:57:16    阅读次数:89
君仙小一时的第二周温习
我是先写的Model的表: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Compone ...
分类:其他好文   时间:2020-07-26 22:51:44    阅读次数:79
简单C#、asp.net mvc验证码的实现
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Text; using System.Drawing; using System.IO; namespa ...
分类:Windows程序   时间:2020-07-25 23:32:41    阅读次数:86
程序计数器
https://docs.oracle.com/javase/specs/jvms/se8/html/ 介绍 JVM中的程序计数寄存器(Program Counter Register)中,Register的命名源于CPU的寄存器,寄存器存储指令相关的现场信息。CPU只有把数据装载到寄存器才能够运行 ...
分类:其他好文   时间:2020-07-24 18:58:53    阅读次数:81
对react的研究20200724
setState class组件的特点,就是拥有特殊状态并且可以通过setState更新状态并重新渲染视图,是React中最重要的api。 1. setState为什么是异步 // 批量 this.setState({ counter: this.state.counter + 1 }); this ...
分类:其他好文   时间:2020-07-24 16:34:51    阅读次数:74
12297条   上一页 1 ... 20 21 22 23 24 ... 1230 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!