ICode9

精准搜索请尝试: 精确搜索
  • ORA-01034:ORACLE not available;shared memory relm does not exist.2021-11-24 13:34:49

    本人导致上述问题的原因:ORACLE的那台虚拟机非正常关闭。 解决问题步骤: 1.先查看oracle的监听和Oracle的服务是否都已启动                             启动oracle监听命令:cmd窗口下,输入lsnrctl start,回车 2.操作系统身份方式验证    sqlplus /nolog    conn

  • [Vue warn]: You are using the runtime-only build of Vue where the template compiler is not available2021-11-19 21:04:37

    步骤: 1. 项目中安装vue: npm install vue -S  2. main.js中引入vue,创建vue实例: import Vue from 'vue' const vm = new Vue({ el: '#app', data: { msg: 'hello vue' } }); 3.  index.html中加入vue实例挂载的DOM节点: <div id="app"> {

  • ubuntu添加源报错The following signatures couldn't be verified because the public key is not availabl2021-11-17 14:36:00

    本身是一个非常简单的问题,这里简单做个记录,容器里面一般会有安装一些软件调试的需求,换个源之后会出现导入gpg的错误。 这里从改源开始 root@machine-learn:/etc/apt# echo "deb http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse" > sources.list ro

  • 服务器知识盲区整理2021-11-13 14:06:32

    服务器知识盲区整理 腾讯云设置密钥后无法通过ssh账号密码登录-PuTTY error: “No supported authentication methods available“ 腾讯云设置密钥后无法通过ssh账号密码登录-PuTTY error: “No supported authentication methods available“ 腾讯云设置密钥后无法通过

  • The following signatures couldn‘t be verified because the public key is not available: NO_PUBKEY2021-11-07 17:59:47

    现象: sudo apt update 时报如下错误   解决方法: sudo gpg --keyserver keyserver.ubuntu.com --recv 648ACFD622F3D138//(这个公钥根据提示来写的) sudo gpg --export --armor 648ACFD622F3D138| sudo apt-key add - sudo apt-get update

  • 线程同步的思路2021-11-06 13:31:18

    线程同步的思路 有时线程之间彼此不独立, 需要同步 1, 线程间的互斥 同时运行的几个线程需要共享 一个(些) 数据 共享的数据, 在某一时刻只允许一个线程对其进行操作 2, "生产者/消费者" 问题 假设有一个线程负责往 数据区 写数据, 另一个线程从 同一数据区中 读数据, 两个线程可

  • Syntax error, annotations are only available if source level is 1.5 or greater老项目报错2021-11-05 16:36:34

    因为项目是ssh 用的jdk版本是1.8以下 解决办法一 项目换低版本的jdk1.7 解决办法二 还是使用1.8,在项目中创建一个org.springframework.core包,在包下创建JdkVersion.java spring-core.jar下就有JdkVersion.java public static final int JAVA_18 = 5; if(javaVersion.index

  • DOMException [SecurityError]: localStorage is not available for opaque origins2021-11-01 18:02:55

    jsdom补充document的环境 const jsdom = require("jsdom"); const {JSDOM} = jsdom; const dom = new JSDOM(`<!DOCTYPE html><p>Hello world</p>`, { url: 'https://www.tiktok.com/' }); window = dom.window; window.localStorage =

  • RuntimeError: Attempting to deserialize object on a CUDA device but torch.cuda.is_available() is Fal2021-10-27 10:01:57

    If you are running on a CPU-only machine, please use torch.load with map_location=torch.device('cpu') to map your storages to the CPU. gpu训练后的模型在无gpu机器上面载入参数的时候 需要设置torch.load(map_loction=torch.device('cpu'))

  • 安装pytorch(GPU版)时遇到的关于torch.cuda.is_available()报false的问题2021-10-23 15:02:42

    PS:记录一下安装pytorch(GPU版)时遇到的关于torch.cuda.is_available()报false的问题 一)GPU版安装前: 1,检查电脑是否拥有nvidia显卡,没有N卡可以用CPU版本;本机以GTX1650为例。 2,检查nvidia显卡驱动版本号,打开cmd,输入命令 nvidia-smi 确保NVIDIA-SMI与Driver Version相同(一般应该都

  • feign Load balancer does not have available server for client2021-10-15 22:02:52

    记录一个问题, 搭建Spring cloud 使用 feign 发现一个困扰了我一个小时的问题: feign Load balancer does not have available server for client  对于这个错误,网上相关帖子怎么说的都有,我只是记录一下我怎么解决,各位大神不喜勿喷 首先这个错误 (如果前面步骤,自己检查没问题,那么

  • Java.io.BufferedInputStream.available()方法实例讲解2021-10-15 17:02:28

    java.io.BufferedInputStream.available() 方法返回从输入流中读取不受阻塞,输入流方法的下一次调用的剩余字节数。 声明 以下是java.io.BufferedInputStream.available()方法的声明 public int available() 返回值 此方法返回的字节数保持从此输入流中读取而不阻塞。 异常 IOEx

  • Solve Warning: The elevation provided <Paper elevation={24}> is not available in the theme.2021-10-14 23:02:13

      If you got the following warning:   The elevation provided <Paper elevation={24}> is not available in the theme. Please make sure that `theme.shadows[24]` is defined   In order to mitigate this, you can change your shadows to a dictionary instea

  • com.netflix.client.ClientException: Load balancer does not have available server for client2021-10-14 09:58:19

    一、报错信息 com.netflix.client.ClientException: Load balancer does not have available server for client:xxxx 提示某个服务没有开启负载均衡。 二、解决办法 我在网上查了很多办法,如何实现微服务的负载均衡,有的说在配置文件里开启feign,还有的说在配置文件里开启eur

  • Parameter ‘id‘ not found. Available parameters are [0, 1, param1, param2]2021-10-13 09:03:27

    问题描述 传参列表中有多参数的时候,xml无法正常解析定位到参数的位置。 解决方法 mapper层,方法变量前加@param注解 int existSongId(@Param("userId") Integer userId, @Param("songId") Integer songId); xml层修改为,问题解决。 SELECT count(*) FROM t_user_luck_d

  • odoo 报表打印多条记录换页与不换页设置2021-10-12 19:01:51

    主要看web.basic_layout是在foreach 之前还是之后 basic_layout 在foreach 之前,没有换页 <template id="product_item_label"> <t t-call="web.html_container"> <t t-call="web.basic_layout"> <t t-f

  • MyBatis-Plus报错Parameter ‘xxx‘ not found. Available parameters are [user, param1]解决办法2021-10-10 23:00:08

    使用MyBatis-Plus写一个更新数据的方法报错 userMapper.java @Mapper public interface UserMapper extends BaseMapper<User> { int updateUserByUserId(@Param("user") User user); } userMapper.xml <update id="updateUserByUserId" parameterType="

  • Server check fail, please check server 192.168.11.13 ,port 9848 is available , error ={}2021-10-09 18:02:01

    nacos在192.168.11.13服务器启动着,访问正常 本地服务器在192.168.11.11启动,启动日志报错 Server check fail, please check server 192.168.11.13 ,port 9848 is available , error ={} 2021-10-09 17:33:16.178 ERROR 21512 --- [ main] c.a.n.c.remote.client.gr

  • UK Day11 - brew安装MongoDB报错“Error: No available formula with the name “mongodb””2021-10-08 06:00:06

    原因 报错意思是:homebrew中没有MongoDB这个东西。 利用 brew search mongodb 发现没有相关版本,因为MongoDB不开源了,在brew核心仓库里被删除了。 解决办法 只需执行两条命令: 用tap关联第三方仓库:brew tap mongodb/brew。 安装MongoDB社区版:brew install mongodb-community 或者

  • 报错no bean named xxxxx available2021-10-06 15:31:07

    确定在实现类上使用了注解,@Repository,并且开启了扫描包,且类旁边出现了叶子,点击叶子,会跳到配置类,即应该是注入成功了,但是测试的时候一直报错   no bean named  xxxxx available   解决方法: 1.  @Repository("ReaderInfoMapperImpl") 指定名字 2. 不使用注解,使用<bean>来注入

  • Linux创建分区时报错:no free sectors available解决办法2021-10-06 13:33:38

    在用Linux创建分区的时候,结果报错: no free sectors available 中文翻译 没有可用的免费分区 原因: no free sectors available:白话文翻译过来大概是:你的磁盘空间不足了,没有多余的空间给你去分配;有时候用各种翻译工具不一定准确;白话文大家都能听得懂; Liunx 分区也是需要空间

  • EBS: Record History is not available here2021-09-30 19:01:54

    EBS 系统 查看当前记录的创建人、创建日期、修改人、修改日期 等四信息。 通过 HELP ->Record History .      如果 提示 “Record History is not available here "   可能原因: CREATION_DATE、CREATED_BY、LAST_UPDATE_DATE、 LAST_UPDATED_BY 这四个字段 中缺少任意一字

  • ssm问题记录:NoSuchBeanDefinitionException: No qualifying bean of type ‘xxxl‘ available2021-09-29 18:29:54

    org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name ‘userController’: Unsatisfied dependency expressed through field ‘userService’; nested exception is org.springframework.beans.factory.NoSuchBeanDefinition

  • Pycharm 中available packages刷新不出来package2021-09-24 17:02:55

    问题描述 我按照网上 在available packages中添加了 http://pypi.douban.com/simple/ http://mirrors.aliyun.com/pypi/simple/https://repo.continuum.io/pkgs/free/ https://repo.continuum.io/pkgs/free/ https://repo.continuum.io/pkgs/main/ 报错 python error loading

  • ios15UITableView分组高度异常2021-09-24 16:57:52

    ios15UITableView分组高度异常 if (@available(iOS 15.0, *)) { _tableView.sectionHeaderTopPadding = 0; } 全局设置 if (@available(iOS 15.0, *)) { [UITableView appearance].sectionHeaderTopPadding = 0; }

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有