码迷,mamicode.com
首页 >  
搜索关键字:collections deque counter    ( 12297个结果
入门大数据---Spark累加器与广播变量
一、简介 在 Spark 中,提供了两种类型的共享变量:累加器 (accumulator) 与广播变量 (broadcast variable): 累加器:用来对信息进行聚合,主要用于累计计数等场景; 广播变量:主要用于在节点间高效分发大对象。 二、累加器 这里先看一个具体的场景,对于正常的累计求和 ...
分类:其他好文   时间:2020-06-26 10:59:41    阅读次数:50
27. U3D 高通AR
1,高通AR流程 HiAR_各种功能案例: HiAR SDK:Unity Package包形式:http://pan.baidu.com/s/1jItIyjW AR 脱卡(小明离开背景图片时也会显示出来) 脚本挂ImageTarget上 using System.Collections; using ...
分类:其他好文   时间:2020-06-26 10:34:13    阅读次数:73
Jmeter系列(34)- 详解 Counter 计数器
如果你想从头学习Jmeter,可以看看这个系列的文章哦 https://www.cnblogs.com/poloyy/category/1746599.html 简单介绍 计数器的作用:循环递增生成数字 计数器使用 long 来存储值,因此取值范围是 -2 ^ 63 到 2 ^ 63-1 可以在线程 ...
分类:其他好文   时间:2020-06-26 01:24:32    阅读次数:82
不同编程语言实现HelloWorld程序
C# using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace HelloWorld { class Program { static void Main(strin ...
分类:编程语言   时间:2020-06-25 20:00:13    阅读次数:93
.Net Core 一些项目 Github 开源地址
开源地址 CoreFX is the foundational class libraries for .NET Core. It includes types for collections, file systems, console, JSON, XML, async and many oth ...
分类:Web程序   时间:2020-06-25 10:11:21    阅读次数:240
Vue 框架学习(二) 事件监听
v-on 事件监听: <body> <div id ="app"> <p> <h2>counter: {{counter}}</h2> <button @click="increment">+</button> <button @click="decrement">-</button> </p> < ...
分类:其他好文   时间:2020-06-24 22:05:32    阅读次数:61
原子性操作原理分析
1. 概念 原子操作是指不被打断的操作,即它是最小的执行单位。最简单的原子操作就是一条条的汇编指令(不包括一些伪指令,伪指令会被汇编器解释成多条汇编指令)。在 linux 中原子操作对应的数据结构为 atomic_t,定义如下: typedef struct { int counter; } ato ...
分类:其他好文   时间:2020-06-24 19:57:50    阅读次数:57
使用Select.HtmlToPdf 把html内容生成pdf文件
1、nuget 引用 Select.HtmlToPdf 2、方法 using SelectPdf; using System.Collections.Specialized; using System.IO; using System.Web; namespace BQoolCommon.Helpe ...
分类:Web程序   时间:2020-06-24 15:55:57    阅读次数:109
python魔法方法
#!/usr/bin/python3 # _*_ Coding: UTF-8 _*_ from __future__ import division import collections import copy import math import operator import pickle im ...
分类:编程语言   时间:2020-06-24 15:49:28    阅读次数:41
java 数据结构(十二):Collections工具类的使用
Collections工具类1.作用:操作Collection和Map的工具类 2.常用方法:reverse(List):反转 List 中元素的顺序shuffle(List):对 List 集合元素进行随机排序sort(List):根据元素的自然顺序对指定 List 集合元素升序排序sort(Li ...
分类:编程语言   时间:2020-06-23 21:01:02    阅读次数:55
12297条   上一页 1 ... 30 31 32 33 34 ... 1230 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!