search for: wherea

Displaying 20 results from an estimated 6527 matches for "wherea".

Did you mean: where
2010 Aug 01
3
xm list vs. xl list: more differences?
I see that "xl list" shows a domain waiting idly for console input as "r", whereas "xm list" shows the same domain as "b". I also see that the State field for "xl list" contains only three characters (e.g. "r--"), whereas "xm list" shows six (e.g. "-b----"). Is this expected/intended (e.g. "r" in xm list mean...
2006 Nov 21
5
Why Aastra uses 48V whereas other IP Phones use much less, i.e. 5-12V
Hi, Why Aastra phones use more electricity, i.e. 48VDC whereas other phones use much less, e.g. Grandstream and Linksys both use only 5VDC. I first thought it was because of PoE, but the ones with 5VDC also run fine on PoE. What is the difference in power consumption then? -- Zeeshan A Zakaria -------------- next part -------------- An HTML attachment was s...
2016 Apr 08
2
LIBCLC with LLVM 3.9 Trunk
It's not clear what is actually wrong from your original message, I think you need to give some more information as to what you are doing: Example source, what target GPU, compiler error messages or other evidence of "it's wrong" (llvm IR, disassembly, etc) ... -- Mats On 8 April 2016 at 09:55, Liu Xin via llvm-dev <llvm-dev at lists.llvm.org> wrote: > I built it
2004 Oct 20
1
i-node showing 100 % used whereas the partitionsare empty
...ll us by when version 14 would be released. R'gds Varghese Abraham. -----Original Message----- From: Sunil Mushran [mailto:Sunil.Mushran@oracle.com] Sent: Wednesday, October 13, 2004 5:54 PM To: Varghese Abraham Cc: ocfs-users@oss.oracle.com Subject: Re: [Ocfs-users] i-node showing 100 % used whereas the partitionsare empty File a bug on this. I think I know what the issue is. File a bug on oss so that I don't forget about it. diff -r1.165.2.97 ocfsmain.c 1000,1001c1000,1001 < buf->f_files = (unsigned long) (numbits); < buf->f_ffree = (unsigned long) (numbits...
2010 Jan 18
0
[LLVMdev] LLVM-gcc for ARM
> What I am supposed to do next? you said that I have to recompile binutils with --with-sysroot option? It is not an extra step. You have to add --with-sysroot to step 1. > Thank you. Cheers, -- Rafael Ávila de Espíndola
2024 Jan 28
1
2SLS with Fixed Effects and Control Variables
...d couldn't get the tests to run properly. When I used ivreg, I got an error message saying: "Error in eval(predvars, data, env) : object 'WageInequality' not found." Can you please help? Model: numeric(WageInequality) = numeric(EffectiveMinimum) + numeric(EffectiveMinimum2) (whereas EffectiveMinimum2 is the quadratic form of EffectiveMinimum) Instruments: numeric(`Log Real Minimum Wage`) + numeric(`Log Real Minimum Wage2`) + numeric(IVinteration) (whereas Real Minimum Wage2 is the quadratic form of Real Minimum Wage) Time and Region Fixed Effects: factor(Region) + numeric(Y...
2005 Nov 28
1
Use of axis() in conjunction with plot(..., axes=F)
...can do so. However, the axes produced by axis() differ slightly from those produced within plot. I have "bty" in par set to "l" (i.e., left and bottom axes only). Differences include: 1. when an axis contains a factor, plot() produces axes showing the actual factors whereas axis() replaces these factors with integers representing the level of the factor (e.g., if the factor is countries, plot() yields axes labeled "Argentina", "Brazil", etc. whereas axes() yields 1, 2, ... 2. axes produced by plot() are "full-length" (i.e., the a...
2004 Oct 13
1
i-node showing 100 % used whereas the partitions are empty
Output df -i ------------------ Filesystem Inodes IUsed IFree IUse% Mounted on / /dev/sde 348548 348195 353 100% /ocfsa01 /dev/sdf 348548 348195 353 100% /ocfsa02 /dev/sdg 348548 348195 353 100% /ocfsa03 /dev/sdk 139410 138073 1337 100% /ocfsq01 Output df -kP ----------------------- Filesystem
2006 Apr 03
1
Functional tests use ''test.host'' whereas integration tests use ''www.example.com''
I just added my first integration test, and noticed that it uses www.example.com as the domain name. Functional tests, on the other hand, use test.host. I only found this out because I''m actually checking the domain name in requests. Apparently the DSL I create in the integration test should then become available to the rest of the functional tests..but I need the host name to be the
2006 Oct 03
0
no ads join with samba3-3.0.23 whereas 3.0.12-5 works
With samba-3.0.12-5 I can join my AD domain: net ads join -U de7b07k0@ORG1.MYDOMAIN.NET ... 2006/10/03 20:38:41, 0] libads/kerberos.c:get_service_ticket(337) get_service_ticket: kerberos_kinit_password DE70176C$@ORG1.MYDOMAIN.NET@ORG1.MYDOMAIN.NET failed: Clients credentials have been revoked [2006/10/03 20:38:41, 0] libads/kerberos.c:get_service_ticket(337) get_service_ticket:
2013 Jun 09
1
agnes() in package cluster on R 2.14.1 and R 3.0.1
Dear R users, I discovered something strange using the function agnes() of the cluster package on R 3.0.1 and on R 2.14.1. Indeed, the clusterings obtained are different whereas I ran exactly the same code. I quickly looked at the source code of the function and I discovered that there was an important change: agnes() in R 2.14.1 used a FORTRAN code whereas agnes() in R 3.0.1 uses a C code. Here is one of the contingency table between R 2.14.1 and R 3.0.1:...
2018 Apr 13
3
OpenSSH 7.7 t1 script breakage
...s-prep regress-binaries >> $(TARGETS) >> > It looks like the problem is that pwd is in uppercase, not so much the > distinction between $() and ``. > > Can you confirm? I think not.? $(PWD) is a valid expansion of a shell variable when using bash, maybe also Bourne shell, whereas `pwd` is the output of the pwd command. There seems to be muddled-headed thinking going on with scripts. Recently there was a configure problem because of a difference between csh and sh.? (As I recall, csh exits the script when you use an undefined variable, whereas the various sh shells int...
2006 May 29
6
Numerical error in R (win32) (PR#8909)
Hi I had observed the following problem in R (also C, Matlab, and Python). sprintf('%1.2g\n', 3.15) give 3.1 instead of 3.2 whereas an input of 3.75 gives 3.8. Java's System.out.printf is ok though. > round(3.75,1) [1] 3.8 > round(3.15,1) [1] 3.1 Similar outcome with sprintf in R. However, the right answer should be 3.2 Regards Teckpor [[alternative HTML version deleted]]
2015 Feb 02
5
Another Fedora decision
On Mon, Feb 2, 2015 at 4:17 PM, Warren Young <wyml at etr-usa.com> wrote: >> > Let?s flip it around: what?s your justification *for* weak passwords? > You don't need to write them down. Or trust some 3rd party password keeper to keep them. Whereas when 'not weak' is determined by someone else in the middle of trying to complete something, you are very likely to have to write it down. -- Les Mikesell lesmikesell at gmail.com
2011 Feb 24
4
ls returns file doesn't exist, find finds it??
Howdy, I am getting some errors with find and ls command - such that find is able to see a file whereas ls says the file doesn't exist. Initially I was trying find and ls together as: # find ./ -type f -mtime +15 | xargs ls Similar behavior is seen even when I execute both commands separately. Any thoughts on what might be wrong here? -- thanks, neubyr
2007 Jun 22
3
LIST % not returning correct data?
...mespace private { prefix = INBOX. separator = . inbox = yes } in an installation migrated from courier. I am testing with Outlook Mobile 5 (OM) which uses 'LIST "" %' to get the folder list. Now courier used to return * LIST (\HasChildren) "." "INBOX" whereas dovecot returns * LIST (\HasNoChildren) "." "INBOX" which is why OM failes to display any folder. Is this dovecot's failure or am I missing something here? Thanks, J?rg -- Sicherheit - Verf?gbarkeit - Kontinuit?t -----------------------------------------------------...
2009 Sep 01
4
[LLVMdev] A simulation tool
Hello everybody, I am looking for a tool (in Linux or Windows) that allow me to get performance measures like cycle execution, cache accesses, etc. for an x86 architecture. I want to estimate the performance overhead due to the modification that I do using LLVM. Any suggestion is welcome. Thanks in advance, -- Juan Carlos -------------- next part -------------- An HTML attachment was
2010 Sep 22
2
binaries in syslinux-4.02.tar.bz2
...a number of binaries in syslinux-4.02.tar.bz2, which seems a bit odd. Even stranger is that I get different syslinux behaviour depending on whether I rebuild these or use the ones from the tarball. To use the ones from the tarball I: $ make clean $ make installer $ make install-all ... whereas to rebuild everything from source I: $ make spotless $ make all $ make installer $ make install-all If I reuse the binaries from the tarball I get the following output after control is passed to my MBR: SYSLINUX 4.02 2010-07-21 Copyright (C) 1994-2010 H. Peter Anvin et al boot:...
2010 Jan 18
2
[LLVMdev] LLVM-gcc for ARM
hi, So... I followed the following steps in order to compile the llvm-gcc frontend. The single problem is that mentioned in the previous message: llvm-gcc HelloWorld.c /home/LLVM/install/lib/gcc/arm-elf/4.2.1/../../../../arm-elf/bin/ld: this linker was not configured to use sysroots collect2: ld returned 1 exit status 1. I have compiled the binutils for the arm-none-eabi target. Options:
2010 Jun 15
2
Unspecified [upper] xlim/ylim?
Greetings! I would like to be able to specify a fixed (say) lower limit for plotting, while leaving the upper limit "floating, when plotting. The context is that the maximum in the data to be plotted is unpredictable, being the consequence of a simulation, whereas I know that it cannot be less than (say) 0; and I want to fix the lower limit at 0 in any plot, leaving the upper limit to be assigned by plot() as a result of the computed values. I know I can do this by determining the max() of the data, and then computing a "Ymax" to put in (say) yli...