Displaying 20 results from an estimated 47 matches for "3778".
Did you mean:
378
2003 Dec 13
1
Can't login
...onScript
sambaProfilePath description sambaUserWorkstations sambaSID
sambaPrimaryGroupSID sambaLMPassword sambaNTPassword sambaDomainName
objectClass sambaAcctFlags
Dec 13 16:52:41 mail slapd[18817]: conn=3777 op=3 SEARCH RESULT tag=101
err=0 nentries=0 text=
Dec 13 16:52:41 mail slapd[18813]: conn=3778 fd=37 ACCEPT from
IP=10.1.1.3:42894 (IP=0.0.0.0:389)
Dec 13 16:52:41 mail slapd[18816]: conn=3778 op=0 BIND
dn="uid=domainReadOnly,ou=domainUsers,dc=localsurface,dc=com" method=128
Dec 13 16:52:41 mail slapd[18816]: conn=3778 op=0 BIND
dn="uid=domainReadOnly,ou=domainUsers,dc=localsu...
2006 May 15
2
DO NOT REPLY [Bug 3778] New: rsync triggers ( pre/post xter scripts )
https://bugzilla.samba.org/show_bug.cgi?id=3778
Summary: rsync triggers ( pre/post xter scripts )
Product: rsync
Version: 2.6.8
Platform: Sparc
OS/Version: Windows XP
Status: NEW
Severity: major
Priority: P3
Component: core
AssignedTo: wayned@sam...
2016 Mar 30
2
Instruction selection pattern for intrinsic returning llvm_any_ty
...trying to return multiple values?
Yes, the intrisic returns a record
%rec6 = type { i16, i16 }
so at instructions selection the original call
%_tmp3 = call %rec6 @llvm.phx.divm.u16.rec6(i16 %_tmp1, i16 %_tmp2)
has been lowered to
t6: i16,i16 = llvm.phx.divm.u16 TargetConstant:i16<3778>, t2, t4
and the instruction I want to select also returns two values
def divm16_pseudo : MyPseudoInst<
(outs aNh_0_7:$dst, aNh_0_7:$dst2),
(ins aNh_0_7:$src1, aNh_0_7:$src2)>;
Both outs are i16.
/Mikael
2003 Aug 13
1
means comparison with seasonal time series?
...nd
dry-wet boundaries.
What would be a way to ask my questions in R? I'm still learning R (and
statistics) so detailed answers would be most appreciated.
Sincerely,
Douglas Scofield Department of Biology
d.scofield at umiami.edu University of Miami
off: (305) 284-3778 P.O. Box 249118
fax: (305) 284-3039 Coral Gables, FL 33124-0421
2003 Sep 08
1
1.7.1 console unresponsive following "paste into"
...restore it, it
works *sometimes*. And this is not particular to Word, as I just pasted
the above lines from this Outlook window and the same problem occurred.
Sincerely,
Douglas Scofield Department of Biology
d.scofield at umiami.edu University of Miami
off: (305) 284-3778 P.O. Box 249118
fax: (305) 284-3039 Coral Gables, FL 33124-0421
2016 Mar 30
2
Instruction selection pattern for intrinsic returning llvm_any_ty
...can get around this?
Before ISel the call to my intrisic looks like
%_tmp3 = call %rec6 @llvm.phx.divm.u16.rec6(i16 %_tmp1, i16 %_tmp2)
and %rec6 is
%rec6 = type { i16, i16 }
Then at ISel, before selection the call is lowered to
t6: i16,i16 = llvm.phx.divm.u16 TargetConstant:i16<3778>, t2, t4
which fits nicely to my divm16_pseudo that I want to select.
Is there any way I can select this with a tablegen pattern, and not
having to do selection "manually" in my target's
MytargetDAGToDAGISel::Select function?
I'm having a bunch of intrisics looking like th...
2016 Mar 30
0
Instruction selection pattern for intrinsic returning llvm_any_ty
...intrisic returns a record
>
> %rec6 = type { i16, i16 }
>
> so at instructions selection the original call
>
> %_tmp3 = call %rec6 @llvm.phx.divm.u16.rec6(i16 %_tmp1, i16 %_tmp2)
>
> has been lowered to
>
> t6: i16,i16 = llvm.phx.divm.u16 TargetConstant:i16<3778>, t2, t4
>
> and the instruction I want to select also returns two values
>
> def divm16_pseudo : MyPseudoInst<
> (outs aNh_0_7:$dst, aNh_0_7:$dst2),
> (ins aNh_0_7:$src1, aNh_0_7:$src2)>;
>
> Both outs are i16.
>
> /Mikael
>
The intrinsic itsel...
2005 Jan 28
1
Weird IP's in WINS
...become more reliable. Does it look like this might be the right
track? I tried manually removing those addresses from the file, but they
re-appeared after restarting nmbd...
--
-Best Regards-
-Quentin Hartman-
Technology Coordinator
South Lane School District 45j3
Cottage Grove, Oregon
(541)767-3778
http://www.slane.k12.or.us
2016 Dec 18
5
Building on debian 8.6
...segmentation fault. Are there logs from the build process that I could
look at, to try and figure out what's failing?
user at newserver:~/download/samba-4.5.2$ make distclean && ./configure && make
[...]
[3777/3902] Linking default/source4/ldap_server/libservice_module_ldap.so
[3778/3902] Linking default/source4/wrepl_server/libservice_module_wrepl.so
[3779/3902] pidl.1p: pidl/pidl -> bin/default/pidl/pidl.1p
[3780/3902] Parse::Pidl::Dump.3pm: pidl/lib/Parse/Pidl/Dump.pm ->
bin/default/pidl/Parse::Pidl::Dump.3pm
[3781/3902] Parse::Pidl::Wireshark::Conformance.3pm:
pidl/l...
2016 Mar 30
2
Instruction selection pattern for intrinsic returning llvm_any_ty
...t;> %_tmp3 = call %rec6 @llvm.phx.divm.u16.rec6(i16 %_tmp1, i16 %_tmp2)
>>
>> and %rec6 is
>>
>> %rec6 = type { i16, i16 }
>>
>> Then at ISel, before selection the call is lowered to
>>
>> t6: i16,i16 = llvm.phx.divm.u16 TargetConstant:i16<3778>, t2, t4
>>
>> which fits nicely to my divm16_pseudo that I want to select.
>>
>> Is there any way I can select this with a tablegen pattern, and not having to do selection "manually" in my target's MytargetDAGToDAGISel::Select function?
>>
>> I&...
2016 Apr 21
2
clock24.plot/radial plot
.../02 22:00 3956
2005/01/02 23:00 3975
2005/01/03 00:00 3946
2005/01/03 01:00 3944
2005/01/03 02:00 3915
2005/01/03 03:00 3901
2005/01/03 04:00 3893
2005/01/03 05:00 3854
2005/01/03 06:00 3824
2005/01/03 07:00 3790
2005/01/03 08:00 3770
2005/01/03 09:00 3794
2005/01/03 10:00 3778
2005/01/03 11:00 3803
2005/01/03 12:00 3801
2005/01/03 13:00 3800
2005/01/03 14:00 3783
2005/01/03 15:00 3789
2005/01/03 16:00 3804
2005/01/03 17:00 3781
2005/01/03 18:00 3785
2005/01/03 19:00 3772
2005/01/03 20:00 3777
2005/01/03 21:00 3766
2005/01/03 22:00 3775
2005/01/03...
2016 Mar 30
0
Instruction selection pattern for intrinsic returning llvm_any_ty
...to my intrisic looks like
>
> %_tmp3 = call %rec6 @llvm.phx.divm.u16.rec6(i16 %_tmp1, i16 %_tmp2)
>
> and %rec6 is
>
> %rec6 = type { i16, i16 }
>
> Then at ISel, before selection the call is lowered to
>
> t6: i16,i16 = llvm.phx.divm.u16 TargetConstant:i16<3778>, t2, t4
>
> which fits nicely to my divm16_pseudo that I want to select.
>
> Is there any way I can select this with a tablegen pattern, and not having to do selection "manually" in my target's MytargetDAGToDAGISel::Select function?
>
> I'm having a bunch...
2007 May 02
1
Asterisk locked up
...2 DEBUG[10853] app_voicemail.c: VM-Duration: duration is: 48
seconds converted to: 0 minutes
May 2 11:38:12 DEBUG[10853] channel.c: Scheduling timer at 160 sample
intervals
May 2 11:38:14 VERBOSE[10853] logger.c: -- Playing 'vm-deleted'
(language 'en')
May 2 11:38:14 DEBUG[3778] chan_sip.c: Stopping retransmission on
'ae9ff3814cc6ecc905ac93af7ed1f647@192.168.125.109' of Request 9948: Match
Found
May 2 11:38:14 DEBUG[3778] chan_sip.c: Stopping retransmission on
'0142e3688d28a33bb8dc15ded295c8f9@192.168.125.109' of Request 9820: Match
Found
May 2 11:38:...
2016 Mar 30
2
Instruction selection pattern for intrinsic returning llvm_any_ty
...t;> %rec6 = type { i16, i16 }
>>
>> so at instructions selection the original call
>>
>> %_tmp3 = call %rec6 @llvm.phx.divm.u16.rec6(i16 %_tmp1, i16 %_tmp2)
>>
>> has been lowered to
>>
>> t6: i16,i16 = llvm.phx.divm.u16 TargetConstant:i16<3778>, t2, t4
>>
>> and the instruction I want to select also returns two values
>>
>> def divm16_pseudo : MyPseudoInst<
>> (outs aNh_0_7:$dst, aNh_0_7:$dst2),
>> (ins aNh_0_7:$src1, aNh_0_7:$src2)>;
>>
>> Both outs are i16.
>>
>&...
2016 Apr 22
0
clock24.plot/radial plot
...3 00:00 3946
> 2005/01/03 01:00 3944
> 2005/01/03 02:00 3915
> 2005/01/03 03:00 3901
> 2005/01/03 04:00 3893
> 2005/01/03 05:00 3854
> 2005/01/03 06:00 3824
> 2005/01/03 07:00 3790
> 2005/01/03 08:00 3770
> 2005/01/03 09:00 3794
> 2005/01/03 10:00 3778
> 2005/01/03 11:00 3803
> 2005/01/03 12:00 3801
> 2005/01/03 13:00 3800
> 2005/01/03 14:00 3783
> 2005/01/03 15:00 3789
> 2005/01/03 16:00 3804
> 2005/01/03 17:00 3781
> 2005/01/03 18:00 3785
> 2005/01/03 19:00 3772
> 2005/01/03 20:00 3777
> 2005...
2016 Apr 22
2
clock24.plot/radial plot
...3944
>> 2005/01/03 02:00 3915
>> 2005/01/03 03:00 3901
>> 2005/01/03 04:00 3893
>> 2005/01/03 05:00 3854
>> 2005/01/03 06:00 3824
>> 2005/01/03 07:00 3790
>> 2005/01/03 08:00 3770
>> 2005/01/03 09:00 3794
>> 2005/01/03 10:00 3778
>> 2005/01/03 11:00 3803
>> 2005/01/03 12:00 3801
>> 2005/01/03 13:00 3800
>> 2005/01/03 14:00 3783
>> 2005/01/03 15:00 3789
>> 2005/01/03 16:00 3804
>> 2005/01/03 17:00 3781
>> 2005/01/03 18:00 3785
>> 2005/01/03 19:00 3772
&g...
2016 Mar 30
0
Instruction selection pattern for intrinsic returning llvm_any_ty
> On Mar 30, 2016, at 11:35, Mikael Holmén <mikael.holmen at ericsson.com> wrote:
>
> i16 (divm16_pseudo …)
>
> stuff?
>
> I've tried
> (i16, i16 (divm16_pseudo i16:$src1, i16:$src2)
> and
> ((i16, i16) (divm16_pseudo i16:$src1, i16:$src2)
> and a few other variants without managing to get it through.
>
> Thanks again,
> Mikael
Are you
2003 Aug 23
1
filling a matrix who's entries are a function of the indices?
...<- matrix(0, k, k)
for (A in 1:k) {
for (B in 1:k) {
Q[A,B] <- my.function(A,B)
}
}
but I wonder if there is a more terse way.
Regards,
Douglas Scofield Department of Biology
d.scofield at umiami.edu University of Miami
off: (305) 284-3778 P.O. Box 249118
fax: (305) 284-3039 Coral Gables, FL 33124-0421
2007 Jun 01
0
Okay, new question - dealing w/ logging in restrictions (controller?)
Hey all, so if you read my previous thing about nested routes - I''m
just not going to do with them anymore.
Anyway, so my controller has a before_filter on the edit action; which
checks to see if the current post''s user, is the same as the currently
logged in user, if true then they can edit, otherwise not.
def check_user
if current_user.login != @post.user.login
2010 Aug 29
1
evil disconnect of call with cisco 1760
...al packet" being missed.
I read doc/sip-retransmit.txt and I don't see anything there that is
helpful to my situation - the asterisk box is on the same subnet as the
c1700; there are no nat/firewalls/sbcs in the middle.
at ~15:15 the asterisk console reads:
WARNING[2492]: chan_sip.c:3778 retrans_pkt: Maximum retries exceeded
on transmission CB674A02-B25C11DF-B6D5A08D-652FE73E at 10.9.1.9 for seqno
102 (Critical Request) -- See doc/sip-retransmit.txt.
WARNING[2492]: chan_sip.c:3805 retrans_pkt: Hanging up call
CB674A02-B25C11DF-B6D5A08D-652FE73E at 10.9.1.9 - no reply to our cr...