码迷,mamicode.com
首页 >  
搜索关键字:write hole    ( 14799个结果
ZedBoard 引脚约束参考
从ISE转换到Vivado时,UCF转XDC的几种方法: (1)软件自动转换 参考网址:Youtube 用ISE->EDK->PlanAhead打开所需转换的工程文件*.xise,并打开bd 在Tcl Console 栏中 write_xdc -file YourFileFullPath/test....
分类:数据库   时间:2014-06-02 13:42:59    阅读次数:1937
Ubuntu14.04 Objective-C hello world
1. Install GNUstepsudo apt-get install gnustep gnustep-devel2. Write hello world program, and save as hello.m#import int main (int argc, const char * ...
分类:其他好文   时间:2014-06-02 12:49:08    阅读次数:185
LeetCode: Same Tree [100]
【题目】 Given two binary trees, write a function to check if they are equal or not. Two binary trees are considered equal if they are structurally identical and the nodes have the same value. 【题意】 判断了两个二叉树是否相等 【思路】 递归...
分类:其他好文   时间:2014-06-02 11:03:03    阅读次数:205
【leetcode】 Sudoku Solver
问题: Write a program to solve a Sudoku puzzle by filling the empty cells. Empty cells are indicated by the character '.'. You may assume that there will be only one unique solution. ...
分类:其他好文   时间:2014-06-02 05:25:23    阅读次数:295
ORA-09817: Write to audit file failed   Linux-x86_64 Error: 28: No space left on device
连接数据库报错 [oracle@tips~]$sqlplus/assysdba SQL*Plus:Release11.2.0.3.0ProductiononFriJun2918:44:032012 Copyright(c)1982,2011,Oracle.Allrightsreserved. ERROR: ORA-09817:Writetoauditfilefailed. Linux-x86_64Error:28:Nospaceleftondevice Additionalinforma..
分类:系统相关   时间:2014-06-02 04:12:14    阅读次数:915
powershell_读取ORA错误脚本
#过滤oracle警告日志文件ORA-错误 $c=Get-ContentC:\script.txt|select-string-pattern"ora-" #判断ORA-错误存在条件 #若$c返回值为null,则输出1返回值结束循环 if($c-eq$null) { write-host"STATE_OK" $STATE_OK={return1;} $b=&$STATE_OK $b } #若$c返回值不为空,..
分类:其他好文   时间:2014-06-02 03:26:07    阅读次数:197
powershell-无法加载文件,因为在此系统中禁止执行脚本
写了一个powershell脚本测试脚本,结果执行的时候报错 $a=Get-ContentC:\script.txt|select-string-pattern"ora" if($a-eq$null) { write-host"error" } else { write-host"OK" } PSD:\>.\pshell.ps1 无法加载文件D:\pshell.ps1,因为在此系统中禁止执行脚本。有关详..
分类:其他好文   时间:2014-06-02 03:17:04    阅读次数:244
CF(438D) The Child and Sequence(线段树)
题意:对数列有三种操作: Print operation l,?r. Picks should write down the value of . Modulo operation l,?r,?x. Picks should perform assignment a[i]?=?a[i] mod x for each i (l?≤?i?≤?r). Set operation k...
分类:其他好文   时间:2014-06-02 02:56:56    阅读次数:465
C# Console 输出
C# Console 输出 C#控制台输出有两种方法:Write()和WriteLine(),它们都是命名空间System中Console类的方法,能够直接输出C#提供的所有基本数据类型。区别是后者输出后换行。 1.基本输出 基本数据类型的简单输出形式为: Console.Write("格式串{参数序号}",参数表); {0}和{1}分别代表后面的参数,0为第一个参数,1为第二个,以此类...
分类:其他好文   时间:2014-06-02 02:29:17    阅读次数:268
java 编程基础
临近毕业,准备复习一些java的基础,顺便整理一下知识编程基础1.Java的特性和优势:简单、面向对象可移植( write once ,run anywhere )、高性能 ,分布式、动态性多线程安全健壮。2.Java的运行机制, 计算高级编程语言类型有:编译型、解释型. Java语言是这两种类型的...
分类:编程语言   时间:2014-06-01 11:41:26    阅读次数:332
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!