search for: gapp

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

Did you mean: app
2009 Jul 02
1
Getting identify() to work with lattice::cloud()
I don't seem to be able to put any syntax into identify() that gets it to work with "lattice" cloud() graph: layout(1) require('lattice') cloud(g3 ~ g1 + g2, data=gapp, col = "blue", xlab='G1 Score', ylab='G2 Score', zlab='G3 Score', main='3D Plot for Applicants') identify(gapp[,2:4], labels=gapp$ID) Here g1 is gapp[,2], g2 is gapp[,3] and g3 is gapp[,4]. gapp is a data frame. I've tried several variants in th...
2013 Dec 05
2
[LLVMdev] Unable to perform LLVM LTO using clang
Dear Rafael, Thank you for your answer. The verbose mode -v shows that clang uses the old ld in /usr/bin while I install the gold in /usr/local/bin. Regards, Chunbai On Tue, Dec 3, 2013 at 9:23 PM, Rafael EspĂ­ndola <rafael.espindola at gmail.com > wrote: > > Could anyone tell me where my mistake is? > > Try running > > clang -flto a.o b.o -o main -v > > it should
2013 Dec 05
0
[LLVMdev] Unable to perform LLVM LTO using clang
On 5 December 2013 07:46, Chunbai YANG <chunbyang2 at gapps.cityu.edu.hk> wrote: > Dear Rafael, > > Thank you for your answer. The verbose mode -v shows that clang uses the old > ld in /usr/bin while I install the gold in /usr/local/bin. Clang should be searching the path. What does $ which ld print? Maybe all that you have to do is $ ex...
2017 Oct 28
1
ADC 4.7.0 KCC replication failing with PDC 4.6.8
...Rowland Thanks for the link https://wiki.samba.org/index.php/Samba_AD_DC_Port_Usage It should fix the Firewall authentication problem. I like to find out if I can rename the Domain name of the DC when I move it to the new DC like currently it is IUMNET.EDU.NA <http://iumnet.edu.na/> but my GApps domain name is IUM.EDU.NA <http://ium.edu.na/> and I like to use the same on my new DC. Is it possible to change the name without joining all the computers again. Regards Harsh Sent from my iPhone On 28 Oct 2017, at 6:42 PM, Rowland Penny via samba <samba at lists.samba.org> wrote:...
2012 Apr 30
5
Different varable lengths
Hi! I'm trying to do a lm() test on three objects. My problem is that R protests and says that the variable lengths differ for one of the objects (Sweden.GDP.gap). But I have double checked that the number of observations are the same. All three objects should contain 9 observations but R only accepts 9 observations in two of the objects. The third must have 10! Very confusing because there
2004 Apr 22
1
a running smb.conf as PDC for windows XP clients
hi, I am using Samba 3.0.2a-SuSe as PDC. Testing to joining Windows XP to samba failed. Please give me the clue... Thanks Michael
2013 Jan 16
2
Samba4 Integration With Google
Hello everone, In my Company we are going through a network redesign and Planning to retire our Novel edirectory, and Novel Servers and replace them with Samba4 (Over 150 Servers). We have setup a Samba4 test environment which seems to be working well so far. We are an organization with multiple locations and over 1200 users, we are also very heavy users of google apps. I have couple of questions
2009 Apr 14
4
Linux Foundation removed all Theora videos from linux.com?
I've heard this second hand and haven't had the time to confirm its vericity. Can someone confirm this is the case? If so, what were these people thinking? Removing support for the only video format that is sure to be installed in every Linux box somehow promoves the OS adoption? You get a WTF award LF, congrats. -Ivo
2010 Apr 19
1
What is mclust up to? Different clusters found if x and y interchanged
Hello All... I gave a task to my students that involved using mclust to look for clusters in some bivariate data of isotopes vs various mining locations. They discovered something I didn?t expect; the data (called tur) is appended below. p <- qplot(x = dD, y = dCu65, data = tur, color = mine) print(p) # simple bivariate plot of the data; looks fine mod1 <- Mclust(tur[,2:3]) mod1$G mod2
2017 Oct 27
5
ADC 4.7.0 KCC replication failing with PDC 4.6.8
Hi I have created a new DC on the Ubuntu 16.04 with the latest sernet samba 4.7.0 package. After joining to the PDC running 4.6.8 package I backed up the idmap.ldb file and copied to the new DC. When I run the samba-tool ntacl sysvolreset command on the new DC to replicate GID Mappings it fails with the below error: open: error=2 (No such file or directory) ERROR(runtime): uncaught exception -
2013 Oct 18
0
[LLVMdev] Iterate through a Module's StructTypes
Hello, I'm updating a legacy code using LLVM 2.5 where it has an iteration through a Module's TypeSymbolTable to process each StructType. In LLVM 3.4, TypeSymbolTable has been removed. I can only find the LLVMContextImpl instance of a Module's LLVMContext which has AnonStructTypes and NamedStructTypes two maps. However, LLVMContextImpl is an opaque class which cannot be directly
2013 Oct 18
1
[LLVMdev] Iterate through a Module's StructTypes
Hello, I'm updating a legacy code using LLVM 2.5 where it has an iteration through a Module's TypeSymbolTable to process each StructType. In LLVM 3.4, TypeSymbolTable has been removed. I can only find the LLVMContextImpl instance of a Module's LLVMContext which has AnonStructTypes and NamedStructTypes two maps. However, LLVMContextImpl is an opaque class which cannot be directly
2013 Dec 02
2
[LLVMdev] Unable to perform LLVM LTO using clang
Hi everyone, I want to perform whole-program analysis for apache httpd using httpd's original autoconf system so that I need to generate a single bitcode file. So I follow the instructions in LLVM document on gold plugin http://llvm.org/docs/GoldPlugin.html#lto-how-to-build. However, when running a simple program using LTO, clang fails to link the object file with the LLVM bitcode.