search for: nondescript

Displaying 13 results from an estimated 13 matches for "nondescript".

2011 Apr 20
4
Two Questions
Sorry for the somewhat nondescript subject line, but I have two questions: 1. What is a really good book on R for a nonprogrammer? 2. How do I open more than one R Graphics: Device 2(ACTIVE). That what is the R command that I can use to keep more than one plot open. I am running a script from a book on Chemometri...
2016 Feb 17
2
Getting MachineInstr opcode mnemonics as strings
...;CMP32ri8", "JLE_1") for a MachineInstr? I am writing a backend analysis pass for security research, where the idea is for a researcher to examine the output of my pass and identify instructions from it for use in an attack. Right now I'm representing unique instructions with nondescript numeric symbols, like "i28" for the 28th instruction; but it would be nice to give the reader something more helpful like "i28_MOV32ri64". MachineInstr doesn't have a getName() function like many other LLVM IR/MachineIR objects; is there anything roughly equivalent to th...
2001 Mar 22
1
authority to join a domain
I am trying to add a Samba 2.0.7 box to an existing domain. The Samba box will not be a domain controller; it's just going to be a nondescript member of the domain. The primary domain controller is running Windows 2000, but is also configured to emulate an NT4 PDC. Our system administrators did their side of things, and told me that user "domain\liblit" now has permission to add machine "zubzub" to the "domain&q...
2014 May 04
2
Replacing the Wiki user documentation page
Hello, what do you think about replacing the user documentation page (https://wiki.samba.org/index.php/Samba) with https://wiki.samba.org/index.php/HowTo_Guide? The HowTo Guide is a table of content, we worked out in a past documentation team meeting. Everything from the current user documentation page is already link there and even more. I know that currently there are many red (not
2004 Jan 09
4
Erro C0000001
Hi everybody I get it the follow error: The System can not log on. Between parentheses (C0000001). What the means of this, please? -- Gilberto Nunes Suporte Rede Bonja - Bom Jesus/Ielusc Fone: 433-0155 - ramal 235 www.ielusc.br - suporte@ielusc.br Linux User n? 199930 ICQ #136176504 -- Gilberto Nunes Suporte Rede Bonja - Bom Jesus/Ielusc Fone: 433-0155 - ramal 235 www.ielusc.br -
2009 Feb 23
1
Help with R and MySQL
...in R (and DBI/RMySQL). R connected to the database just fine, and I could even show the tables in the database and load two of them into R. However, the tables I loaded successfully were only a single column. Every time I tried to load in a recordset that was multiple columns, I got a relatively nondescript Windows error("R for Windows terminal front-end has encountered a problem and needs to close. We are sorry for the inconvenience."). To verify that it wasn't a memory issue, I even tried "rs <- dbSendQuery(con, "select 'a', 'b'")". This state...
2020 Feb 06
0
[Bug 14267] New: rsync produces unhelpful errors on remote copy to OS with different ACL format
..., copies fail with an unhelpful error when they use different ACL formats: rsync: [sender] write error: Broken pipe (32) rsync: connection unexpectedly closed (56591 bytes received so far) [generator] rsync error: error in rsync protocol data stream (code 12) at io.c(820) [sender=3.1.3] This is a nondescript error that sends the user down a rabbit hole debugging the wrong issue (are my rsync versions mismatched? why is there a protocol-level error? is my ssh connection failing? is my disk full?). It doesn't help that by default logs or increasing sender-side verbose produces no further hints; it...
2010 Sep 28
0
cross-realm Kerberos trust with a third Windows domain
...ss REALM resources. If I log into a CORP workstation, I can access REALM resources as expected (including samba). We have a third Windows 2008 domain I'll call LAB. If I log into a LAB workstation as a CORP user, and try to get to a REALM samba share, it won't connect and I get a very nondescript Windows error (normally a 'the network name no longer exists'). Using a packet capture and the 'klist ticket's command, I see I am getting the correct cifs Kerberos ticket for the samba server. Other kerberized resources (web, ssh) work - but samba won't connect. I am fa...
2013 Apr 11
2
[PATCH 1/2] btrfs-progs: replace blkid_probe_get_wholedisk_devno
blkid_probe_get_wholedisk_devno() isn''t available in some older versions of libblkid. It was used to work around an old bug in blkid_devno_to_wholedisk(), but that has been fixed since 5cd0823 libblkid: fix blkid_devno_to_wholedisk(), present in util-linux 2.17 and beyond. If we happen to be missing that fix, the worst that happens is that we''d fail to detect that a device is
2006 Jun 26
2
running lighttpd -> Recognition failed for "/"
i have tried several tutorials on the web for getting my app to run under lighttpd and fastcgi.. my setup is fedora core 5.. i used this to get everything installed: http://www.digitalmediaminute.com/howto/fc4rails/ but i kept getting errors, as the machine i am installing it is a remote machine, i couldn''t get it to work right.. i next tried this:
2014 Oct 14
1
[OT]] CentOS 7 docs, tutorials, etc...
...smiss it out of hand when confronted with it. Old news, shall we say. Never mind that dismissive response begs the question that these thing have happened and continue to happen. Personally, I am beginning to wonder just who employs "William Woods" <woods.w at gmail.com>. A nice nondescript name with no signature block from an anonymous email address. Maybe he is a tinfoil salesman? Anyone who attended the C3 Congress in Berlin this past December was exposed to an awful lot information and revelations from some highly respected privacy advocates. They were also made aware of the fa...
2007 May 15
4
Feasibility Request
I have a ton of Nortel MICS/CICS phone systems and am looking for an easy way to integrate them. Two questions arise: 1. Is it feasible to use asterisk as a Man in the Middle for a T1 PRI system? The idea is to intercept outbound calls from the Nortel PBX and redirect them via VoIP to another asterisk box at another branch transparently(thus saving the LD cost). Otherwise I'd pass
2008 May 23
20
Rails validation is inefficient
Hi, I have a User model, with a validates_uniqueness_of :login The generated SQL for the validation is: SELECT * FROM `users` WHERE (LOWER(users.login) = ''fernando'' AND users.id <> 10001) LIMIT 1; and it takes 0.13s to happen (my table has 10.000 rows) When I use the EXPLAIN instruction on it, it shows that it will use the primary_key as index, but this is not