is

2023-11-15 Using insecure protocols with repositories, without explicit opt-in, is unsupported. ==> Gradle不支持不安全的 Maven 仓库协议,也就是http,请改为https

前言:运行android项目报错: A problem occurred configuring root project 'xxx'.> Could not resolve all dependencies for configuration ':classpath'. > Using insec ......

Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?

docker-compose up -d 安装docker环境,提示一下错误:docker-compose 命令没发现。 docker compse up -d 报错: Cannot connect to the Docker daemon at unix:///var/run/docker.soc ......
daemon docker the connect running

subject organization is not system:nodes 问题解决

在下面的 issues 找到了答案: https://github.com/kubernetes/kubernetes/issues/99504 ┌──[root@vms100.liruilongs.github.io]-[~] └─$kubectl get csr NAME AGE SIGNERN ......
organization subject system 问题 nodes

逻辑卷缩容报错 xfs_growfs: /dev/new/new_box is not a mounted XFS filesystem

[root@server ~]# xfs_growfs /dev/new/new_box xfs_growfs: /dev/new/new_box is not a mounted XFS filesystem 说我的文件系统并不是xfs文件系统 使用df -hT 查看磁盘 [root@server ......
xfs_growfs filesystem new 逻辑 mounted

umount 报错umount: /new_room: target is busy. (In some cases useful info about processes that use the device is found by lsof(8) or fuser(1))

挂载逻辑卷后,尝试更新逻辑卷的文件系统 [root@server lost+found]# umount /new_room/ umount: /new_room: target is busy. (In some cases useful info about processes that use ......
umount processes new_room device target

[Java]format string is malformed java

format string is malformed java 最近在做代码审查,发现很多在使用 String.format 的时候遇到了IDEA报的 Format string 'xxx' is malformed 警告。 顾名思义,错误是标识字符串格式不正确,也就是说由于使用了格式不正确的字符串 ......
malformed format string Java java

CF Good Bye 2022: 2023 is NEAR (CF1770C)

C.Koxia and Number Theory 题意:给定 n 个数,问是否存在一个正整数 x ,使得对 \(\forall \ i,j \in [1,n]\) ,有 \(\gcd(a_i+x,a_j+x)=1\) 题解: 感觉这题挺难的,想了很多次也没想出来. 若两个数互质,一定不存在质数 \ ......
1770C CF 2022 1770 2023

The request is not allowed by the user agent or the platform in the current context, possibly because the user denied permission,iphone手机video标签报错

The request is not allowed by the user agent or the platform in the current context, possibly because the user denied permission,在当前上下文中,用户代理或平台不允许该请求 ......
the user permission platform possibly

mysql数据表 Table is marked as crashed and should be repaired 的解决办法

问题 查询时,报 Table is marked as crashed and should be repaired 错误 错误原因 网上查了一下,错误的产生原因,有网友说是频繁查询和更新XXX表造成的索引错误,还有说法是Mysql数据库因某种原因而受到了损坏。 如:数据库服务器突发性断电,在数据表 ......
数据表 repaired crashed 办法 数据

Python Object of type float32 is not JSON serializable

前言 使用 json.dumps(result) 对数据转 JSON 数据出现错误:TypeError: Object of type float32 is not JSON serializable 数据中存在的 float32 数据是 numpy 格式的数据,Python 内置的 float 类 ......
serializable Python Object float JSON

error TS2322 Type 'string null' is not assignable to type 'string unXdefined'.

这个错误消息涉及到Angular编译时的类型检查,特别是在Ivy编译器的部分编译模式下。错误消息本身提供了关键信息,但让我们详细解释这个错误的含义、可能的原因和如何修复它。 错误消息: Compiling with Angular sources in Ivy partial compilation ......
string 39 assignable unXdefined error

如何解决Windows电脑 Create folder error,Access is denied.

如何解决 Create folder error, Error: mkdir C:\Program Files\nodejs\21.1.0/: Access is denied. Waring: Name : http://npm.taobao.org/mirrors/node/v21.1.0/wi ......
Windows Create Access folder denied

re2-cpp-is-awesome

没做出来,看题解得 攻防世界逆向高手题之re2-cpp-is-awesome_align 20h-CSDN博客 注意 汇编知识 align 8,align num是让后面的字节都对齐num,也就是这里都对齐8才对,中间补7个0。可是这里下一个数和上一个数明明间隔4而已!后来查了很多资料才发现是IDA ......
re2-cpp-is-awesome awesome cpp re2 re

org.springframework.context.ApplicationContextException: Failed to start bean 'documentationPluginsBootstrapper'; nested exception is java.lang.NullPointerException报错问题

这个原因是 高版本SpringBoot整合swagger 造成的 我的项目是2.7.8 swagger版本是3.0.0 就会出现上面的报错 解决方式: 1.配置WebMvcConfigurer.java import org.springframework.context.annotation.Co ......

TLOP is Implemented Effectively in China

