网站首页 站内搜索

搜索结果

查询Tags标签: info,共有 937条记录
  • Java:泛型

    泛型 使用泛型 List<String> strList = new ArrayList<>(); 这个List集合只能保存字符串对象,不能保存其他类型的对象。 菱形语法 Java7开始,Java允许在构造器后不需要带完整的泛型类型。只要<>即可。 List<String> strList = new ArrayList<…

    2021/11/7 1:10:02 人评论 次浏览
  • minioClient

    // 上传文件需要的配置 const Minio = require(minio); const stream = require(stream); // 你的minio配置信息 const minioClient = new Minio.Client({endPoint: hh-cdn.honghusaas.com,// port: 9000,useSSL: true,accessKey: AKDD00000000000V2WKKZ5VIJLIVGA ,secret…

    2021/11/6 6:11:59 人评论 次浏览
  • minioClient

    // 上传文件需要的配置 const Minio = require(minio); const stream = require(stream); // 你的minio配置信息 const minioClient = new Minio.Client({endPoint: hh-cdn.honghusaas.com,// port: 9000,useSSL: true,accessKey: AKDD00000000000V2WKKZ5VIJLIVGA ,secret…

    2021/11/6 6:11:59 人评论 次浏览
  • hive导致表锁的SQL和租户信息获取

    hive导致表锁的SQL和租户信息获取多租户平台存在同一个表有多个租户具有访问权限,hive提供锁机制,保障数据的安全。由此会引发由于某个租户占用锁时间较长,其他租户作业滞后,如果将导致表锁的SQL和租户信息截取到,可以提供给局方进行业务流程的优化,加快作业执行效率…

    2021/11/6 2:12:09 人评论 次浏览
  • hive导致表锁的SQL和租户信息获取

    hive导致表锁的SQL和租户信息获取多租户平台存在同一个表有多个租户具有访问权限,hive提供锁机制,保障数据的安全。由此会引发由于某个租户占用锁时间较长,其他租户作业滞后,如果将导致表锁的SQL和租户信息截取到,可以提供给局方进行业务流程的优化,加快作业执行效率…

    2021/11/6 2:12:09 人评论 次浏览
  • Docker安装PostgreSQL

    Docker安装PostgreSQL一、安装: docker pull postgres:9.6 二、启动: docker run --name postgres -e POSTGRES_PASSWORD=123456 -p 5432:5432 -d postgres:9.6 解释: run,创建并运行一个容器; --name,指定创建的容器的名字; -e POSTGRES_PASSWORD=password,设置环…

    2021/11/5 19:13:28 人评论 次浏览
  • Docker安装PostgreSQL

    Docker安装PostgreSQL一、安装: docker pull postgres:9.6 二、启动: docker run --name postgres -e POSTGRES_PASSWORD=123456 -p 5432:5432 -d postgres:9.6 解释: run,创建并运行一个容器; --name,指定创建的容器的名字; -e POSTGRES_PASSWORD=password,设置环…

    2021/11/5 19:13:28 人评论 次浏览
  • 实验二 数组、指针与C++标准库

    实验任务五: info.hpp#include<string> #include <iostream> using namespace std;class Info{public:Info(string name="xxx",string contact="xxx",string city="xxx",int n=1):nickname(name),contact(contact),city(city)…

    2021/11/5 14:10:41 人评论 次浏览
  • 实验二 数组、指针与C++标准库

    实验任务五: info.hpp#include<string> #include <iostream> using namespace std;class Info{public:Info(string name="xxx",string contact="xxx",string city="xxx",int n=1):nickname(name),contact(contact),city(city)…

    2021/11/5 14:10:41 人评论 次浏览
  • 代码质量管理工具-SonarQube

    代码质量管理工具-SonarQube 一、前期准备 1.1 JDK 11.0安装可参考JDK 1.8的安装教程:https://blog.csdn.net/weixin_41668084/article/details/1111476671.2 PostgreSQL安装参考链接:https://blog.csdn.net/weixin_41668084/article/details/113865237 注意:SonarQube…

    2021/11/4 6:12:01 人评论 次浏览
  • 代码质量管理工具-SonarQube

    代码质量管理工具-SonarQube 一、前期准备 1.1 JDK 11.0安装可参考JDK 1.8的安装教程:https://blog.csdn.net/weixin_41668084/article/details/1111476671.2 PostgreSQL安装参考链接:https://blog.csdn.net/weixin_41668084/article/details/113865237 注意:SonarQube…

    2021/11/4 6:12:01 人评论 次浏览
  • 实验2 数组、指针与C++标准库

    T1: info.hpp1 #include<iostream>2 #include<string>3 #include<iomanip>4 using namespace std;5 class info {6 public:7 info(string nm, string tel, string ct, int n) :nickname(nm), contact(tel), city(ct), n(n) {}8 void print() c…

    2021/11/3 17:42:36 人评论 次浏览
  • 实验2 数组、指针与C++标准库

    T1: info.hpp1 #include<iostream>2 #include<string>3 #include<iomanip>4 using namespace std;5 class info {6 public:7 info(string nm, string tel, string ct, int n) :nickname(nm), contact(tel), city(ct), n(n) {}8 void print() c…

    2021/11/3 17:42:36 人评论 次浏览
  • 实验二 数组、指针与c++标准库

    任务五源码:#ifndef INFO_HPP #define INFO_HPP #include<iostream> #include<iomanip> #include <string> using namespace std; class Info { public:Info(string n, string co, string c, string nn);void print();static int s;string nickname, c…

    2021/11/3 14:09:51 人评论 次浏览
  • 实验二 数组、指针与c++标准库

    任务五源码:#ifndef INFO_HPP #define INFO_HPP #include<iostream> #include<iomanip> #include <string> using namespace std; class Info { public:Info(string n, string co, string c, string nn);void print();static int s;string nickname, c…

    2021/11/3 14:09:51 人评论 次浏览
扫一扫关注最新编程教程