最新 最热

LeetCode 0352 - Data Stream as Disjoint Intervals

Given a data stream input of non-negative integers a1, a2, …, an, …, summarize the numbers seen so far as a list of disjoint intervals.

2021-08-11
1

LeetCode 0393 - UTF-8 Validation

A character in UTF8 can be from 1 to 4 bytes long, subjected to the following rules:

2021-08-11
1

PCIe中MSI和MSI-X中断机制

在PCI总线中,所有需要提交中断请求的设备,必须能够通过INTx引脚提交中断请求,而MSI机制是一个可选机制。而在PCIe总线中,PCIe设备必须支持MSI或者MSI-X中断请求机制,而可以不支持INTx中断消息。...

2021-08-10
1

Apace Doris基本操作测试

注:本文仅是记录操作过程 参考官方文档:https://doris.apache.org/master/zh-CN/getting-started/basic-usage.html

2021-08-10
1

GCD-dispatch_source以及自定义倒计时GCD-dispatch_source以及自定义倒计时

1、简述dispatch_source是基础数据类型,用于协调特定底层系统事件的处理。dispatch_source替代了异步回调函数,来处理系统相关的事件,当配置一个dispatch时,你需要指定监测的事件、dispatch queue、以及处理事件的代码(bl...

2021-08-09
1

[PHP] laravel data_get函数以及?? ?: 测试用例

当需要从多维数组中获取值,并且进行判空,赋值默认值的时候可以使用下面的测试用例 $arr=[ "name"=>"陶士涵", "title"=>[ "sub"=>"测试" ], ......

2021-08-05
0

[linux] curl 命令post json数据

curl经常使用的命令,想要post json类型的数据,要注意header头和data数据

2021-07-29
1

Vue.js 组件 - 自定义事件

父组件是使用 props 传递数据给子组件,但如果子组件要把数据传递回去,就需要使用自定义事件!

2021-07-27
1

Vue.js 监听属性

以上代码中我们创建了两个输入框,data 属性中, kilometers 和 meters 初始值都为 0。watch 对象创建了 data 对象的两个监控方法: kilometers 和 meters。

2021-07-27
1

linux 云服务器挂载云盘

修改配置文件vim /etc/fstabUUID=fadf579f-fe04-4e58-8811-07dd778aa8a1 /data ext4 defaults 0 0

2021-07-23
1