search for: elmt

Displaying 5 results from an estimated 5 matches for "elmt".

Did you mean: elm
2018 Apr 13
0
VPN remote Samba AD DC not located
...was made with the option "--dns-backend=BIND9_DLZ" a few years ago.   On the local location (1)  "samba-tool domain provision" was made with the option "--dns-backend=SAMBA_INTERNAL" recently.   Now, how can I confirm this to be sure? > First thing, is company.elmts a registered domain name ?   "company.elmts" is "iodesoft.lan" > if so, I would use a subdomain of this instead e.g. ad.company.elmts   I don't see why.   I've read it is possible to have one DNS domain name not two or more.   I think it would be very difficu...
2018 Apr 13
1
DNS backend SAMBA_INTERNAL name resolution through VPN
...es resolution work first through the VPN. The DNS servers are Samba internal DNS servers. During the provision, SAMBA_INTERNAL was chosen. +---------------------------+ | SUBNET: 192.168.1.0/24 +---------------------------+ | SAMBA AD DC DNS server 1 +---------------------------+ | DOMAIN: company.elmts +---------------------------+ | hostname_1_1 | hostname_1_2 | ... | hostname_1_N1 +---------------------------+ | | | VPN | | | +--------------------------+ | SUBNET: 192.168.2.0/24 +--------------------------+ | SAMBA AD DC DNS server 2 +--------------------------+ | DOMAIN: company.elmts +------...
2009 Jan 05
1
can't get names of R_env
...is of length:%d\n",length(list)); for (i = 0; i < length(list); i++) Rprintf("name of id:%d\t%s\n",i,CHAR(STRING_ELT(names, i))); } ----------------------- This is basicly just a copy of ----------------------- static SEXP getListElement(SEXP list, char *str) { SEXP elmt = R_NilValue, names = getAttrib(list, R_NamesSymbol); int i; for (i = 0; i < length(list); i++) if (strcmp(CHAR(STRING_ELT(names, i)), str) == 0) { elmt = VECTOR_ELT(list, i); break; } return elmt; } ----------------------- But this crashes and looks like ---------------...
2001 Sep 27
1
Passing an R matrix to a C program
...9;ve undertood that this is recommended to handle lists (am I wrong?). My problem is that I can pass the matrix as a vector, but not as a 2D array. For example, in the following simple C program: #include <R.h> #include <Rdefines.h> SEXP printListElement(SEXP list, SEXP stat) { SEXP elmt = R_NilValue, names = getAttrib(list, R_NamesSymbol); int i; double g1, g2, g3, s1, s2, s3; for (i = 0; i < length(list); i++) { elmt = VECTOR_ELT(list, i); g1 = REAL(VECTOR_ELT(list, i))[0]; s1 = REAL(stat)[12]; printf("%ld %f %f \n", i, g1, s1); } return elmt; } I can get the...
2007 Sep 13
1
rearrange problem
Hi All, I am trying to rearrange alphabetically each element in a character vector. ex: say the first element in the vector is "cba", and my goal is to turn it into "abc". The suggested function to use is sort(). But it turns out that sort doesn't work at the level of element. So I am wondering that if there is an alternative function for this purpose. Please help me out .