码迷,mamicode.com
首页 >  
搜索关键字:temp    ( 7776个结果
Tomcat的应用
1:tomcat是什么 tomcat是Apache的一个应用服务器。 2:tomcat的目录结构 bin:tomcat启动文件 conf:tomcat的配置文件 lib:tomcat要用到的jar logs:tomcat运行的日志文件 temp:tomcat的临时文件目录 webapps:存放tom ...
分类:其他好文   时间:2017-02-07 20:16:24    阅读次数:173
task9图片文件处理函数代码
string(8) "icon.png" ["type"]=> string(9) "image/png" ["tmp_name"]=> string(45) "/Applications/XAMPP/xamppfiles/temp/phpNqvAJe" ["error"]=> int(0) ["s... ...
分类:其他好文   时间:2017-02-06 22:12:04    阅读次数:150
Ajax请求中的async:false/true的作用[转]
test.html<a href="javascript:void(0)" onmouseover="testAsync()">asy.jsfunction testAsync(){ var temp; $.ajax({ async: false, type : "GET", url : 'tet. ...
分类:Web程序   时间:2017-02-05 11:10:16    阅读次数:172
Oracle基础 02 临时表空间 temp
--查看临时文件的使用/剩余空间 SQL> select * from v$temp_space_header; --查看SCOTT用户所属的临时表空间 SQL> select username ,temporary_tablespace from dba_users where username= ...
分类:数据库   时间:2017-02-04 14:56:57    阅读次数:198
php总结 --- 21. 面试题
1. session:储存用户访问的全局唯一变量,存储在服务器上的php指定的目录中的(session_dir)的位置进行的存放 cookie:用来存储连续訪問一个頁面时所使用,是存储在客户端,对于Cookie来说是存储在用户WIN的Temp目录中的。 两者都可通过时间来设置时间长短 2. UPLO... ...
分类:Web程序   时间:2017-02-04 10:45:53    阅读次数:217
ora-01652无法通过128(在temp表空间中)扩展temp段
有两种原因:一是临时表空间空间太小,二是不能自动扩展。 分析过程: 既然是temp表空间有问题,那当然就要从temp表空间说起啦。首先要说明的是temp表空间的作用,temp表空间主要是用作需要排序的操作。 1.临时表空间 是用于在进行排序操作(如大型查询,创建索引和联合查询期间存储临时数据)每个用 ...
分类:其他好文   时间:2017-02-03 14:47:22    阅读次数:237
欧几里得算法
#欧几里得算法 def myfun(x,y): if x % y == 0: return y else: temp = y y = x % y x = temp return myfun(x,y) num1 = int(input("请输入x:")) num2 = int(input("请输入y:... ...
分类:编程语言   时间:2017-02-01 18:59:49    阅读次数:171
在DBGrid增加一列CheckBox(而非DBCheckBox)
自:http://rabbitfox.blog.sohu.com/33264033.html http://community.csdn.net/Expert/topic/5342/5342920.xml?temp=.9525568 问:如何使dbgrid增加一列类似checkbox的控件,可以用鼠 ...
分类:数据库   时间:2017-02-01 10:44:05    阅读次数:301
转换进制程序
#转换进制程序 q=True while q: temp=input('您好,请输入一个整数:''(输入q退出程序)''\n') if temp!='q': num=int(temp) print('十进制到十六进制:%d>>0x%x' % (num,num)) print('十进制到八进制:%d> ...
分类:其他好文   时间:2017-01-31 16:52:00    阅读次数:252
判断给到的年份是否为闰年
#写一个程序,判断给到的年份是否为闰年 temp=input('请输入一个年份:') while temp.isdigit()==False: temp=input('该吃药了吧,重新输入:') year=int(temp) if ((year%4==0) and (year%100!=0)) or ...
分类:其他好文   时间:2017-01-31 14:23:28    阅读次数:112
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!