Displaying 20 results from an estimated 200 matches similar to: "Windows 2000 printer sharing"
2001 Apr 26
3
Installing smooth.spline command
Hello
I have installed R-0.90.1 on my Linux (Redhat 6.2) machine,
unfortunately I am not able to use a number of commands like e.g.
smooth.spline and predict.smooth.spline.
The error messages being given by is:
Error: Object "smooth.spline" not found
With the command library() I have checked or the libraries for the
smoothing functions are there, as shown below.
--------
>
2017 Jan 20
2
Re: Controlling the name of the 'tap0' device, in a bridged networking setup
Thanks !! This clarifies completely what is happening. I'll look into
running virsh as root/attaching to qemu:///system. Or, perhaps I can
'statically' create tun devices, to which the domains attach when started
(although I have no idea weather this is possible).
Best,
Govert
2017-01-17 20:46 GMT+01:00 Laine Stump <laine@laine.org>:
> On 01/14/2017 06:30 AM, Govert wrote:
2005 Nov 02
0
connecting to windows server 2003 with samba 3.0.9
I have a Windows server 2003 Domain controller with a share called
DC02Data.
I can connect to this share successfully from several RedHat boxes,
running samba 2.2.7.
However, on several other RedHat machines, running samba 3.0.9 I cannot
connect properly. In fact, I actually seem able to establish a mount
successfully, but cannot then view the files, as shown below:
[root@ixapp01 mnt]#
2017 Jan 14
2
Controlling the name of the 'tap0' device, in a bridged networking setup
Hi,
I'm trying to control the name of the 'tap0' device that gets created as I
start a domain that uses bridged networking. The XML specification of the
domain contains the following configuration
<interface type='bridge'>
<source bridge='br0'/>
</interface>
The libvirt documentation (
2010 Dec 21
1
Shared Folders via Symlinking
Hi folks,
I'm trying to set up shared folders via symlinking and have come across a problem. I created a folder for one user, then symlinked it to another. I figured that one thing that is likely to happen at some point is that user 2 is going to decide they don't want to look at that folder any more, and will delete it, so I tried this. Much to my relief, it didn't delete the actual
2008 Mar 01
1
jpeg and margin text
Hi guys,
I use R 2.6.2 and Windows XP.
I’ve got the following question: I wrote a lot of text into the margin of a
plot. When I use the “jpeg”-function, only a little part of the margin text
is displayed in the final jpeg? Any ideas to change it?
Source-Code:
datenbankdaten<-data.frame(LETTERS[1:20],
2017 Jan 17
0
Re: Controlling the name of the 'tap0' device, in a bridged networking setup
On 01/14/2017 06:30 AM, Govert wrote:
> Hi,
>
> I'm trying to control the name of the 'tap0' device that gets created
> as I start a domain that uses bridged networking. The XML
> specification of the domain contains the following configuration
>
> <interface type='bridge'>
> <source bridge='br0'/>
>
2009 Dec 08
2
[LLVMdev] Back-end with general purpose registers
Hi all,
I am trying to write a back-end for LLVM where any instruction may take
any type of data. I am looking for the output to be of the format:
inst.type reg1,reg2
etc. Where inst is the instruction, e.g. mov and type is data-type e.g.
f32 etc. I tried creating a back-end with a register class which could
take i32 and f32:
def GPRegs
: RegisterClass <"Test",
2009 Dec 17
0
[LLVMdev] Matching icmp/fcmp in a back-end
Hi all,
I was wondering if it is possible to match the icmp and fcmp assembly
language instructions in the code generator. For example, for the
following code:
%cmp = icmp sgt i32 %tmp, %tmp1 ; <i1> [#uses=1]
br i1 %cmp, label %if.then, label %if.else
We would like to see something like:
SGT cmp, tmp, tmp1
BR cmp lbl
However, I can't see any case in the back-ends
2010 Jan 05
2
[LLVMdev] Removing the constant pool
Hi all,
I was wondering if it is possible to stop floating-point constants being converted to use the constant pool? As for our back-end we would like to be able to treat floating point constants the same way integer constants are treated instead of having to go via the constant pool.
Thanks for your help,
Rob
-
This message is subject to Imagination Technologies' e-mail terms:
2002 Dec 11
0
New Job
Dear List,
Break into consultancy - X-train and broaden your horizons
If variety is the spice of life - this job is pretty hot!!
If you are a graduate with a numerical / statistical degree and 2+ years
statistical analysis this could be the change you are looking for. If
your aptitude for number crunching trading risk analysis, drug trial
analysis customer analytics or data mining is matched by
2010 Jan 13
2
[LLVMdev] Identifying recursive functions in a backend
Hi,
I was wondering if it was possible to detect if a function is recursive in a back-end. For instance, I'd like to be able to say: "If this function we are about to call is recursive, store the return address to the stack, if it isn't we don't need a stack so do nothing". Does anyone know if this is possible?
Thanks,
Rob
-
This message is subject to Imagination
2014 Feb 20
2
Unable to Join Samba server to AD windows server 2008 R2
Hi
We are facing some issue While joining samba server to AD
We have ClearCase VOB server on AIX 5.3 with TL 12 and SAMBA version 3.5.0 installed on Aix server. The AD server is Windows 2008 R2. We are unable to Join Samba server to AD .
Command: net ads join createcomputer=<OU> -U <username>
Please find the details smb.conf. Please advice on resolving this issue is highly
2009 Oct 02
3
Tabulating using arbitrary numbers of factors
Dear R-help,
First of all, thank you VERY much for any help you have time to offer. I
greatly appreciate it.
I would like to write a function that, given an arbitrary number of factors
from a data frame, tabulates the number of occurrences of each unique
combination of the factors. Cleary, this works:
> table(horse,date,surface)
<SNIP>
, , surface = TURF
2008 Aug 07
0
[JOB] Softwareentwickler/-in, prometheus-Bildarchiv, Universität zu Köln
hi folks!
sorry to bother you all, but the following job announcement is in
german only, because fluent german is an indispensable requirement
anyway.
cheers
jens
----
An der Universität zu Köln, prometheus - Das verteilte digitale
Bildarchiv für Forschung & Lehre, Kunsthistorisches Institut,
Philosophische Fakultät ist zum 01.09.2008 befristet bis 28.02.2009
die Stelle einer/eines
2009 Apr 13
1
[LLVMdev] Porting LLVM backend is no fun yet
Hello, Alex
> for generating C++ records. I was hoping for something that would allow me
> to specify my target machine (more inline with what GCC does) and then just
> stand back and watch the target code be generated. I guess a deeper
> understanding of Target classes is mandatory before proceeding to use
> TableGen.
That's true. TableGen can automate many important cases,
2008 Sep 19
0
[JOB] Softwareentwickler/-in, prometheus-Bildarchiv, Universität zu Köln
Hi folks!
We, the prometheus image archive at the University of Cologne
(Germany), would like you to take note of the following job
announcement for a full-time software developer position in Cologne,
Germany. In addition, we''d like to emphasize that the contract is
limited in time due to formal reasons only. We definitely aim at
extending it.
We look forward to receiving your
2011 Dec 01
0
[JOB] Softwareentwickler/-in, prometheus-Bildarchiv, Universität zu Köln
We, the prometheus image archive at the University of Cologne
(Germany), would like you to take note of the following job
announcement for a full-time software developer position in Cologne,
Germany. Please note that fluent German is required.
Cheers
Jens
----
In der Philosophischen Fakultät, im *Kunsthistorischen Institut,
prometheus - Das verteilte digitale Bildarchiv für Forschung &
2005 Sep 20
5
Neat way of using R for pivoting?
Hi,
I'd like to use R to do what excel pivot tables do, and plot results.
I've never used R before, and I've managed to do something, but it's quite a
lot of code to do something simple. I can't help but think I'm not "Doing it
the R way".
I could be using R for the wrong thing, in which case, please tell me off.
I was hoping something like plot(by(t,
2013 May 30
0
Link to the official Google Group
This seems useful for Ocado-specific problems and/or those containing
sensitive information. Also for announcements as you''ve mentioned.
If it''s a vanilla Puppet problem I''d advocate the official mailing list
instead, where many answers can be found and people beyond Ocado can learn
from your own questions.