search for: xyx

Displaying 17 results from an estimated 17 matches for "xyx".

Did you mean: xxx
1998 Apr 08
1
Access across routers
Greetings, I have an interesting situation where SAMBA servers that are across various routers are requiring the fully qualified domain name. Example: \\xyx.nrl.navy.mil. If our SAMBA server is local (behind the same router as our client), then the \\xyx name will work fine.... This allows you to connect, but if you are browsing the network neighborhood, and you double click on the \\xyx when the server is not local, you get a error back netname coul...
2010 Nov 17
2
Bug in agrep computing edit distance?
I posted this yesterday to r-help and Ben Bolker suggested reposting it here... Dickison, Daniel <ddickison <at> carnegielearning.com> writes: > > The documentation for agrep says it uses the Levenshtein edit distance, > but it seems to get this wrong in certain cases when there is a > combination of deletions and substitutions. For example: > > >
2012 Mar 19
1
[LLVMdev] tablegen nomenclature
What would you call elements of the form: xyz:$abc -- variables seems to be the name in the tablegen code ??? They are not mentioned in the tablegen users guide but of course used heavily. xyx must be a def and exist? Thanks. Reed
1997 Sep 16
1
create mode problems (Samba 1.9.17p1)
With create mask = 0750 in smb.conf I got for directories: drwxr-xr-x 2 meyer urtmit 512 Sep 16 13:28 xxxx for files: -rwxr----- 1 meyer urtmit 6 Sep 16 13:28 XYX Why not rwxr for the dir? TIA, KD _/ _/ ___/ _____/ K. D. Meyer _/ _/ _/ _/ _/ _/ Universitaet Trier _/ Email: meyer@uni-trier.de _/ _/ _/___/_/ _/ Rechenzentrum _/ Tel.: +49 (0)651 201 3428 _/ _/ _/ _/ _/ _/ F...
2016 Jul 13
2
IPRA, interprocedural register allocation, question
...n. PrologEpilogEmitter() { “CodeGen/” ... TFI->determineCalleeSaves() { “Target/XYZ/” TargetFrameLowering::determineCalleeSaves() { “CodeGen/” Return <<< some object derived from “*CallingConv.td” >>>; “build/lib/Target/XYX/” } ... SavedRegs.set(Reg); // to “add” a reg, EG for ‘hasFP’, ETC ... } } The SavedRegs set always starts out with a predefined calling-convention value That comes typically from “*CallingConv.td” hence is not function-specific. The only time Sav...
2016 Jul 13
2
IPRA, interprocedural register allocation, question
...PrologEpilogEmitter() { “CodeGen/” ... TFI->determineCalleeSaves() { “Target/XYZ/” TargetFrameLowering::determineCalleeSaves() { “CodeGen/” Return <<< some object derived from “*CallingConv.td” >>>; “build/lib/Target/XYX/” } ... SavedRegs.set(Reg); // to “add” a reg, EG for ‘hasFP’, ETC ... } } The SavedRegs set always starts out with a predefined calling-convention value That comes typically from “*CallingConv.td” hence is not function-specific. The only time Sav...
2017 Jun 14
2
[WISH / PATCH] possibility to split string literals across multiple lines
I don't think it is reasonable to change the parser this way. This is currently valid R code: a <- "foo" "bar" and with the new syntax, it is also valid, but with a different meaning. Or you can even consider a <- "foo" bar %>% func() %>% print() etc. I like the idea of string literals, but the C/C++ way clearly does not work. The Python/Julia way
2010 Apr 24
1
Problems with deleted file logging
...39;t find any reply the second one, when parsing log file, absolute paths of deleted files show pwd instead of destination directory es: file.xyz is placed in /home/dataware/core (/home/dataware is DEST directory) but log says: 2010/04/22 15:07:45 [7695] ::LOG:: *deleting /home/gallo/core/file.xyx where ?/home/gallo/ is my ?current working directory ... any hint? thanks EnricoGallo
2003 Oct 03
0
SAMBA and the Archive Bit
...BTW, the archive bit does get switched on if I force user to be root, but for security reasons I don't want to do this. I have spent a long time trying multiple combinations of permission settings. Am I missing something, or is this a bug? Thanks, Andrew Butler. [global] workgroup = XYX netbios name = XYZ001 server string = Samba 2.2.7a on Red Hat Linux 8.0 security = DOMAIN encrypt passwords = Yes password server = * wins server = 192.0.2.11 winbind uid = 5000-6000 winbind gid = 5000-6000 template homedir = /...
2008 Nov 12
0
Splus-specific entries in pkg/DESCRIPTION files
...e S+, or a package might require R 2.8.0 or S+ 8.1 to work properly. Another example might be that R's build system requires that the Maintainer: line contains an e-mail address but in Spotfire S+ a URL is acceptable. Our solution to this is that if a DESCRIPTION file has entries tagged 'Xyx:' and 'XyzSplus:' then S+'s read.dcf() function will ignore the 'Xyz:' entry and output the 'XyzSplus:' entry as the 'Xyz:' entry. E.g., the Depends: example above would be handled by putting the following 2 lines in DESCRIPTION Depends: R (>= 2.8.0),...
2017 Jun 15
0
[WISH / PATCH] possibility to split string literals across multiple lines
...uot;this is a > multi-line > lineral""" This does look like a promising option; some more careful checking would be needed to make sure there aren't cases where currently working code would be broken. Another Python idea worth considering is the raw string notation r"xyx" that does not process escape sequences -- this would make writing things like regular expressions easier. Best, luke > > Gabor > > On Wed, Jun 14, 2017 at 4:12 PM, William Dunlap via R-devel > <r-devel at r-project.org> wrote: >> If you are changing the parser (w...
2015 Aug 12
2
ARM: Predicated returns considered analyzable?
...after which having "exiting" instructions is allowed in the middle of the block. Since having a conditional branch in the middle is not allowed during early optimizations, a predicated return should also be disallowed there. Can such a point be formally defined (as in "after pass XYX, is it allowed to have predicated terminators in the middle of a block")? -Krzysztof -- Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, hosted by The Linux Foundation
2015 Aug 10
2
ARM: Predicated returns considered analyzable?
Hello, The function ARMBaseInstrInfo::AnalyzeBranch contains the following piece of code: } else if (I->isReturn()) { // Returns can't be analyzed, but we should run cleanup. CantAnalyze = !isPredicated(I); } else { This could lead to cases where for a block that ends with a conditional return, AnalyzeBranch returns false (i.e. analyzed), both TBB and FBB are
2016 Jul 12
3
IPRA, interprocedural register allocation, question
Mehdi, I am looking for an understanding of 1) IPRA in general, 2) IPRA in LLVM. Whether I want to use LTO or not is a separate issue. 1) I currently believe it is a true statement that: If all external functions are known to not call back into the “whole-program” Being compiled, then IPRA is free to do anything at all to the functions being
2003 Dec 01
0
No subject
...dns proxy = No wins server = 172.16.15.248 hide dot files = No [printers] comment = All Printers path = /usr/spool/samba printable = Yes browseable = No [dgayken] path = / valid users = dgayken,DGAYKEN read only = No [xyx] path = /tmp valid users = dgayken istesting [homes] path = /tmp [jsperry] path = / valid users = jsperry dgayken read only = No [keyp1] path = /tmp valid users = keyp1,dgayken read only = No Any assistance pointing us to t...
2003 Dec 01
0
No subject
...34]) by lists.samba.org (Postfix) with SMTP id 996485452 for <samba@lists.samba.org>; Thu, 17 May 2001 07:23:42 -0700 (PDT) Received: by gc2a-hplh4.countygovt.brevard.fl.us with VINES-ISMTP; Thu, 17 May 2001 10:24:34 -0400 Date: Thu, 17 May 2001 10:24:33 -0400 Message-ID: <vines.MVC9+Xyx+vA@gc2a-hplh4.countygovt.brevard.fl.us> To: <samba@lists.samba.org> From: <marion.haines@countygovt.brevard.fl.us>(Marion Haines) Reply-To: <marion.haines@countygovt.brevard.fl.us> Subject: Considering Upgrade X-Incognito-SN: 28896 X-Incognito-Version: 5.1.0.78 MIME-Version: 1....
2008 Jun 30
4
Rebuild of kernel 2.6.9-67.0.20.EL failure
Hello list. I'm trying to rebuild the 2.6.9.67.0.20.EL kernel, but it fails even without modifications. How did I try it? Created a (non-root) build environment (not a mock ) Installed the kernel.scr.rpm and did a rpmbuild -ba --target=`uname -m` kernel-2.6.spec 2> prep-err.log | tee prep-out.log The build failed at the end: Processing files: kernel-xenU-devel-2.6.9-67.0.20.EL Checking