资金允许,请支持正版 IntelliJ全家桶系列 idea激活码、PyCharm激活码、PhpStorm激活码、WebStorm激活码、RubyMide激活码、AppCode激活码、CLion激活码、GoLand激活码、DataGrip激活码、Rider激活码、Android Studio激活码 请 ...
分类:
Web程序 时间:
2020-07-04 15:02:58
阅读次数:
76
ingress 是如何访问到pod的呢? 1,ingress由ingress 控制器 和 规则组成。 2,ingress rule 负责找到对应的service,实现访问到pod。 我们知道service的表现形式为IP:PORT,即工作在第四层传输层(TCP/IP层),那么对于不同的URL地址经常 ...
分类:
其他好文 时间:
2020-07-04 13:43:29
阅读次数:
54
一、基本操作 1、开启防火墙 service firewalld start 2、关闭防火墙 service firewalld stop 3、重启防火墙 service firewalld restart 二、查看: 1、查看防火墙状态 systemctl status firewalld 2、查 ...
分类:
其他好文 时间:
2020-07-04 13:40:47
阅读次数:
55
匿名内部类 示例代码 接口: public interface Usb { void service(); } 实现类: public class Mouse implements Usb { @Override public void service() { System.out.println( ...
分类:
其他好文 时间:
2020-07-04 13:38:41
阅读次数:
56
前言 在Android开发,代码里获取View一般是使用findViewById()获取目标布局文件里的指定View。但是这样使用会有大量代码重复工作并且有空指针危险。为了减少重复工作有很多大神都八仙过海各显神通,但是这些神通多多少少都有缺点。 大名鼎鼎的黄油刀bufferknife,缺点增加了编译 ...
分类:
移动开发 时间:
2020-07-04 13:31:52
阅读次数:
153
升级了 AdroidStudio到3.6.3,总是报找不到 gradle3.6.3 修改工程的 build.gradle,加入 google() 再同步就可以了 ext { var = '3.6.3' }// Top-level build file where you can add config ...
分类:
移动开发 时间:
2020-07-04 12:01:04
阅读次数:
132
启动service docker service create --name web --publish 8090:5000 --network web xiaopeng163/python-flask-demo:1.0 scale等于2 docker service scale web=2 更新i ...
分类:
其他好文 时间:
2020-07-04 10:29:14
阅读次数:
144
首先来看看Linux平台下如何使用gcc编译出当下平台的可执行程序。 我们先来准备一个main.c文件 #include<stdio.h> int main(){ printf("Hello Gcc!"); return 0; } 上面是一个c语言写的很简单的一段代码,目的是要输出“Hello Gc ...
分类:
移动开发 时间:
2020-07-04 01:45:25
阅读次数:
114
A函数: axios的拦截器封装 1 import axios from 'axios' 2 import {Message} from 'element-ui' 3 import store from '@/store' 4 5 // 创建axios实例 6 const service = axi ...
分类:
其他好文 时间:
2020-07-04 01:12:37
阅读次数:
82