Displaying 5 results from an estimated 5 matches for "48fc".
Did you mean:
48dc
2016 Jun 24
2
SRV-records not replicated with BIND9_DLZ
...d 0 100 3268 addc1.example.net.
- ------------
So replication check was not working:
- ------------
root at addc1:~# samba-tool drs showrepl
==== INBOUND NEIGHBORS ====
DC=ForestDnsZones,DC=example,DC=net
Default-First-Site-Name\ADDC2 via RPC
DSA object GUID: 9fba93aa-5e34-48fc-826b-dddc24072883
Last attempt @ Fri Jun 24 12:42:40 2016 CEST failed,
result 2 (WERR_BADFILE)
23 consecutive failure(s).
Last success @ NTTIME(0)
- ------------
Trying to replicate dc1 with dc2
- ------------
root at addc1:~# samba-tool drs replicat...
2016 Jun 24
0
SRV-records not replicated with BIND9_DLZ
...-
>
> So replication check was not working:
> - ------------
> root at addc1:~# samba-tool drs showrepl
> ==== INBOUND NEIGHBORS ====
>
> DC=ForestDnsZones,DC=example,DC=net
> Default-First-Site-Name\ADDC2 via RPC
> DSA object GUID: 9fba93aa-5e34-48fc-826b-dddc24072883
> Last attempt @ Fri Jun 24 12:42:40 2016 CEST failed,
> result 2 (WERR_BADFILE)
> 23 consecutive failure(s).
> Last success @ NTTIME(0)
> - ------------
>
> Trying to replicate dc1 with dc2
> - -----------...
2002 Dec 05
1
Patch to ignore exluded files.
...Repartee is something we think of twenty-four hours too late.
-- Sam Clemens
GPG Public Key: http://www.vircio.com/pubkeys/bo-gpg.txt
FingerPrint: 8DE7 90F2 E10C 80BA 6CBB 327E 3754 DA73 71F2 8A1C
Acrobat Public Key: http://www.vircio.com/pubkeys/bo-acrobat.fdf
MD5 FingerPrint: 534D AEF7 69DF 48FC AE5E 45F8 AFC8 3DAB
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 189 bytes
Desc: This is a digitally signed message part
Url : http://lists.samba.org/archive/rsync/attachments/20021205/0d6436c7/attachment.bin
2010 Oct 31
1
R-help Digest, Vol 92, Issue 31
...-------------------
Message: 41
Date: Fri, 29 Oct 2010 12:25:21 -0400
From: David Winsemius <dwinsemius@comcast.net>
To: David Winsemius <dwinsemius@comcast.net>
Cc: r-help@r-project.org, dpender <d.pender@civil.gla.ac.uk>
Subject: Re: [R] Clustering
Message-ID: <0C0C943B-D729-48FC-95C5-42182C645A81@comcast.net>
Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes
On Oct 29, 2010, at 12:08 PM, David Winsemius wrote:
>
> On Oct 29, 2010, at 11:37 AM, dpender wrote:
>
>> Apologies for being vague,
>>
>> The structure of the outpu...
2008 Jun 06
6
Subsetting to unique values
I want to take the first row of each unique ID value from a data frame.
For instance
> ddTable <-
data.frame(Id=c(1,1,2,2),name=c("Paul","Joe","Bob","Larry"))
I want a dataset that is
Id Name
1 Paul
2 Bob
> unique(ddTable)
Will give me all 4 rows, and
> unique(ddTable$Id)
Will give me c(1,2), but not accompanied by the name column.