码迷,mamicode.com
首页 >  
搜索关键字:cas sso    ( 9781个结果
jQuery设置input的disable属性,prop和attr的区别
<form:radiobuttons path="isInsuredCasualty" class="input-xxlarge" items="${fns:getDictList('yes_no')}" itemLabel="label" itemValue="value" htmlEscape= ...
分类:Web程序   时间:2021-03-18 14:02:48    阅读次数:0
C#的格式化输出字符串
using System; //导入命名空间 using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Lesson_one //这里 ...
分类:Windows程序   时间:2021-03-12 14:18:50    阅读次数:0
数据库学习
1. 基本的经典查询 #基本的查询语句 SELECT * FROM data.`dataanalyst` WHERE city ='上海' AND (education = '本科' OR workYear = '1-3年' ) AND secondType LIKE '%开发%' #字段包含开发 ...
分类:数据库   时间:2021-03-10 13:35:36    阅读次数:0
【jdk1.8源码分析】总章
一、总章 1.1 前言 本文主要参考这篇文章 另外增加了自己觉得重要的部分 1.2 集合框架概览图 1.3 基础接口源码解析 1.3.1 Iterator public interface Iterator<E> { boolean hasNext(); E next(); default void ...
分类:其他好文   时间:2021-03-08 13:04:17    阅读次数:0
1037 Magic Coupon (25 分)
The magic shop in Mars is offering some magic coupons. Each coupon has an integer N printed on it, meaning that when you use this coupon with a produc ...
分类:其他好文   时间:2021-03-06 14:44:48    阅读次数:0
webpack(系列一)
### webpack 介绍 * 什么是webpack<https://www.webpackjs.com/> * Webpack是一个模块打包器(bundler)。 * 在Webpack看来, 前端的所有资源文件(js/json/css/img/less/...)都会作为模块处理 * 它将根据模块 ...
分类:Web程序   时间:2021-03-06 14:42:18    阅读次数:0
sqlServer 重复数据项处理,只选其中一条,保留一条
select * from table where id in (select max(id) from table group by [去除重复的字段名列表,....]) --删除 from table where id not in (select max(id) from table grou ...
分类:数据库   时间:2021-03-06 14:17:01    阅读次数:0
前端之CSS层叠样式表
CSS介绍 Cascading Style Sheet 层叠样式表,是专门用来为HTML标签添加样式的。 把HTML认为是网页的骨架 那么CSS就是用于对HTML骨架进行修饰,比如加背景色、显示方式、位置等等属性 CSS语法 一个完整的CSS样式需要具备两大部分: # 1、选择器 # 2、声明 声明 ...
分类:Web程序   时间:2021-03-05 13:13:23    阅读次数:0
tc filter
[root@localhost dpdk-19.11]# tc qdisc show dev enp125s0f0 qdisc pfifo_fast 0: root refcnt 2 bands 3 priomap 1 2 2 2 1 2 0 0 1 1 1 1 1 1 1 1 [root@loca ...
分类:其他好文   时间:2021-03-05 13:09:54    阅读次数:0
块,扇区,段,页的概念
块(Block): 块是上层软件中(操作文件时)使用的最小的操作单元。 就是(操作文件时)一个块一个块进行操作(块的大小格式化时可以设置【如linux、fatfs等等】)。 块(block),概念来自于文件系统,是内核对文件系统数据处理的基本单位,大小为若干个扇区,常见有512B、1KB、4KB等 ...
分类:其他好文   时间:2021-03-04 13:23:53    阅读次数:0
9781条   上一页 1 ... 8 9 10 11 12 ... 979 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!