logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

Spring - Sentinel 原理 全解析

系列文章Sentinel 原理-调用链Sentinel 原理-滑动窗口Sentinel 原理-实体类Sentinel 实战-限流篇Sentinel 实战-控制台篇Sentinel 实战-规则持久化Sentinel 实战-集群限流篇Sentinel 系列教程,现已上传到 github 和 gitee 中:GitHub:https://github.com/all4you/sentinel-tutor

Spring - JUC Semaphore 源码分析

前言Github:https://github.com/yihonglei/jdk-source-code-reading(java-concurrent)一 原理Semaphore(信号量),内部维护一组许可证,通过 acquire 方法获取许可证,如果获取不到,则阻塞;通过 release 释放许可,即添加许可证。许可证其实是 Semaphore 中维护的一个 volatile 整型 stat

#java
百度语音识别开放平台SDK使用方法

原文  http://blog.csdn.net/zpf8861/article/details/30229039百度Android语音识别SDK分在线与离线两种,这篇文章介绍在线SDK的使用方法。     在线SDK是以JAR包和动态链接库形式发布和使用,可以从百度开放云平台网站中下载SDK及使用说明文档。http://developer.baidu.com/wi

pod 查看当前源/添加源

1 pod 查看当前源$ pod repo0 repos2 pod repo换源CocoaPods 镜像使用帮助CocoaPods 是一个 Cocoa 和 Cocoa Touch 框架的依赖管理器,具体原理和 Homebrew 有点类似,都是从 GitHub 下载索引,然后根据索引下载依赖的源代码。对于旧版的 CocoaPods 可以使用如下方法使用 tuna 的镜像...

K8S - 彻底卸载k8s环境

kubeadm reset -fmodprobe -r ipiprm -rf ~/.kube/rm -rf /etc/kubernetes/rm -rf /etc/systemd/system/kubelet.service.drm -rf /etc/systemd/system/kubelet.servicerm -rf /usr/bin/kube*rm -rf /etc/cnirm -rf /

K8S - Helm upgrade failed with error “no matches for kind “StatefulSet“ in version “apps/v1beta2““ w

问题:在升级Kubernetes版本后,我得到了错误:error: failed decoding rader into objects: unable to recognize "": no matches for kind "StatefulSet" in version "apps/v1beta2"降级Kubernetes版本-这个解决方案目前是不可能的。添加以下行——runtime-con

K8S - 集群中部署Elasticsearch+Kibana

镜像Elasticsearch镜像:docker.elastic.co/elasticsearch/elasticsearch:7.6.2Kibana 镜像:docker.elastic.co/kibana/kibana:7.6.2部署Kubernetes StatefulSet 允许我们为 Pod 分配一个稳定的标识和持久化存储,Elasticsearch 需要稳定的存储来保证 Pod 在重新调

#elasticsearch
Flutter 报错:Could not resolve io.flutter:flutter_embedding_debug:1.0.0-ee76268252c22f5c11e82a7b87423c

报错信息:解决方法:打开build.gradle文件buildscript {ext.kotlin_version = '1.3.50'repositories {google()jcenter()maven { url "http://download.flutter.io" }}dependencies {classpath 'com.android.tools...

iOS app已经上架可供销售,但是在AppStore上搜不到的解决办法

app已经通过审核,状态为“可供销售”,但是在AppStore上死活不更新。百度了一下,说是修改价格和销售范围,等待半小时即可,亲测无效。还有看到一些说是这个操作只在下午的时候才有效,亲测也无效。后面等到晚上快下班的时候,自己就显示了,不用过于着急。在这里跟大家分享两种解决方案方案一:改价格、发行地区登录itunesconnect.apple.com 后台,进入app信息页;点击价格与销售范围,把

ios获取unix时间戳精确到毫秒

NSTimeInterval time=[[NSDate date] timeIntervalSince1970];long long int currentTime = (long long int)time;NSString *unixTime = [NSString stringWithFormat:@"%lld000", currentTime];

暂无文章信息