<p style="margin-left:25px;line-height:25px;color:rgb(70,79,85);font-family:Helvetica, 'Hiragino Sans GB', 'Microsoft Yahei', '微软雅黑', serif;text-inden ...
分类:
其他好文 时间:
2020-08-01 12:46:31
阅读次数:
96
一、AQS概述 AQS全名AbstractQueuedSynchronizer,意为抽象队列同步器,JUC(java.util.concurrent包)下面的Lock和其他一些并发工具类都是基于它来实现的。AQS维护了一个volatile的state和一个CLH(FIFO)双向队列。 二、分析 st ...
分类:
编程语言 时间:
2020-07-30 14:22:04
阅读次数:
63
<tr> <td class="emBold"><font color="#FF0000">*</font> State:</td> <td> <asp:DropDownList ID="ddlState" runat="server" onchange="CheckState()"/> <asp: ...
分类:
Web程序 时间:
2020-07-30 14:17:05
阅读次数:
100
1 import numpy as np 2 from sklearn import datasets 3 4 # 获取数据 5 iris = datasets.load_iris() 6 X = iris.data 7 y = iris.target 8 9 # 数据分割 10 from skle ...
分类:
其他好文 时间:
2020-07-30 01:46:35
阅读次数:
66
function xml(str, is = true){ //解析XML /* 定义返回的对象 */ let result = { //解析成功返回的对象(标签名,属性集合对象[属性名:属性值...],子元素数组[{}, {}...]) meta: '', xml: {} }; /* 提取首行说明 ...
分类:
Web程序 时间:
2020-07-29 21:52:36
阅读次数:
102
It uses " " as key, by default, this is the inital state, it often uses with 'cond' import { createMachine, assign, interpret } from "xstate"; const e ...
分类:
其他好文 时间:
2020-07-29 21:50:22
阅读次数:
66
# coding=utf-8 # This script is uesd to modify Agent IP at the first time of machine started. import requests import json import time import os import ...
分类:
其他好文 时间:
2020-07-29 17:54:47
阅读次数:
80
11G DG ORA-00600: internal error code, arguments: [kdsgrp1] 备库 Thu Feb 14 09:00:32 2019Errors in file /u01/app/oracle/diag/rdbms/trstdb/trstdb/trace/t ...
分类:
其他好文 时间:
2020-07-29 15:09:55
阅读次数:
78
##8.1环境 ###含义: 与环境相关的特殊变量一--Global表、env表、registry表以及UpValue 。 Global表存放在lua_State 结构体中也称为G表。每个lua_State 结构体都有一个对应的G表。不用多说,这个表就是存放全局变量的。 env表存放在Closure ...
分类:
其他好文 时间:
2020-07-29 14:58:44
阅读次数:
59
提到事务,相信大家都不陌生,事务的ACID四大特性,也是面试时经常问的,不过一般情况下,我们可能想到的是传统关系型数据库的事务,其实,Redis也是提供了事务机制的,本篇博客就来讲解下Redis的事务机制。 1. 事务演示 Redis的事务提供了一种将多个命令请求打包,然后一次性、按顺序性地执行多个 ...
分类:
其他好文 时间:
2020-07-29 10:15:32
阅读次数:
54