码迷,mamicode.com
首页 >  
搜索关键字:alias    ( 2308个结果
android 图片缩放抗锯齿
之前用的时候只设置了antialias属性,其实要设置两个flag才行1 paint.setFlags(Paint.ANTI_ALIAS_FLAG|Paint.FILTER_BITMAP_FLAG);2 //或者3 canvas.setDrawFilter(new PaintFlagsD...
分类:移动开发   时间:2014-07-07 17:29:48    阅读次数:346
「笔记」「ubuntu」mint个人shell样式脚本
alias ll='ls -al'use_color=false# Set colorful PS1 only on colorful terminals.# dircolors --print-database uses its own built-in database# instead of ...
分类:其他好文   时间:2014-07-07 13:41:54    阅读次数:245
apache2.2 虚拟主机配置
一、改动httpd.conf打开appserv的安装文件夹,找到httpd.conf文件,分别去掉以下两行文字前面的#号。#LoadModule vhost_alias_module modules/mod_vhost_alias.so去掉#意思是启用apache的虚拟主机功能。#Include c...
分类:其他好文   时间:2014-07-03 20:20:42    阅读次数:186
Tomcat部署记事
1.导入证书到jdk里keytool -import -alias 证书名称 -file 证书地址 -keystore 导入位置例:keytool -import -alias co3 -file C:\Users\Administrator\Desktop\1\co3_sso.cer -keyst...
分类:其他好文   时间:2014-07-03 11:32:15    阅读次数:190
apache2.2 虚拟主机配置
一、改动httpd.conf打开appserv的安装文件夹,找到httpd.conf文件,分别去掉以下两行文字前面的#号。#LoadModule vhost_alias_module modules/mod_vhost_alias.so去掉#意思是启用apache的虚拟主机功能。#Include c...
分类:其他好文   时间:2014-07-02 22:24:59    阅读次数:221
android获取文字宽度
Paint mTextPaint = new Paint(Paint.ANTI_ALIAS_FLAG);mTextPaint.setColor(Color.WHITE);// Define the string.String displayText = “Hello World!”;// Measu...
分类:移动开发   时间:2014-07-01 19:41:52    阅读次数:235
An A-Z Index of the Apple OS X command line
来源:http://ss64.com/osx/An A-Z Index of theApple OS Xcommand line alias Create an alias ? alloc List used and free memory apropos Search t...
分类:移动开发   时间:2014-07-01 17:46:48    阅读次数:384
bash配置文件中alias错误会引起shell异常
1. 先介绍下alias(别名)的用法     alias la='ls -a'  alias b='cd ..' 等等     alias 是个好东西,可以在用shell省很多时间 2. 但有一天我发现执行shell脚本的时候,if 语句不能用了,会报一下错误:     bash: build/envsetup.sh: line 30: syntax error near une...
分类:其他好文   时间:2014-07-01 07:26:00    阅读次数:214
Linux命令之type
一般情况下,type命令被用于判断另外一个命令是否是内置命令,但是它实际上有更多的用法。 1.判断一个名字当前是否是alias、keyword、function、builtin、file或者什么都不是: type ls的输出是ls 是 `ls --color=auto' 的别名 ...
分类:系统相关   时间:2014-06-26 18:04:33    阅读次数:261
extjs form isvalid的bug
版本:ext4.2.1问题:在Form中嵌套girdEditor,只要编辑过grid,那么Form的isDirty()永远是ture。Form代码:Ext.define("Soims.view.application.SampleInfoForm",{ extend:‘Ext.form.Panel‘, alias:‘widget.sampleinfoform‘, title:‘样品信息‘, initComponent:function(){ thi..
分类:Web程序   时间:2014-06-24 16:17:07    阅读次数:288
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!