Displaying 20 results from an estimated 3000 matches similar to: "NT domain: errors in diagnostic tests 3 and 7+"
1999 Oct 02
0
NT won't start network
-----BEGIN PGP SIGNED MESSAGE-----
This is a strange problem, which I never used to have. Samba was
working fine for me until I changed the hostname of my Linux computer.
I changed all the configuration files on both Linux and Windows, so
the old hostname is definitely not lurking anywhere.
Now when I boot up Windows and I'm physically connected to the network
with the Samba server, the
1999 Jan 04
0
SAMBA digest 1928
samba@samba.org schrieb:
> SAMBA Digest 1928
>
> For information on unsubscribing see http://samba.org/listproc/
> Topics covered in this issue include:
>
> 1) Re: NT Logon Authentication
> by Gerald Carter <cartegw@Eng.Auburn.EDU>
> 2) Samba-> No [.] and [..] directories
> by Kai Schaeffer
2006 Feb 19
3
Cisco 7905 can't register
My Cisco 7905 can't register with Asterisk (1.0.7-BRIstuffed-0.2.0-RC7k
on Debian stable). It could, however, register with another
installation of Asterisk and the settings on the phone (apart from the
SIP proxy address) haven't changed since then.
On the new Asterisk box my sip.conf contains this:
[jeremy]
type=friend
regexten=801
allow=g729
host=dynamic
secret=PASSWORD
nat=yes
2016 Dec 12
0
RFC: Constructing StringRefs at compile time
Well, apparently clang has clang::StringLiteral in clang/AST/Expr.h
So, our options are either: Allow this name clash (obviously the namespaces
don't clash, only the names) and deal with it when it's an issue (which
will be limited to clang, and even then not very often), or choose a
different name.
Thoughts?
On Mon, Dec 12, 2016 at 11:53 AM Zachary Turner <zturner at google.com>
2016 Feb 19
4
should `data` respect default.stringsAsFactors()?
Hi Peter,
Sorry if I was not clear. Perhaps an example will make my point:
> data(iris)
> class(iris$Species)
[1] "factor"
> write.table(iris,'data/myiris.tab')
> data(myiris)
> class(myiris$Species)
[1] "factor"
> rm(myiris)
> options(stringsAsFactors = FALSE)
> data(myiris)
> class(myiris$Species)
[1] "factor"
>
2016 Feb 19
2
should `data` respect default.stringsAsFactors()?
Aha... Hadn't noticed that stringsAsFactors only works via as.is in read.table.
Yes, the doc should probably be fixed. The code probably not -- packages loading different data sets depending on user options is an even worse idea than hav?ng the option in the first place... (I don't mean having the possibility, I mean the default.stringsAsFactor thing).
In general, read.table() gets
2009 Aug 16
5
Plot(x,y)
Hi ,
I am using the plot function for some data , and the plot is coming back
pure black , with scales on the side .
Regards
Malcolm
[[alternative HTML version deleted]]
2016 Nov 29
4
RFC: Constructing StringRefs at compile time
On 29 November 2016 at 17:38, Zachary Turner <zturner at google.com> wrote:
> I see, but I looked over your proposed implementation from earlier in the
> thread, and if I'm not mistaken I see this:
That's a different suggestion.
> That said, what did you think about my other proposal of the complicated UDL
> with macro?
>
> #define LIT(x) x_string_ref_literal
>
2016 Dec 12
2
RFC: Constructing StringRefs at compile time
On Mon, Dec 12, 2016 at 1:03 PM Zachary Turner via llvm-dev <
llvm-dev at lists.llvm.org> wrote:
> Well, apparently clang has clang::StringLiteral in clang/AST/Expr.h
>
> So, our options are either: Allow this name clash (obviously the
> namespaces don't clash, only the names) and deal with it when it's an issue
> (which will be limited to clang, and even then not
2016 Nov 29
2
RFC: Constructing StringRefs at compile time
On 28 November 2016 at 19:30, Mehdi Amini <mehdi.amini at apple.com> wrote:
> This thread started with: "There is a desire to be able to create constexpr
> StringRefs to avoid static initializers for global tables of/containing
> StringRefs.”
>
> I don’t have more information, but maybe Malcolm can elaborate?
I was restating your motivation from
2016 Dec 12
4
RFC: Constructing StringRefs at compile time
I can. I'll whip something up today
On Fri, Dec 9, 2016 at 1:18 AM Malcolm Parsons <malcolm.parsons at gmail.com>
wrote:
> On 2 December 2016 at 17:12, James Y Knight <jyknight at google.com> wrote:
> > +1 from me for the StringLiteral proposal from a few messages back.
>
> Zachary, do you want to commit StringLiteral?
>
> --
> Malcolm Parsons
>
2018 Sep 17
0
Kyocera P6230cdn driver installation on print server fails
As you did see on the download location.
http://downloads.van-belle.nl/samba4/Patches/debian-S12761-s3-printing-Change-to-GUID-dir-if-we-deal-with-COPY.patch
Is a working fix. I've used that in lots of samba versions.
But i dont need the patch anymore, so i removed it from the builds.
You can try :
https://downloads.van-belle.nl/samba4/Kyocera/
Which is a customized driver made for me
2018 Sep 17
0
Kyocera P6230cdn driver installation on print server fails
Actually at van-belle it is 4.6.7 (or 4.6.9) for stretch.
On Mon, Sep 17, 2018 at 06:50:38PM +0200, Matthias via samba wrote:
> First of all, I forgot to mention, that I have Debian 9 with standard
> Samba 4.5.
>
> Modifying the oemsetup.inf should not be neccessary as I have set the
> os_major/minor to 6/0.
>
> The generic driver which comes with Windows is a Type 4 which
2013 Jan 15
14
[PATCH] VTD/Intremap: Disable Intremap on Chipset 5500/5520/X58 due to errata
http://www.intel.com/content/www/us/en/chipsets/5520-and-5500-chipset-ioh-specification-update.html
Stepping B-3 has two errata (#47 and #53) related to Interrupt
remapping, to which the workaround is for the BIOS to completely disable
interrupt remapping. These errata are fixed in stepping C-2.
Unfortunately this chipset is very common and many BIOSes are not
disabling remapping. We can
2016 Dec 12
0
RFC: Constructing StringRefs at compile time
> On Dec 12, 2016, at 3:45 PM, David Blaikie via llvm-dev <llvm-dev at lists.llvm.org> wrote:
>
>
>
> On Mon, Dec 12, 2016 at 1:03 PM Zachary Turner via llvm-dev <llvm-dev at lists.llvm.org <mailto:llvm-dev at lists.llvm.org>> wrote:
> Well, apparently clang has clang::StringLiteral in clang/AST/Expr.h
>
> So, our options are either: Allow this name
2018 Sep 17
2
Kyocera P6230cdn driver installation on print server fails
First of all, I forgot to mention, that I have Debian 9 with standard
Samba 4.5.
Modifying the oemsetup.inf should not be neccessary as I have set the
os_major/minor to 6/0.
The generic driver which comes with Windows is a Type 4 which should
not be supported by samba as far as I read.
I tried the van-belle driver. Same situation.
I have found samba 4.8 for stretch at http://apt.van-belle.nl.
2016 Feb 18
2
should `data` respect default.stringsAsFactors()?
Hiya,
Probably been debated elsewhere....
I note that R's `data` function does not respect default.stringsAsFactors
By my lights, it should, especially as it is documented to call read.table, which DOES respect.
Oh, but: http://r.789695.n4.nabble.com/stringsAsFactors-FALSE-tp921891p921893.html
Compelling. I have to agree.
So, I change my mind.
By my lights, `data` should then be
2016 Nov 29
2
RFC: Constructing StringRefs at compile time
char buffer[100];
And it also allows LIT(buffer) to compile, whereas the UDL doesn't.
On Tue, Nov 29, 2016 at 9:54 AM Mehdi Amini <mehdi.amini at apple.com> wrote:
>
> > On Nov 29, 2016, at 9:52 AM, Malcolm Parsons <malcolm.parsons at gmail.com>
> wrote:
> >
> > On 29 November 2016 at 17:38, Zachary Turner <zturner at google.com> wrote:
> >>
2004 Sep 16
0
Printing does not work
Hi,
I've tried unsuccessfully to get printing working under wine. I use wine
version 20040309 on Debian unstable. I use cups for printing and it works
without problems. According to the wine doc, I did not add any entries to the
wine config file or to the registry.
My printcap file looks like this:
kyocera|Kyocera FS-1500:rm=sbs93:rp=kyocera:
phaser|phaser:rm=sbs93:rp=phaser:
When I
2016 Nov 29
2
RFC: Constructing StringRefs at compile time
On 28 November 2016 at 20:51, Zachary Turner via llvm-dev
<llvm-dev at lists.llvm.org> wrote:
> The basic idea here is that you introduce a StringLiteral class and anywhere
> you want to use a global constructor, you make sure to declare a constexpr
> array instead of a normal array, and you make it of type StringLiteral.
I prefer constexpr llvm_strlen() over StringLiteral because