码迷,mamicode.com
首页 >  
搜索关键字:MPLS TE CCIE SP    ( 114824个结果
顺序表
#include<stdlib.h> #include<stdio.h> #include<string.h> #define MAX 10005 typedef struct node { char a[16]; int len; }node; node te,t[MAX]; int n=0; v ...
分类:其他好文   时间:2021-06-21 20:33:31    阅读次数:0
微信公众测试号中的url和token配置
我设置的前提条件: 已购买阿里云服务器,开通了80端口,且网站已备案。 1、在网站文件中新建index.php文件。该文件内容如下: 把 define("TOKEN", "weixin"); 中的weixin,改成自定义字符串,比如 mytoken <?php /** * wechat php te ...
分类:微信   时间:2021-06-15 18:25:53    阅读次数:0
SQL Server常用处理
1 数据库不能分离(分离时,老提示占用) --查询数据库得连接Idselect spid from sysprocesses where dbid=db_id('test') kill 61 --这个是上边语句的查询结果 --分离数据库 use master go exec sp_detach_db ...
分类:数据库   时间:2021-06-13 09:30:56    阅读次数:0
“代理 XP”组件已作为此服务器安全配置的一部分被关闭
“代理 XP”组件已作为此服务器安全配置的一部分被关闭。系统管理员可以使用 sp_configure 来启用“代理 XP”。有关启用“代理 XP”的详细信息,请参阅 SQL Server 联机丛书中的“外围应用配置器”。 (Microsoft.SqlServer.Management.Mainten ...
分类:其他好文   时间:2021-06-09 10:39:27    阅读次数:0
JavaEE-Spring快速入门
2. spring快速入门 2.1 Spring程序开发步骤 ①导入 Spring 开发的基本包坐标 ②编写 Dao 接口和实现类 ③创建 Spring 核心配置文件 ④在 Spring 配置文件中配置 UserDaoImpl ⑤使用 Spring 的 API 获得 Bean 实例 2.2 导入Sp ...
分类:编程语言   时间:2021-06-08 23:16:00    阅读次数:0
module 'tensorflow.compat.v2' has no attribute '__internal__
from keras.utils import to_categorical module 'tensorflow.compat.v2' has no attribute '__internal__ from keras.utils import to_categorical $ python te ...
分类:其他好文   时间:2021-06-02 19:29:42    阅读次数:0
SqlServer创建多种存储过程
--指定库 use[SC_Flow] --判断存储过程是否存在 IF EXISTS(SELECT 1 FROM SYSOBJECTS T1 WHERE T1.NAME='Proc_BiddingReport') begin drop PROCEDURE Proc_BiddingReport end ...
分类:数据库   时间:2021-06-02 14:02:23    阅读次数:0
列表框
package cn.rushangw.lesson06;import javax.swing.*;import java.awt.*;import java.util.Vector;public class TestComboboxDemo02 extends JFrame { public Te ...
分类:其他好文   时间:2021-06-02 11:59:50    阅读次数:0
UA: Literally Vulnerable靶机
前言 略有点虎头蛇尾。主要有一步没想通。 web打点 nmap -sP 192.168.218.0/24 #发现主机IP 192.168.218.138 #端口扫描 nmap -sV -p- 192.168.218.138 所得结果如下 Nmap scan report for 192.168.21 ...
分类:其他好文   时间:2021-05-24 13:20:10    阅读次数:0
不用加号的加法
力扣中不用加号的加法:面试题17.01 问题:设计一个函数把两个数字相加。不得使用 + 或者其他算术运算符。 代码实现: class Solution { public int add(int a, int b) { while((a&b)!=0){//这两数的字节码相加是否会产生进位 int te ...
分类:其他好文   时间:2021-05-24 06:00:48    阅读次数:0
114824条   上一页 1 2 3 4 ... 11483 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!