search for: nnot

Displaying 10 results from an estimated 10 matches for "nnot".

Did you mean: not
2005 Oct 13
1
[LLVMdev] small bug in profile.pl?
...------------ linux$ profile.pl -block ccc.bc Error opening '/home/myhome/llvm/llvm-install/bin/../../Debug/lib/libprofile_rt\ .so': Can't open :/home/myhome/llvm/llvm-install/bin/../../Debug/lib/libprofile\ _rt.so: /home/myhome/llvm/llvm-install/bin/../../Debug/lib/libprofile_rt.so: ca\ nnot open shared object file: No such file or directory -load request ignored. --- End Error Message -------------------------- -------------------------------------- Know more about Breast Cancer http://pr.mail.yahoo.co.jp/pinkribbon/
2019 Jan 25
0
[klibc:update-dash] eval: Return status in eval functions
...t checkexit = 0; - void (*evalfn)(union node *, int); + int (*evalfn)(union node *, int); unsigned isor; - int status; + int status = 0; if (n == NULL) { TRACE(("evaltree(NULL) called\n")); goto out; @@ -221,8 +223,7 @@ evaltree(union node *n, int flags) break; #endif case NNOT: - evaltree(n->nnot.com, EV_TESTED); - status = !exitstatus; + status = !evaltree(n->nnot.com, EV_TESTED); goto setstatus; case NREDIR: errlinno = lineno = n->nredir.linno; @@ -230,11 +231,8 @@ evaltree(union node *n, int flags) lineno -= funcline - 1; expredir(n->nred...
2020 Mar 28
0
[klibc:update-dash] dash: eval: Return status in eval functions
...t checkexit = 0; - void (*evalfn)(union node *, int); + int (*evalfn)(union node *, int); unsigned isor; - int status; + int status = 0; if (n == NULL) { TRACE(("evaltree(NULL) called\n")); goto out; @@ -221,8 +223,7 @@ evaltree(union node *n, int flags) break; #endif case NNOT: - evaltree(n->nnot.com, EV_TESTED); - status = !exitstatus; + status = !evaltree(n->nnot.com, EV_TESTED); goto setstatus; case NREDIR: errlinno = lineno = n->nredir.linno; @@ -230,11 +231,8 @@ evaltree(union node *n, int flags) lineno -= funcline - 1; expredir(n->nred...
2004 Dec 04
1
chan_misdn and Dynalink IS64PH ISDN
...UnLocking config_mutex == Registered channel type 'mISDN' (This driver enables the asterisk to use hardware which is supported by the new ) Locking Config Mutex UnLocking Config Mutex Init. Stack on port 1 TE Stack No Upper ID init_stack: File exists note : It work with chan_capi (but nnot nt mode ) Any ideas ? Thanks Jerome D?couvrez le nouveau Yahoo! Mail : 250 Mo d'espace de stockage pour vos mails ! Cr?ez votre Yahoo! Mail sur http://fr.mail.yahoo.com/ Avec Yahoo! faites un don et soutenez le T?l?thon en cliquant sur http://www.telethon.fr/030-Don/10-10_Don.a...
2010 Oct 20
2
new.env does not recognize parents from subclasses of "environment"
Dear Developers, A lot has been changed in the R12.0 with respect to behavior of "environment" subclasses. Many thanks for that. One small irregularity, though; new.env does not allow the parent to be from S4 subclass. > setClass("myenv", contains="environment") [1] "myenv" > new.env(parent=new("myenv")) Error in new.env(parent =
2020 Sep 16
2
Cannot load key: Invalid dovecot key version
...| Sep 16 03:29:36 auth: Debug: oauth2(admin,172.18.0.1,<Q5Bc4GWv9tqsEgAB>): Attempting to locally validate token dovecot_1 | Sep 16 03:29:36 auth: Debug: oauth2(admin,172.18.0.1,<Q5Bc4GWv9tqsEgAB>): callback(result: password_mismatch, error: Ca nnot load key: Invalid dovecot key version) dovecot_1 | Sep 16 03:29:36 auth: Info: oauth2(admin,172.18.0.1,<Q5Bc4GWv9tqsEgAB>): oauth2 failed: Cannot load key: Invalid doveco t key version dovecot_1 | Sep 16 03:29:36 auth: Debug: oauth2(admin,172....
2011 Jan 23
4
store profiles on a third server
hello all, I am building a network system using Samba 3.5 on Debian Squeeze and Windows 2003 workstations. I have properly configured my samba PDC, and that's working correctly. I am using an external LDAP to store the credentials. I also wanted to use roaming profiles, and I have properly configured this. That's working well for me, using Windows 2003 work stations. I'll soon
2001 Mar 16
0
Some Users Work - Some don't (fwd)
...69 63 65 73 20 53 69 67 6E 6F 66 66 Services Signoff [2001/03/16 03:38:06, 10] lib/util.c:dump_data(2926) [0E0] 2E 53 74 61 74 75 73 20 43 6F 64 65 27 20 63 61 .Status Code' ca [2001/03/16 03:38:06, 10] lib/util.c:dump_data(2926) [0F0] 6E 6E 6F 74 20 63 6F 6E 74 61 69 6E 20 61 20 4E nnot con tain a N [2001/03/16 03:38:06, 10] lib/util.c:dump_data(2926) [100] 75 6C 6C 20 76 61 6C 75 65 20 62 65 63 61 75 73 ull valu e becaus [2001/03/16 03:38:06, 10] lib/util.c:dump_data(2926) [110] 65 20 74 68 65 20 52 65 71 75 69 72 65 64 20 70 e the Re quired p [2001/03/16 03:38:06, 10] li...
2001 Dec 05
9
Windows testing
R 1.4.0 is now sinking into feature freeze, and we'd like some help testing it under Windows. Duncan Murdoch and Uwe Ligges have already volunteered. I've put a copy of SetupR140.exe at http://www.stats.ox.ac.uk/pub/bdr/RWin Also in that directory is a file TESTING suggesting some tests, not all of which have been run on this build. As the graphics internals have been changed a lot
2005 Feb 23
19
Calculating real cpu usage of Xen domains correctly!
...cpu times is going toward a particular domain. (differential of domain cpu time / total differential of all domains cpu times) new_cpu_time-old_cpu_time total_new_cpu_times-total_old_cpu_times This one gives you a good idea of what percentage a domain took of the total active cpu usage time. Nnot sure this the totally correct way of going about doing this. Anthony Ligouri and I rea bit perplexed if there is a better way. Does anyone know if there is a better way and is there a way to get the real CPU usage. -- Jerone Young Open Virtualization IBM Linux Technology Center jyoung5@us.ibm.c...