manager

解决Android Studio 和 Android SDK Manager 无法在线更新的问题.

微笑、不失礼 提交于 2019-12-02 04:50:57
升级时提示 Connection failed. Please check your network connection and try again 修改安装目录下bin\studio.exe.vmoptions文件,如E:\Android\android-studio\bin\studio.exe.vmoptions 添加内容: -Djava.net.preferIPv4Stack=true -Didea.updates.url=http://dl.google.com/android/studio/patches/updates.xml -Didea.patches.url=http://dl.google.com/android/studio/patches/ 重新启动..就可以在线更新了. 解决Android SDK Manager列表错误,或者无法更新下载的问题: 添加内容: C:\Windows\System32\drivers\etc 74.125.237.1 dl-ssl.google.com 来源: oschina 链接: https://my.oschina.net/u/179574/blog/157374

Self Service Password 密码策略

落爺英雄遲暮 提交于 2019-11-30 21:17:22
1.在活动目录中新建一个用户,并赋予域管理员权限; 2.拷贝conf目录下的config.inc.php为config.inc.local.php; 3.按自己的实际情况及要求修改config.inc.local.php文件中的相关参数,说明如下: <?php #============================================================================== # LTB Self Service Password # # Copyright (C) 2009 Clement OUDOT # Copyright (C) 2009 LTB-project.org # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. # # This program is distributed in

JavaScript中for..in循环的陷阱

▼魔方 西西 提交于 2019-11-27 06:52:43
大家都知道在JavaScript中提供了两种方式迭代对象: (1)for 循环; (2)for..in循环; 使用for循环进行迭代数组对象,想必大家都已经司空见惯了。但是,使用for.. in循环时,大家可要注意了,为什么这么说呢?大家听我娓娓道来.... javascript提供了一种特殊的循环(也就是for .. in循环),用来迭代对象的属性或数组的每个元素,for...in循环中的循环计数器是字符串,而不是数字。它包含当前属性的名称或当前数组元素的索引。 案例一: //使用for..in循环遍历对象属性 varperson={ name: "Admin", age: 21, address:"shandong" }; for(vari in person){ console.log(i); } 执行结果为: name age address 当遍历一个对象的时候,变量 i 也就是循环计数器 为 对象的属性名 //使用for..in循环遍历数组 vararray = ["admin","manager","db"] for(vari in array){ console.log(i); } 执行结果: 0 1 2 当遍历一个数组的时候,变量 i 也就是循环计数器 为 当前数组元素的索引 案例二: 但是,现在看来for .. in循环还挺好用啊,不过,别高兴太早