The National Five-Year Water Ecological Function Plan (NFWEFP) that covers all of China, has been iterated six times since its implementation in 1995. ......
Implemented Effectively China TLOP is

kubeadm部署的k8s证书过期问题 k8s问题排查:the existing bootstrap client certificate in /etc/kubernetes/kubelet.conf is expired

解决问题: 估计跟移动有关,下面那个没解决问题,是因为在原有文件的基础上修改的吧?而这里直接是移走,重新生成了新的。不太清楚是不是这个原因。 $ cd /etc/kubernetes/pki/ $ mv {apiserver.crt,apiserver-etcd-client.key,apiserv ......
问题 certificate kubernetes k8s bootstrap

Object.is(),其行为与===基本一致,不过有两处不同: +0不等于-0。 NaN等于自身。

Object.is(),其行为与 基本一致,不过有两处不同: +0不等于-0。 NaN等于自身。 Object.is()与=都是判断两个数是否严格相等。 它们的区别主要在NaN自身和+0与-0的判断。 对于NaN自身的判断,Object.is(NaN,NaN)的返回结果为true,而NaN=NaN的 ......
行为 Object NaN is

解决MySQL8报错:Public Key Retrieval is not allowed

问题分析:这个是由于配置的URL中的useSSL为false导致的,当其为false后,mysql将会检查allowPublicKeyRetrieval是不是TRUE,由于开启allowPublicKeyRetrieval不安全可能遭到中间人攻击(英语:Man-in-the-middle attac ......
Retrieval allowed MySQL8 Public MySQL

wsl 开发环境中完美解决 vm.max_map_count [65530] is too low

Win10环境用WSL+Docer搭建ElasticSearch集群时,肯定会报这样一个错误: max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144] 解决方案如下: $ ......
max_map_count 环境 count 65530 wsl

mysql 查询报错Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column

这个错误是由于 MySQL 的新版本中默认开启了ONLY_FULL_GROUP_BY模式,即在 GROUP BY 语句中的 SELECT 列表中,只能包含分组或聚合函数,不能包含其他列。而你的查询语句中出现了一个列senior_two.score.student_id,它既没有被分组也没有被聚合,因 ......

vscode看C语言代码提示identifier "optind" is undefined

在settings.json里添加 { "C_Cpp.default.cStandard": "gnu99" } 关键是那个gnu,因为getopt.h是unix c标准里的,在standard c库里 ......
quot identifier undefined 语言 代码

==和is的区别

import time a = time.gmtime() b = time.gmtime() print(a == b) # 输出True print(a is b) # 输出False print(id(a)) # 2680257978480 print(id(b)) # 26802597848 ......

Required request parameter 'numbers' for method parameter type String[] is not present

报错就是这个,然后报错的信息再给点详细的 org.springframework.web.bind.MissingServletRequestParameterException: Required request parameter 'numbers' for method parameter t ......
parameter Required request numbers present

[LeetCode] 2849. Determine if a Cell Is Reachable at a Given Time

You are given four integers sx, sy, fx, fy, and a non-negative integer t. In an infinite 2D grid, you start at the cell (sx, sy). Each second, you mus ......
Determine Reachable LeetCode Given 2849

使用navicat连接SQL Server出错SQLSTATE[08001]:[ODBC Driver 17 for SQL Server]Connection string is not valid;max_provs:连接字符串无效[87]

使用Navicat连接SqlServer一直报错 经过排查,发现主机地址得使用,逗号来分隔端口号,如下图 在此记录避免忘记。 感谢网友 使用navicat连接SQL Server出错SQLSTATE[08001]:[ODBC Driver 17 for SQL Server]Connection s ......
Server 字符串 Connection SQL max_provs

vue2 - require is not defined

vue.config.js文件中 module.exports = defineConfig({ transpileDependencies: ['require'], ... 将transpileDependencies属性值改未false或者['require']时即可。 虽然不太清除具体原理但 ......
require defined vue2 vue not

ERROR: npm v10.2.1 is known not to run on Node.js v14.16.0. npm版本降级用法介绍

一、为什么需要npm版本降级 1、由于不同版本之间可能存在兼容性问题,需要将版本降为可以支持的版本。 2、某些应用程序可能只支持特定的npm版本,因此需要将npm版本降级到兼容的版本。 3、某些时候新版本的npm会导致应用程序不稳定或出现问题,因此需要将npm版本降级到稳定的版本。 为避免这些问题, ......
npm 版本 ERROR known Node

Grafana Error database is locked

目录🥚 问题描述🍆 问题现象🏰 尝试解决🌲 后续步骤 🥚 问题描述 公司内有多套Prometheus+Grafana环境,只有核心业务环境中出现了failed to build query 'A': [sqlstore.max-retries-reached] retry 1: datab ......
database Grafana locked Error is

Microsoft Visual C++ 14.0 is required.

问题:配置detectron2的时候报错,Microsoft Visual C++ 14.0 is required. 解决:按照上面的网址去下载 Microsoft C++ Bulid Tools这个工具,安装对应的包即可 ......
Microsoft required Visual 14.0 14