码迷,mamicode.com
首页 >  
搜索关键字:public key    ( 118710个结果
时间同步服务 chromy
1. chrony 服务器端配置 假设chrony服务器端192.168.1.1 $ cat /etc/chrony.conf # Use public servers from the pool.ntp.org project. server ntp1.aliyun.com iburst serv ...
分类:其他好文   时间:2021-06-02 16:47:45    阅读次数:0
标识符
public class HelloWorld { public static void main(String[] args) { //大小写十分敏感 String Man="qinjiang"; String man="qinjiang"; String Ahello="qinjiang"; S ...
分类:其他好文   时间:2021-06-02 16:40:41    阅读次数:0
Python-图像
读取图片 并输出图片 import numpy as np import cv2 #读入一张灰度图片 img=cv2.imread('lena.png',0) #显示图片 cv2.imshow('image',img) cv2.waitKey(0) cv2.destroyAllWindows() c ...
分类:编程语言   时间:2021-06-02 16:37:38    阅读次数:0
Overthewire-natas24
Overthewire level 24 to level 25 这一关与上一关很像,同样是提交一个密码登录,让我们看看源代码 <?php if(array_key_exists("passwd",$_REQUEST)){ if(!strcmp($_REQUEST["passwd"],"<censo ...
分类:其他好文   时间:2021-06-02 16:31:06    阅读次数:0
leetcode 两个单链表两数相加
题目 package whale.leetcode.simple; /** * @Author: WhaleFall541 * @Date: 2021/5/29 20:30 */ public class AddTwoSumLinkedList { public static class ListN ...
分类:其他好文   时间:2021-06-02 16:21:23    阅读次数:0
podman - 下一代 Linux 容器工具
yum -y install podman 参考地址 https://yeasy.gitbook.io/docker_practice/podman ...
分类:系统相关   时间:2021-06-02 15:51:44    阅读次数:0
springboot整合hive-jdbc遇到的坑
问题描述:springboot整合hive-jdbc时,pom文件加入hive-client依赖,eclipse启动,项目正常启动,访问正常。打成jar包放到服务器启动正常,访问报错如下: org.apache.jasper.JasperException: /views/public.jsp(3, ...
分类:数据库   时间:2021-06-02 15:44:58    阅读次数:0
leetcode1872 石子游戏VIII
思路: 动态规划+转移方程效率优化。 实现: 1 class Solution 2 { 3 public: 4 int stoneGameVIII(vector<int>& stones) 5 { 6 int n = stones.size(), sum = 0; 7 for (int i = 0; ...
分类:其他好文   时间:2021-06-02 15:41:54    阅读次数:0
模拟微信朋友圈时间显示规则
/* * 24小时内显示几小时前 * 7天内显示几天前 * 超过7天显示月日 * */public function getTimeResult($time=1622256157){ //当前的时间戳 $ctime = time(); //当前时间戳-传入的时间戳=时间差 $difference = ...
分类:微信   时间:2021-06-02 15:29:24    阅读次数:0
IP、端口、TCP、UDP、文件上传
1.ip public class TestInetAddress { public static void main(String[] args) { try { //查询本机IP,可以new InetAddress byName = InetAddress.getByName("localhos ...
分类:Web程序   时间:2021-06-02 15:28:12    阅读次数:0
118710条   上一页 1 ... 46 47 48 49 50 ... 11871 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!