码迷,mamicode.com
首页 >  
搜索关键字:configurable    ( 153个结果
Object.create()详解
/** * Object.create()方法可以传两个参数,第一个是原型对象,第二个是自身属性(是一个可描述的对象) value configurable writable emumerable * * */ let obj=Object.create({a:1},{ b:{ value:1 }, ...
分类:其他好文   时间:2020-12-17 12:10:45    阅读次数:2
Mysql---MySQL Server Administration
1、The Mysql Server mysqld is the MySQL server. 1.1、Configuring the Server a,查看Mysql Server options and configurable system variables mysqld --verbose ...
分类:数据库   时间:2020-10-06 20:47:04    阅读次数:36
基于openresty的URL 断路器/熔断器 -- URL-fuse
Intro a configurable URL curcuit breaker for nginx/openresty 这是一个可灵活配置的URL断路器(熔断器), 基于 nginx openresty. Why 我们不希望整体服务被个别接口的慢请求拖死. 因为慢请求会不断堆积, 使服务出现超时4 ...
分类:Web程序   时间:2020-09-08 20:41:19    阅读次数:54
CEVA引入新的可配置传感器集线器DSP架构
CEVA引入新的可配置传感器集线器DSP架构 CEVA introduces new configurable sensor hub DSP architecture 在一个将多个传感器设计成几乎所有东西的世界中,所有数据输入的处理,或传感器融合,正在成为系统中越来越重要的一部分。为了解决这个问题, ...
分类:其他好文   时间:2020-07-06 10:33:26    阅读次数:71
bean运行时值注入
1、Environment @Configurable @PropertySource("classpath:/userinfo.properties") //这个属性文件会加载到Spring的Environment中 public class UserInfoConfig { @Autowired ...
分类:其他好文   时间:2020-06-09 16:29:18    阅读次数:50
springboot允许跨域访问
前后端开发学习中,vue里面需要跨域访问后台数据 可在springboot后台里面添加个配置类即可: package com.springboottest.config; import org.springframework.beans.factory.annotation.Configurable ...
分类:编程语言   时间:2020-04-12 14:56:49    阅读次数:91
spring源码系列——spring循环引用
众所周知spring在默认单例的情况下是支持循环引用的 Appconfig.java类的代码 @Configurable@ComponentScan("com.shadow")public class Appconfig {}1234X.java类的代码 package com.shadow.ser ...
分类:编程语言   时间:2020-03-08 15:54:16    阅读次数:73
装饰器
装饰器(Decorator)是一种与类(class)相关的语法,用来注释或修改类和类方法。许多面向对象的语言都有这项功能,装饰器是一种函数,写成@ + 函数名。它可以放在类和类方法的定义前面。 @frozen class Foo { @configurable(false) @enumerable( ...
分类:其他好文   时间:2020-03-04 00:01:29    阅读次数:88
属性描述符
设置属性描述符 Object.defineProperty var myObj= {} Object.defineProperty(myObj, 'a', { configurable: true, // 可配置 enumerable: true, // 可遍历 writable: true, // ...
分类:其他好文   时间:2020-02-01 23:14:18    阅读次数:102
vue mvvm原理与简单实现 -- 上篇
Object.defineProperty介绍-- let obj = {}; Object.defineProperty(obj,'school',{ configurable : true, // 属性能否被删除 //writable : true, // 属性能否被修改 enumerable ...
分类:其他好文   时间:2020-01-27 15:44:04    阅读次数:69
153条   1 2 3 4 ... 16 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!