Displaying 20 results from an estimated 133 matches for "estr".
Did you mean:
est
2006 Sep 14
3
converting strings to expressions
Hi,
consider this:
--------------
estr <- c("2^4", "alpha[1]")
eexp <- expression(2^4, alpha[1])
## Is it possible to get 'eexp' starting from 'estr'? The closest I could
## get was:
do.call(expression, lapply(estr, as.name))
## but it is not quite the same; e.g. the following behave differe...
2019 Jan 21
2
--server options
...lso am writing a wrapper, so that I can run multiple dirvish runs
against the same server, using forced commands, but without using
multiple keys to get multiple commands, which is my current workaround.
But in the interests of locking things down, I'd like to know what the
options are in the -eSTRING section, so I can choose which to
allow/force. Is that documented anywhere? Or do I have to resort to the
source?
And/or can I safely assume that anything in the -eSTRING won't let a
client get any more than I intended? Does the STRING just run from after
the -e to the next whitespace?
Tha...
2011 Aug 24
0
library REEMtree => Error in estRE[toString(uniqueID[i]), 1] : incorrect number of dimensions
Hi List,
I'm having this problem when trying to use the PREDICT function.
Here is a way to reproduce the error
library(REEMtree)
data(simpleREEMdata)
REEMresult<-REEMtree(Y~D+t+X, data=simpleREEMdata, random=~1|ID/D)
predict(REEMresult, simpleREEMdata, id = simpleREEMdata$ID/simpleREEMdata$D, EstimateRandomEffects=TRUE)
As far as I understand the problem is that I'm not being
2020 Jul 14
2
Replication only working one way
...netcmd/drs.py", line 386, in
run
drs_utils.sendDsReplicaSync(server_bind, server_bind_handle,
source_dsa_guid, NC, req_options)
File "/usr/lib/python2.7/dist-packages/samba/drs_utils.py", line 85, in
sendDsReplicaSync
raise drsException("DsReplicaSync failed %s" % estr)
and when I go the other way I get a different error:
sudo samba-tool drs replicate genesis luke DC=kcs,DC=local -Udomainadmin
.
.
ERROR(<class 'samba.drs_utils.drsException'>): DsReplicaSync failed -
drsException: DsReplicaSync failed (8453, 'WERR_DS_DRA_ACCESS_DENIED')...
2013 Feb 09
2
character strings with embedded commands: perl "/gee" ?
dear R experts---I am trying to replicate a perl feature. I want to be
able to embed R commands inside a character string, and have the
string be printed with the command executed. my perl equivalent is
my $a=10;
my $teststring = "the expression, $a+1, is ::$a+1::, but add one
more for ::$a+2::\n";
$teststring =~ s/::(.*?)::/$1/gee;
print $teststring;
of course, R does not use
2016 Dec 10
1
can't replicate ForestDnsZones and DomainDnsZones
...quot;, line
368, in run
drs_utils.sendDsReplicaSync(server_bind, server_bind_handle,
source_dsa_guid, NC, req_options)
File "/usr/local/samba/lib64/python2.7/site-packages/samba/drs_utils.py",
line 83, in sendDsReplicaSync
raise drsException("DsReplicaSync failed %s" % estr)
pdc:~ # samba-tool drs replicate bdc pdc
DC=DomainDnsZones,DC=tidykzn,DC=local
ERROR(<class 'samba.drs_utils.drsException'>): DsReplicaSync failed -
drsException: DsReplicaSync failed (8437, 'WERR_DS_DRA_INVALID_PARAMETER')
File
"/usr/local/samba/lib64/python2.7/site-p...
2020 Jul 14
2
Replication only working one way
...netcmd/drs.py", line 386, in
run
drs_utils.sendDsReplicaSync(server_bind, server_bind_handle,
source_dsa_guid, NC, req_options)
File "/usr/lib/python2.7/dist-packages/samba/drs_utils.py", line 85, in
sendDsReplicaSync
raise drsException("DsReplicaSync failed %s" % estr)
However, new users I create on either genesis or luke replicate to the
other with no problems.
I have no idea what is wrong or how to go about fixing it. Can anyone help?
2008 Feb 21
1
Save a group of matrix
Hello, I'm creating a loop to work with vegan, to get a species abundance curve. Here I send the script I've created and also an excel file to prove what it can do.
Well, I have a database with 20 years, and each year we have sampled 19 stratum, and in each estratum we have carry out some sumpling. Then, with the script that I've sent I've got to calculate the species abundance curve for each stratum but only for one year. I want to be able to do this for the 20 years sampled but separately, obtaining one independent matrix for each year, but I don...
2015 Dec 03
2
DRS_The specified I/O operation on %hs was not completed before the time-out period expired.'
...md/drs.py", line 345, in run
drs_utils.sendDsReplicaSync(self.drsuapi, self.drsuapi_handle, source_dsa_guid, NC, req_options)
File "/usr/lib64/python2.7/site-packages/samba/drs_utils.py", line 83, in sendDsReplicaSync
raise drsException("DsReplicaSync failed %s" % estr)
Best regards,
DMITRIY LUCHKO
2014 Nov 02
1
drs replicate to Windows 2003 DC fails with WERR_DS_INSUFFICIENT_ATTR_TO_CREATE_OBJECT and WERR_DS_DRA_ACCESS_DENIED
...rs.py", line
345, in run
drs_utils.sendDsReplicaSync(self.drsuapi, self.drsuapi_handle,
source_dsa_guid, NC, req_options)
File "/usr/lib/python2.7/dist-packages/samba/drs_utils.py", line 83,
in sendDsReplicaSync
raise drsException("DsReplicaSync failed %s" % estr)
I've tried samba-tool dbcheck. It found 2 errors.
fs1.pearl.local:~# samba-tool dbcheck
Checking 658 objects
ERROR: orphaned backlink attribute 'authOrigBL' in
CN=DiscoverySearchMailbox
{D919BA05-46A6-415f-80AD-7E09334BB852},CN=Users,DC=pearl,DC=local for
link authOrig in CN=Disc...
2013 Feb 26
1
Light Libraries
...help wants to try it out, here are some background
routines:
original.is.vector <- is.vector
is.vector <- function( x, mode ="any", length =(-1) ) {
(original.is.vector(x, mode=mode)) %or% return(FALSE)
((length<0) | (length(x)==length)) %or% return(FALSE)
TRUE
}
## abort.estring should:
## [a] add the name of the preceding invoking function at the start of
the error message, preferably with source line number
## so, the user would see an error like
## * lagseries:52:: Need more observations than 1*
## [b] evaluate every {{ }} construct and insert ou...
2014 May 06
2
Replication problems
...tcmd/drs.py", line 345, in run
??? drs_utils.sendDsReplicaSync(self.drsuapi, self.drsuapi_handle, source_dsa_guid, NC, req_options)
? File "/usr/lib/python2.7/dist-packages/samba/drs_utils.py", line 83, in sendDsReplicaSync
??? raise drsException("DsReplicaSync failed %s" % estr)
?
When?did this happen, im thinking,? added 1 computer, added the zarafa schema (7.1.9), until here no errors. ( yesterday )
Today i did setup my DNS zones, and i was creating OU's, created 2 users.
?
then i check my samba logs again and was supprised to see this?message:
?
[2014/05/06 09:12...
2019 Nov 03
2
DC with outdated secrets
...n run
> drs_utils.sendDsReplicaSync(server_bind, server_bind_handle,
> source_dsa_guid, NC, req_options)
> File "/usr/lib64/python2.7/site-packages/samba/drs_utils.py", line
> 87, in
> sendDsReplicaSync
> raise drsException("DsReplicaSync failed %s" % estr)
>
> Did I miss anything?
Did you run this on each DC? --local ignores the target DC argument
and forces the replication into the local DB, whatever that happens to
be.
If you ran this on DC3 then "samba-tool drs replicate DC1 DC3" is
really "samba-tool drs replicate DC3 DC...
2020 Feb 10
4
samba_kcc issue after joining the domain as a DC
...kcc/kcc_utils.py", line 87, in load_nc
scope=ldb.SCOPE_BASE, attrs=attrs)
_ldb.LdbError: (32, 'No such Base DN: DC=DomainDnsZones,DC=domain,DC=com')
...
File "/usr/local/samba/lib64/python3.6/site-packages/samba/kcc/kcc_utils.py", line 92, in load_nc
(self.nc_dnstr, estr))
samba.kcc.kcc_utils.KCCError: Unable to find naming context (DC=DomainDnsZones,DC=domain,DC=com) - (No such Base DN: DC=DomainDnsZones,DC=domain,DC=com)
I joined the domain with the following command:
samba-tool domain join domain.com DC -k yes --dns-backend NONE --server=vm-dc1.domain.com
vm-d...
2014 Mar 24
1
Domain demote fails
...ot;, line 647, in run
sendDsReplicaSync(drsuapiBind, drsuapi_handle, ntds_guid, str(part), drsuapi.DRSUAPI_DRS_WRIT_REP)
File "/usr/local/samba/lib/python2.7/site-packages/samba/drs_utils.py", line 83, in sendDsReplicaSync
raise drsException("DsReplicaSync failed %s" % estr)
Regards
Jochen
2024 Jan 03
1
{Device Timeout} The I/O operation specified in %hs was not completed before the timeout period expired
.../netcmd/drs.py", line 567, in
run
drs_utils.sendDsReplicaSync(server_bind, server_bind_handle,
source_dsa_guid, NC, req_options)
File "/usr/lib/python3/dist-packages/samba/drs_utils.py", line 100, in
sendDsReplicaSync
raise drsException("DsReplicaSync failed %s" % estr)
Full -d10 on pastebin below
https://pastebin.com/raw/ihUSBN93
What does this "{Device Timeout} The I/O operation specified in %hs was not
completed before the timeout period expired." mean?
--
Elias Pereira
2018 Feb 07
1
Samba Migration and AD integration
On Wed, 7 Feb 2018 10:02:10 +0000
Praveen Ghimire <PGhimire at sundata.com.au> wrote:
> Hi Rowland,
>
> Following the
> https://wiki.samba.org/index.php/Changing_the_DNS_Back_End_of_a_Samba_AD_DC,
> ran some tests migrating from Bind9 to Samba Internal with the
> following results
>
> Stopped the BIND, Samba-AD-DC services
>
> samba_upgradedns
2020 Oct 21
1
Replication fails with (WERR_GEN_FAILURE)
...netcmd/drs.py", line 568,
in run
drs_utils.sendDsReplicaSync(server_bind, server_bind_handle,
source_dsa_guid, NC, req_options)
File "/usr/lib/python2.7/dist-packages/samba/drs_utils.py", line 88,
in sendDsReplicaSync
raise drsException("DsReplicaSync failed %s" % estr)
-------------
On the second DC I got an errormessage in both directions:
-------------
root at addc-02:~# samba-tool drs replicate addc-02 addc-01 dc=example,dc=net
ERROR(<class 'samba.drs_utils.drsException'>): DsReplicaSync failed -
drsException: DsReplicaSync failed (31, 'WER...
2018 Aug 07
2
setting up a RODC
...netcmd/drs.py", line 389,
in run
drs_utils.sendDsReplicaSync(server_bind, server_bind_handle,
source_dsa_guid, NC, req_options)
File "/usr/lib/python2.7/dist-packages/samba/drs_utils.py", line 87,
in sendDsReplicaSync
raise drsException("DsReplicaSync failed %s" % estr)
-----------
With "journalctl -f" open I see:
-----------
Aug 07 15:16:34 rodc-01 samba[518]: task[dcesrv][518]: [2018/08/07
15:16:34.805062, 0]
../source4/rpc_server/drsuapi/drsutil.c:109(drs_security_level_check)
Aug 07 15:16:34 rodc-01 samba[518]: task[dcesrv][518]: DsReplicaSync...
2014 Jan 16
1
Replication errors (WERR_DS_DRA_SCHEMA_MISMATCH)
...ine 345, in run
drs_utils.sendDsReplicaSync(self.drsuapi, self.drsuapi_handle,
source_dsa_guid, NC, req_options)
File
"/usr/local/samba/lib64/python2.6/site-packages/samba/drs_utils.py",
line 83, in sendDsReplicaSync
raise drsException("DsReplicaSync failed %s" % estr)
##################################
Here's what I see on one of the Windows 2008R2 DC's, name=Stilton:
##################################
C:\Users\Administrator>repadmin /showrepl
Repadmin: running command /showrepl against full DC localhost
Default-First-Site-Name\STILTON
DSA Options...