search for: xyz

Displaying 20 results from an estimated 1652 matches for "xyz".

2020 Feb 24
2
Mac OS and interpretation of @ in a username. Ex user@mds.xyz doesn't work on Mac OS but does on Win 10
...> >>>>>> Sorry! >>>>>> >>>>>> Andrew Bartlett" >>>>>> >>>>>> Yeah, wondering if there is a way to tell Samba NOT to split that >>>>>> up and >>>>>> treat joe at mds.xyz as a single user.? This works fine in Win 10 so I >>>>>> agree, it's probably a client SMB configuration issue but would >>>>>> like to >>>>>> know exactly what that config issue is. >>>>>> >>>>> >>&gt...
2010 Aug 20
2
Determining the length of unique items in a vector
Dear all, let suppose I have following vector:   > dat1 <- c(rep("asd", 5), rep("xyz", 12), rep("erd", 17)) > dat1 <- dat1[sample(1:length(dat1), length(dat1), replace=F)] > dat1  [1] "erd" "xyz" "erd" "asd" "asd" "erd" "xyz" "asd" "erd" "erd" "asd"...
2005 Jun 10
4
data.frame to character
Hi, Excuse me for this simple question. How to convert as.data.frame to as.character? ?data.frame > L3 <- LETTERS[1:3] > L10 <- LETTERS[1:10] > d <- data.frame(cbind(x=c("XYZ"), y=L10), fac=sample(L3, 10, repl=TRUE)) > d x y fac 1 XYZ A A 2 XYZ B A 3 XYZ C A 4 XYZ D A 5 XYZ E B 6 XYZ F C 7 XYZ G A 8 XYZ H C 9 XYZ I B 10 XYZ J A > str(d) `data.frame': 10 obs. of 3 variables: $ x : Factor w/ 1 level "XYZ&quo...
2012 Jul 18
2
How to have original (name) order after melt and cast command
...ot;3/22/12","3/21/12","3/20/12", "3/30/12","3/29/12","3/28/12", "3/27/12","3/26/12","3/23/12","3/22/12","3/21/12","3/20/12"), format="%m/%d/%y"), name = as.character(c("xyz","xyz","xyz","xyz","xyz","xyz","xyz","xyz", "xyz","abc", "abc","abc","abc","abc","abc", "abc","abc","abc","lmn",&q...
2012 Jun 10
3
Apache mod_cache/mod_disk_cache...?
...string when this directive is enabled. These two things seem at-odds with eachother. When I turn ''cacheignorequerystring'' On in Apache, the caching starts to work ... but as I understand it, it menas that a request for /foo.sh?bar will cache and return the same result as /foo.sh?xyz ... thus making the query string completely ignored. However, if I leave it off, I get no caching at all because Puppet seems to make every single file request with a ? attached to it: > Jun 10 00:17:59.000000 puppetmaster-20372704.cloud.XYZ.com apache: puppetmaster-20372704.cloud.XYZ.com:443 2...
2018 Aug 06
2
Winbind issue after upgrading from 4.7.5 to 4.8.3
Hi guys We recently upgraded our Samba clusters from 4.7.5 to 4.8.3 and noticed a difference in behavior for winbind. The situation is as follows Assume we have a local Linux user XYZ (UID 519) as well as a AD user object XYZ (UID 30001).     idmap config * : backend = tdb2     idmap config * : range = 30000-50000 In our share definitions we regularly use the "force user" directive. In 4.8.3, when using "force user = XYZ", we are forcing the UID of the A...
2004 Nov 18
0
Samba ADS Winbind unable to join SuSe 9.1
...server to windows domain using net command, net command dies with segment fault message. While starting winbind process, it dies with segment fault error message. Here is my configuration files and error message on this problem. smb.conf: ======== # Global parameters [global] workgroup = xyz realm = xyz.COM security = ADS map to guest = Bad User password server = 192.168.1.201 socket options = TCP_NODELAY SO_RCVBUF=8192 SO_SNDBUF=8192 preferred master = No local master = No domain master = No wins server = 192.168....
2008 Oct 22
5
LDAP Problem
...to configure puppet with LDAP repository . I have set puppet schema and I have also added node definition at LDAP. Here is my configuration details . ############################################################## Puppet.conf node_terminus = ldap ldapserver = 10.250.11.127 ldapbase = ou=Hosts,dc=xyz,dc=com ldapassword = secret ############################################################# Node details #################### # extended LDIF # # LDAPv3 # base <dc=xyz,dc=com> with scope sub # filter: (objectclass=*) # requesting: ALL # # xyz.com dn: dc=xyz,dc=com objectClass: dcObject ob...
2020 Feb 21
3
Mac OS and interpretation of @ in a username. Ex user@mds.xyz doesn't work on Mac OS but does on Win 10
...21/02/2020 19:06, torch via samba wrote: >> Am I missing something?? I don?t see where you are using the ?@? >> symbol anywhere. >> Mac is probably interpreting the parameters ?valid users? and ?write >> list" (correctly, I think ;-) as a LIST of 3 users: joe, at, mds.xyz >> or bob, at, mds.xyz. >> >> torch > > My question would be 'why is the OP trying to login using what appears > to be a UPN to something (standalone server) that doesn't use kerberos ?' > > More info required. > > Rowland > > > Valid qu...
2020 Feb 28
0
Mac OS and interpretation of @ in a username. Ex user@mds.xyz doesn't work on Mac OS but does on Win 10
...;> Sorry! >>>>>>> >>>>>>> Andrew Bartlett" >>>>>>> >>>>>>> Yeah, wondering if there is a way to tell Samba NOT to split that >>>>>>> up and >>>>>>> treat joe at mds.xyz as a single user.? This works fine in Win 10 so I >>>>>>> agree, it's probably a client SMB configuration issue but would >>>>>>> like to >>>>>>> know exactly what that config issue is. >>>>>>> >>>>...
2020 Feb 23
0
Mac OS and interpretation of @ in a username. Ex user@mds.xyz doesn't work on Mac OS but does on Win 10
...amba tries the process it the @ is >>> already interpreted and the string split. >>> >>> Sorry! >>> >>> Andrew Bartlett" >>> >>> Yeah, wondering if there is a way to tell Samba NOT to split that up and >>> treat joe at mds.xyz as a single user. This works fine in Win 10 so I >>> agree, it's probably a client SMB configuration issue but would like to >>> know exactly what that config issue is. >>> >> >> + or what paramaters I could change to ensure the string isn't split...
2009 Jul 22
1
How do I delete a row from a data frame when varA == "TRUE"
I want to delete a row from a data frame XYZ where A == "TRUE". Let's assume there are five variables in this data frame XYZ. My deletion is based on the TRUE vs. FALSE value under variable A. How do I do this? Thanks! My current code: for (i in 1:length(XYZ$A)) if (XYZ$A == "FALSE") XYZ<-XYZ else XYZ<- XYZ...
2011 Mar 28
1
Ordering data.frame based on class
Dear R helpers Suppose I have a data.frame as given below - my_dat = data.frame(class = c("XYZ", "XYZ", "XYZ", "XYZ", "XYZ","ABC", "ABC", "ABC", "ABC", "ABC" ),  var1 = c(20, 14, 89, 81, 17, 44, 36, 41, 11, 36), var2 = c(1001, 250, 456, 740, 380, 641, 111, 209, 830, 920)) > my_dat    class var1...
2008 Mar 20
3
Break up a data frame
Hi R users, I have a dataframe in the below format xyz 01/03/2007 15.25 USD xyz 01/04/2007 15.32 USD xyz 01/02/2008 23.22 USD abc 01/03/2007 45.2 EUR abc 01/04/2007 45.00...
2009 Sep 17
2
What is the best way to get a subset of a data.frame?
...;y' by using x$x and x$y. I think that there might be better ways to do it (because, for example, we can use a_matrix[3:5,] to extract certain rows, where 'a_matrix' is a matrix). Can somebody let know what the best way is? > a=data.frame(x=1:10,y=rep("abc",10),z=rep("xyz",10)) > a x y z 1 1 abc xyz 2 2 abc xyz 3 3 abc xyz 4 4 abc xyz 5 5 abc xyz 6 6 abc xyz 7 7 abc xyz 8 8 abc xyz 9 9 abc xyz 10 10 abc xyz > b=data.frame(x=a$x, y=a$y) > b x y 1 1 abc 2 2 abc 3 3 abc 4 4 abc 5 5 abc 6 6 abc 7 7 abc 8 8 ab...
2012 Oct 30
1
mapply instead for loop
Hi all!   My question in about using mapply instead for loop. Below is a example with for loop: Is it posible to give same results with mapply function?   Thanks for help!   OV   x <- 1:10 y <- 1:10 xyz <- data.frame(expand.grid(x,y)[1], expand.grid(x,y)[2], z = rnorm(100)) names(xyz) <- c("x", "y", "z") head(xyz) size <- 2 output <- NULL   ### for loop   for(i in 1:dim(xyz)[1]){ x0 <- xyz[i, "x"] y0 <- xyz[i, "y"] xyzSel <- xy...
2012 Feb 20
3
Confused: Inconsistent result?
This is copy & paste from my session: > xyz<-as.vector(c(ls(),as.matrix(lapply(ls(),class)))) > dim(xyz)<-c(length(xyz)/2,2) > > allobj<-function(){ + xyz<-as.vector(c(ls(),as.matrix(lapply(ls(),class)))); + dim(xyz)<-c(length(xyz)/2,2); + return(xyz) + } > xyz       [,1]              [,2]        [1,] "a&quo...
2020 Feb 23
2
Mac OS and interpretation of @ in a username. Ex user@mds.xyz doesn't work on Mac OS but does on Win 10
...; already interpreted and the string split. >>>> >>>> Sorry! >>>> >>>> Andrew Bartlett" >>>> >>>> Yeah, wondering if there is a way to tell Samba NOT to split that >>>> up and >>>> treat joe at mds.xyz as a single user.? This works fine in Win 10 so I >>>> agree, it's probably a client SMB configuration issue but would >>>> like to >>>> know exactly what that config issue is. >>>> >>> >>> ?? + or what paramaters I could change...
2020 Feb 22
2
Mac OS and interpretation of @ in a username. Ex user@mds.xyz doesn't work on Mac OS but does on Win 10
...ts, so by the time Samba tries the process it the @ is > > already interpreted and the string split. > > > > Sorry! > > > > Andrew Bartlett" > > > > Yeah, wondering if there is a way to tell Samba NOT to split that up and > > treat joe at mds.xyz as a single user. This works fine in Win 10 so I > > agree, it's probably a client SMB configuration issue but would like to > > know exactly what that config issue is. > > > > + or what paramaters I could change to ensure the string isn't split up. You can...
2005 Jun 02
3
How to change all name of variables
...ot; "bp" "skin" "bmi" "ped" "age" "type" > I need to change the variables name , "npreg" "glu" "bp" "skin" "bmi" "ped" "age" "type" with "xyz.npreg" "xyz.glu" "xyz.bp" "xyz.skin" "xyz.bmi" "xyz.ped" "xyz.age" "xyz.type" How can I make this (automatically). I don't want to make manual with more 100 variables. I would be very happy if anyone could help me. T...