Displaying 5 results from an estimated 5 matches for "orig_dir".
Did you mean:
org_dir
2004 Jul 30
1
Symlinks out of sharing still not working on 3.0.5
...rver:
unix extensions = Yes
wide links = Yes
follow symlinks = Yes
On client computer with home user mounted via smbfs
I'm trying this:
D102-054 [/lp/home/dito/tmp] > cd /tmp
D102-054 [/tmp] > mkdir dest_dir
D102-054 [/tmp] > cd -
D102-054 [/lp/home/dito/tmp] > ln -s /tmp/dest_dir orig_dir
D102-054 [/lp/home/dito/tmp] > ls -la
total 524292
drwx------ 1 dito bcc 0 Jul 29 21:11 .
drwx-----x 1 dito alunos 4096 Jul 29 21:08 ..
lrwxrwxrwx 1 dito bcc 12 Jul 29 21:11 orig_dir -> tmp/dest_dir
Why samba is linking to "tmp/dest_dir&...
2002 Jun 18
3
FINDNEXT problem, w2k and linux smbfs
...$count2 != $count1"
fi
cnt=`expr ${cnt} + 1`
echo "Test : $cnt"
done
/* also java prog I used to test this problem on w2k and Linux
*/
import java.util.*;
import java.io.*;
public class SMBtest {
public static void main(String args[]) {
String directory = args[0];
File orig_dir = new File(directory);
File orig_fl[] = orig_dir.listFiles();
int orig_len = orig_fl.length;
int cnt = 0;
int er_cnt = 0;
do {
File new_dir = new File(directory);
File new_fl[] = new_dir.listFiles();
int new_len = new_fl.length;
cnt ++;
if (new_len != orig_len) {
er_cnt ++;...
2012 Nov 29
0
[LLVMdev] Getting Started
...the same purpose,
but I didn't post it because it was not as 'user-friendly'. (And I
suspect lots of other developers have similar scripts.)
> print (msg)
print does not need parentheses.
> curdir=os.getcwd();
> project=target;
Semicolon is not needed.
> os.chdir(orig_dir) #Go back
No need in that, current directory is per-process.
There are other style issues, I hope
<http://www.python.org/dev/peps/pep-0008/> would be helpful.
Dmitri
--
main(i,j){for(i=2;;i++){for(j=2;j<i;j++){if(!(i%j)){j=0;break;}}if
(j){printf("%d\n",i);}}} /*Dmitri Gribe...
2012 Nov 29
3
[LLVMdev] Getting Started
On Nov 29, 2012, at 12:46 PM, Eli Bendersky <eliben at google.com> wrote:
> On Thu, Nov 29, 2012 at 9:41 AM, Joe Abbey <jabbey at arxan.com> wrote:
>> I know this process is well documented here
>> http://llvm.org/docs/GettingStarted.html
>>
>> But man do I love scripting things:
>>
>> LLVM Getting Started (See
2012 Sep 17
9
[PATCH] Upgrade vtpmd to berlios version 0.7.4
...s/vtpm/Makefile
@@ -1,19 +1,15 @@
XEN_ROOT = $(CURDIR)/../..
+include $(XEN_ROOT)/tools/Rules.mk
-# Base definitions and rules
-include $(XEN_ROOT)/tools/vtpm/Rules.mk
-
-# Dir name for emulator (as dom0 tpm driver)
-TPM_EMULATOR_DIR = tpm_emulator
# Dir name for vtpm instance
VTPM_DIR = vtpm
-ORIG_DIR = orig
# Emulator tarball name
-TPM_EMULATOR_NAME = tpm_emulator-0.5.1
+TPM_EMULATOR_URL = http://download.berlios.de/tpm-emulator
+TPM_EMULATOR_NAME = tpm_emulator-0.7.4
TPM_EMULATOR_TARFILE = $(TPM_EMULATOR_NAME).tar.gz
-GMP_HEADER = /usr/include/gmp.h
+VTPM_PATCH = vtpm-0.7.4.patch
.PHO...