网站首页 站内搜索

搜索结果

查询Tags标签: use,共有 334条记录
  • mongo 创建库和用户

    mongo 默认超级管理员数据库为 admin,创建默认超级管理员须记住超管用户和密码,如忘记超管密码可自行搜索解决方案。 以下为创建数据库和用户方法: 1、登录 mongo 命令:mongo 127.0.0.1:27017 2、切换到 admin 数据库:use admin3、使用超管授权登录:db.auth("r…

    2022/9/10 6:23:16 人评论 次浏览
  • Cannot use non-english characters correctly in your source code, which triggers elusive bugs when ca

    This problem can cause the following elusive bugs by AUTOMATIC ENCODING CONVERSION without any warnings or errors:Cannot read or write strings of the type WCHAR , LPCWSTR... correctly; can not declare any non-English wchar_t with the format of L"…

    2022/9/8 5:23:12 人评论 次浏览
  • how to use vanilla js iterate the Symbol Object All In One

    how to use vanilla js iterate the Symbol Object All In One bug ❌Uncaught TypeError: UIComponents is not iterableimport * as UIComponents from ./indexconsole.log(`UIComponents =`, UIComponents); // UIComponents = Module {Symbol(Symbol.toStringTag): Mo…

    2022/9/2 6:22:54 人评论 次浏览
  • 9. SQL--use:选择数据库

    1. 前言 如果您的系统中有多个数据库,那么在开始操作之前,您需要先选择一个数据库。 sql use 语句用来选择一个已经存在的数据库。 2. 语法 use 语句的基本语法如下:use databasename;databasename 表示要选择的数据库名称,它必须是存在的。 3. 示例 首先使用 show da…

    2022/8/31 2:22:57 人评论 次浏览
  • [Javascript] Module Pattern

    Module pattern provide a way to have both public and private pieces with the export keyword. This protects values from leaking into the global scope or ending up in a naming collision.secretis a private variable inside Math.js which is not accessible …

    2022/8/27 1:23:21 人评论 次浏览
  • python中常见的几个函数

    function uselen() 用来求元组利润表或者字符串等的长度str() 将数据转化成字符串类型

    2022/8/26 1:22:56 人评论 次浏览
  • vue集成elementUI

    vue集成elementUI 1.使用npm 安装element ui 模块: 指令:npm/cnpm install element-ui –S2.安装按需引入的插件: 指令:npm install babel-plugin-component -D3.设置.babelrc文件 {"presets": [["env", {"modules": false,"targe…

    2022/8/25 23:26:02 人评论 次浏览
  • [UAC]C++判断某进程是否有管理员权限

    本文只发布于:https://www.cnblogs.com/Icys/p/IsAdminProcess.html BOOL IsAdminProcess(UINT PID) {if (PID <= 0)PID = GetCurrentProcessId();HANDLE hProcess = OpenProcess(PROCESS_QUERY_INFORMATION, FALSE, PID);if (hProcess == NULL) {//要么没这个进程,要…

    2022/8/14 5:23:42 人评论 次浏览
  • Please remove unnecessary stubbings or use 'lenient' strictness. More info: javadoc for Un

    问题是来自使用Mockito进行单元测试出现的问题 一个方法被调用了,再次调用就会显示是不必要了 如果只是想要单纯的隐藏这个问题,可以使用如下方案@RunWith(MockitoJUnitRunner.slient.class)问题的描述还可以说的更多点,就是当mock检查到有不必须的存根时(只定义而没有…

    2022/8/13 1:25:25 人评论 次浏览
  • 立即GUI-----SLINT

    SLINT Mission Slint is a toolkit to efficiently develop fluid graphical user interfaces for any display: embedded devices and desktop applications. We support multiple programming languages, such as Rust, C++, and JavaScript. OUR DESIGN GOALS ARE:Stra…

    2022/8/6 23:25:04 人评论 次浏览
  • Python操作对象存储(AWS S3 use boto3)

    提取/封装boto3 S3方法便于使用 使用AWS S3 时,参数AWS_ENDPOINT置空即可, 使用腾讯云cos,阿里云oss或者私有对象存储minio时, 指定AWS_ENDPOINT为服务url class S3(object):"""tenant_id: 租户id作为第一层文件夹bucket: IC3文件默认存储在DEFAULT_BU…

    2022/8/2 1:22:51 人评论 次浏览
  • 性能测试工具gperftools使用-内存占用分析

    参考资料 性能测试工具gperftools使用-cpu分析 https://www.cnblogs.com/gnivor/p/11719958.html gperftools使用 https://zhuanlan.zhihu.com/p/352260464 google heap profiler内存管理工具小试 https://blog.csdn.net/cica0cica/article/details/76919381 安装相关依赖…

    2022/7/30 5:22:57 人评论 次浏览
  • [TypeScript] Interface

    An interface is a way of defining an object type. An “object type” can be thought of as, “an instance of a class could conceivably look like this”. For example, string | number is not an object type, because it makes use of the union type operator…

    2022/7/27 23:23:17 人评论 次浏览
  • libnfc库

    *- * Free/Libre Near Field Communication (NFC) library * * Libnfc historical contributors: * Copyright (C) 2009 Roel Verdult * Copyright (C) 2009-2015 Romuald Conty * Copyright (C) 2010-2012 Romain Tartire * Copyright (C) 2010-2013 Philippe Teuwe…

    2022/7/23 6:23:00 人评论 次浏览
  • vue项目部署后页面加载首次很慢的优化方案

    参考: vue项目首次加载特别慢需要怎么配置? 1.看看你的依赖包是不是全局引入的,改为组件内按需引入,可大大降低加载时长。或者将组件引入方式改为cdn引入。需要注意的是,两种引入方式不能共存。 2.看network,点击ALL,看看哪些文件加载时间长,针对性的优化,静态文…

    2022/7/10 6:20:05 人评论 次浏览
共334记录«上一页1234...23下一页»
扫一扫关注最新编程教程