#唯识三十颂

【净界法师】【唯识三十颂05】《唯识三十颂》,什么是唯识呢?

唯识三十颂唯识三十颂亦称《唯识三十论颂》、《高建法幢论》,是印度佛教大乘瑜伽行派论书,也是中国佛教法相宗所本主要论书之一。世亲著,唐玄奘译,一卷。此外尚有梵、藏本传世。中文名唯识三十颂别称高建法幢论类别瑜伽行派宗教印度佛教唯识三十颂  【唯识三十颂(Vijñāpti-mātratā-siddhi-trim...

Spring Security(三十七):Part IV. Web Application Security

MostSpringSecurityuserswillbeusingtheframeworkinapplicationswhichmakeuserofHTTPandtheServletAPI.Inthispart,we’lltakealookathowSpringSecurityprovidesauthenticati...

Spring Security(三十六):12. Spring MVC Test Integration

SpringSecurityprovidescomprehensiveintegrationwith SpringMVCTestSpringSecurity提供与SpringMVCTest的全面集成InordertouseSpringSecuritywithSpringMVCTestitisnecessary...

Spring Security(三十五):Part III. Testing

ThissectiondescribesthetestingsupportprovidedbySpringSecurity.本节介绍SpringSecurity提供的测试支持。TousetheSpringSecuritytestsupport,youmustinclude spring-security-te...

Spring Security(三十四):10.4 Jackson Support

SpringSecurityhasaddedJacksonSupportforpersistingSpringSecurityrelatedclasses.ThiscanimprovetheperformanceofserializingSpringSecurityrelatedclasseswhenworkingwi...

Spring Security(三十三):10.3 Password Encoding

SpringSecurity’s PasswordEncoder interfaceisusedtosupporttheuseofpasswordswhichareencodedinsomewayinpersistentstorage.Youshouldneverstorepasswordsinpl...

Spring Security(三十二):10. Core Services

Nowthatwehaveahigh-leveloverviewoftheSpringSecurityarchitectureanditscoreclasses,let’stakeacloserlookatoneortwoofthecoreinterfacesandtheirimplementations,inpart...

Spring Security(三十一):9.6 Localization(本地化)

SpringSecuritysupportslocalizationofexceptionmessagesthatendusersarelikelytosee.IfyourapplicationisdesignedforEnglish-speakingusers,youdon’tneedtodoanythingasby...

Spring Security(三十):9.5 Access-Control (Authorization) in Spring Security

Themaininterfaceresponsibleformakingaccess-controldecisionsinSpringSecurityisthe AccessDecisionManager.Ithasa decide methodwhichtakesan Auth...

三十道DP练习(持续更新)(pw:DP)

前言:  话说DP这种纯考思维的题目,总是让我很伤脑筋,一些特别简单的DP我都常常做不出来,所以革命从现在(2018-05-01)开始,努力多刷点DP的练习~。 1.顺序对齐(align)时间:2018-05-01Description  考虑两个字符串右对齐的最佳解法。例如,有一个右对齐方案中字符串是AAD...

spring boot 常见三十四问

SpringBoot是微服务中最好的Java框架.我们建议你能够成为一名SpringBoot的专家。问题一 SpringBoot、SpringMVC和Spring有什么区别?SpringFrameSpringFramework最重要的特征是依赖注入。所有SpringModules不是依赖注入就是IOC控制反转...
代码星球 ·2020-12-09

Python机器学习(三十九)基于数值区间创建数组

NumPy中,可以通过指定数值范围创建ndarray数组。要使用指定区间均匀分布的数值创建数组,可以使用arange函数。语法如下所示:numpy.arange(start,stop,step,dtype)参数:start:区间开始值。默认值是0。stop:区间结束值(此值不包含在内)。step:区间步长。dtype:...

Python机器学习(三十八)NumPy 基于已有数据创建数组

NumPy提供了使用现有数据创建数组的方法。要使用列表或元组创建ndarray数组,可使用asarray函数。这个函数通常用于将python序列转换为numpy数组对象的场景中。语法如下所示:numpy.asarray(sequence,dtype=None,order=None)参数:sequence:要被转换成nd...

Python机器学习(三十七)NumPy 数组创建

要创建ndarray数组对象,除了使用底层的ndarray构造函数(ndarray.array()),还可以使用下面介绍的函数。empty函数创建未初始化数组,可以指定数组形状和数据类型。语法如下所示:numpy.empty(shape,dtype=float,order='C')参数:shape:指定数组的形状。dt...

Python机器学习(三十六)NumPy 数据类型

NumPy提供的数值类型,数值范围比Python提供的数值类型更大。NumPy的数值类型,如下表所示:SN数据类型描述1bool_布尔值,取值ture/false,占用一个字节2int_是integer的默认类型。与C语言中的long类型相同,有可能是64位或32位。3intc类似于C语言中的整数类型(int),表示3...
首页上一页12345...下一页尾页