Displaying 10 results from an estimated 10 matches for "example_".
Did you mean:
example
2005 Feb 28
1
Interdomain trust problem
...omain account. Error was NT_STATUS_LOGON_FAILURE
The same exact thing happens the opposite way. No real error messages that I
can find in any log files.
Can someone please tell me the step I am missing?
Thanks,
Misty
PS - John, it would be great if you could update chapter 16 of _Samba 3 By
Example_ to include steps for establishing interdomain trusts when using LDAP
backend, because it is not immediately obvious to me what to do.
2009 Nov 09
3
Hand-crafting an .RData file
Hello,
I frequently have to export a large quantity of data from some
source (for example, a database, or a hand-written perl script) and then
read it into R. This occasionally takes a lot of time; I'm usually using
read.table("filename",comment.char="",quote="") to read the data once it is
written to disk.
However, I *know* that the program that generates
2010 Nov 12
2
pending tests fail when I switch to mock_with :mocha
First of all, please direct me into how better to search existing threads in
this mailing list.
Ok to my rspec 2.0.1 mocha 0.9.8 issue:
given a controller test
before do
subject.expects(:authenticate).once
end
it "should bla bla" do
pending "PENDING, shouldn''t fail?"
end
with
config.mock_with :rspec
it''s ok: pending, but with
2006 Oct 04
1
strip function
Hi,
I would like to asign titles into strip of a panel of curves designed
thanks to a xyplot function (lattice package)
I ve tried the "strip" function, ...
here is my code
I would like to write in the strip of each panel conditionning varialbe
(here, it is data[,1])
xyplot (data[,3] ~ data[,2] | data[,1] , strip.default (which.given=1,
which.panel = c(1:15), var.name= c
2005 Oct 12
4
Downgrade from 3 to 2 suggestions
After considerable experimentation I'm forced to accept that Samba 3 has
problems with the combination of being a domain member, the 2.6 kernel,
and Dell 2850 hardware. It works fine on the 2.4 kernels but fails on
all the 2.6 versions I have avaialble for testing. I have one machine
that I really prefer could stay at 2.6 so my last resort there is to try
a downgrade to samba 2.X
In the
2015 Mar 16
0
Fwd: Fail to set up UEFI syslinux on ArchLinux USB Flash Drive
...rg/archives/2013-April/019817.html
which turned out to be a bug,
http://www.syslinux.org/archives/2013-April/019822.html
So you cannot blame me for expecting the same patience, expertise
and help in troubleshooting this new problem first with Syslinx
and, if need be, later with ArchLinux.
_As an example_, we might discover ArchLinux do not have the latest
UEFI files/docummentation from you.
So please bear with me for the time being.
2.
>> In BIOS, select ArchLinux entry
> Just a minor detail (but it helps for understanding each other)...
> You probably mean "in UEFI firmware"...
2018 Nov 27
3
[RFC] Tablegen-erated GlobalISel Combine Rules
Hi All,
I've more or less finished updating the examples to the DAG style we were talking about. Hopefully I haven't forgotten anything, there was a lot to keep track of :-). Overall, I think there's a couple places where things get a a little awkward (mainly debug info) but things generally look good to me.
A Simple Example
def : GICombineRule<(defs reg:$D, reg:$S),
2015 Mar 14
4
Fail to set up UEFI syslinux on ArchLinux USB Flash Drive
Trying to set up UEFI Syslinux boot on an ArchLinux USB 4GB stick.
- Host system: 64-bit Ubuntu 14.10 on 56 GB hard drive
- Hardware: ASUS P8H77-I, Bios v1101, i7-3770 at 3.40 GHz, 16 GB DDR3
- ArchLinux Instructions followed:
https://wiki.archlinux.org/index.php/Syslinux#UEFI_Systems >
? ?
2. UEFI Systems > 2.2 Installation
- Arch syslinux v.6.03
196352 Oct 13 22:25 /usr/sbin/syslinux
2017 Aug 10
3
Creating New Variable Using Ifelse
Hello R Help List,
I am an R novice and trying to use the ifelse function to create a new binary variable based off of the responses of two other binary variables; NAs are involved. I pulled it off almost successfully, but when I checked the counts of my new variable for accuracy, I found that a small portion of the NA cases were not being passed through as NAs, but as "0" counts in my
2018 Nov 30
2
[RFC] Tablegen-erated GlobalISel Combine Rules
...talking about. Hopefully I haven't forgotten anything, there was a lot to keep track of :-). Overall, I think there's a couple places where things get a a little awkward (mainly debug info) but things generally look good to me.
>
> That's awesome :)
>
>
>> _A Simple Example_
>> def : GICombineRule<(defs reg:$D, reg:$S),
>> (match (G_ZEXT s32:$t1, s8:$S),
>> (G_TRUNC s16:$D, s32:$t1)),
>> (apply (G_ZEXT s16:$D, s8:$S))>;
>> This has been converted to the style that fit...