similar to: R hangs when trying to invoke through java in linux environment

Displaying 20 results from an estimated 10000 matches similar to: "R hangs when trying to invoke through java in linux environment"

2008 Oct 02
2
SSH connection hangs on shell commands when used through tinc
Hello! I have 3 PCs - Windows, FreeBSD and Ubuntu. FreeBSD runs as a tinc server as it has a real IP. Ubuntu runs as a tinc client as it has a dynamically changing public IP. Windows has not tinc installed yet. Therefore I use Putty ssh client to ssh to FreeBSD machine (as it has real IP) and then from there I ssh to the Ubuntu box using its virtual IP. The connection establishes well, I can ping
2018 Aug 02
0
SAMBA 4 as Active Direcotry and Hyper-V
Unfortunately i don't have any logs. Even from samba. I installed Samba from source (with option ads). After that, i used something like wizard to configure Samba as Active Direcotry Domain Controller. 2018-08-02 16:24 GMT+02:00 L.P.H. van Belle via samba <samba at lists.samba.org >: > Ok, what you use is your choice. It's what you preffer. > > Few other questions then.
2018 Aug 02
2
ODP: Re: SAMBA 4 as Active Direcotry and Hyper-V
I have a suspicion that it is related to the specific SPNs that hyperv uses. Hyper-v tries to register 3 spn (typing from memory so I might be a bit off): Microsoft hyper-v console/HOST.FQDN Hyper-V Replication Servive/HOST.FQDN Microsoft Hyper-V Live Migration Service/HOST.FQDN. This fails because of the spaces, that is samba being on linux, not seeing escape characters, messes up the request it
2018 Aug 02
2
SAMBA 4 as Active Direcotry and Hyper-V
Ok, what  you use is your choice. It's what you preffer.   Few other questions then. If connect from you pc to the hyper-v console, it this logged in the windows event log?   Can you telnet to the hyper-v console port?   Somehere there is something logged. I need that. Start with  increase the samba logs and checking the windows event logs.     Greetz,   Louis     Van: Rados??aw
2005 Dec 09
0
Multiple Figure environment through Java
I am trying to create a .jpg file with multiple graphs on it. I am creating this file through a java servlet which connects to R using RServe. In the code below, col is an int array which has a list of the col numbers of the data file whose data i have to use for plotting. c=new Rconnection();
2010 Nov 16
4
easy httpd's problem
your guys: I can't see the direcotry under / produced by mkdir command via Internat Explorer, except the any direcotry and file that exist after the CentOS installation complete. This is my directory 's detail information: drwxr-xr-x root www-data root:object_r:default_t CenterRepo and my httpd's configuration information: <VirtualHost *:80> ServerAdmin
2003 Oct 16
0
Buffer management bug-fix for 2.5.1p2
All, I got the patch for this bug from the OPENSSH site and as I was applying the same to my version of 'buffer.c' I noticed that this patch, which was in Appendix-A (ver 3.6 and earlier) was not directly applicable to my version of buffer.c, specifically the lines of code that have changed for the function, buffer_append_space(). For one, my version of this function has 3 arguements
2010 Dec 18
1
how to use expression as function arguements?
Hi all, ##################################### integ=function(f,n){ # computes vector y = f(x) x=runif(10000) y=f hatI=mean(y) hatI } # example of use integ(x^2+x+100,100) ##################################### it returns an error says no obj 'x' how do I 'tell' R to treat 'f' as an input expression? Thanks. casper -- View this message in context:
2018 Aug 02
2
SAMBA 4 as Active Direcotry and Hyper-V
On Thu, 2 Aug 2018 17:40:30 +0200 Radosław Dobrowolski via samba <samba at lists.samba.org> wrote: > Unfortunately i don't have any logs. Even from samba. I installed > Samba from source (with option ads). After that, i used something > like wizard to configure Samba as Active Direcotry Domain Controller. > Can you remember what your actual 'configure' line was, it
2018 Aug 02
0
SAMBA 4 as Active Direcotry and Hyper-V
Why use hyper-V, if you can a free Xen Server : https://xcp-ng.org/ Which is the same as Citrix Xen but free and all licences options enabled. Just have look. But for the hyperv, its not clear what you want exactly here. Check this link, im guessing this is close to what your looking for. https://community.spiceworks.com/topic/2108484-adding-smb-or-usb-shares-to-standalone-hyper-v-server
2001 Nov 11
1
[PATCH] do not invoke sub-make unless the 'cd directory' succeeds
If for some reason (directory missing or permissions bad), it is not possible to cd into either the scards or openbsd-compat direcotries, the make will enter an infinite loop. Correct this by changing the make idiom (cd directory; $(MAKE)) to the idiom (cd directory && $(MAKE)) so that a failure to cd into directory will generate an error for make. The following patch is against the
2007 Oct 09
5
continue for loop in case of erros
Dear all, I have a for loop which includes nls model estimation. The loop breaks after the first non-convergence error. How can I make the loop continue and try to estimate all models? I suppose it should be sth like: if(...) { next } but I have no idea how to setup the arguements... Thank you! Irene
2007 Jan 12
0
Re: a problem when I''m try to debug xen boot codes
Hi Ming, Could you share some experience on how to enable the xen debug? I try to build the xen with a kgdb patched kernel, but failed. Arhold ~~~~~~~~~~~~~~~~~~~~~~~ hi, I want to learn xen boot codes. I use bochs with gdb stub to implement source codes debug. I rebuild xen kernel with "debug=y, debugger=y" to enable debug, boot xen by bochs, connect gdb remote target, set
2008 Jan 02
2
[LLVMdev] immediate predecessors
hi, how to get the number of immediate predecessors for each basic block (arguements of remarks statement at the beginning of the basic block) thank you aditya ____________________________________________________________________________________ Never miss a thing. Make Yahoo your home page. http://www.yahoo.com/r/hs
2005 May 18
2
applying a function over an array
Is there a way to apply a function with several arguements over an array? For instance if you had a function d<-function(a,b,c) {a+b+c} and a 4,3 array, could you apply the function over each line of the array? tapply seems to only allow one argument, and I just can't think of a way to explicitly tell R that I am passing it 3 distinct objects instead of 1 complex one. Thank you as
2009 Aug 14
1
Saving Iterative Components
Dear All, I am trying to iterate an iterative process (i know R is not the best place for so much looping but i have to so tough!) and store the resulting data from each iteration to then be graphed. In simple form the script looks like this for(i in tracks) { a <- (subset(data, data$Id==i)) result.dataset <- function(a, other.arguements) ### this function is the other
2011 Jan 14
2
question about deparse(substitute(...))
Dear R helpers: I like to apply deparse(substitute()) on multiple arguments to collect the names of the arguments into a character vector. I used function test.fun as below. it works when there is only one input argument. but it does not work for multiple arguements. can someone kindly help? test.fun <- function(...){deparse(substitute(...))} test.fun(x) #this works test.fun(x,y,z) # I like
2005 May 04
0
New win32-dir
Hi all, In lieu of Timothy''s pure Ruby junction code, and Zach''s VC++ 6 issues, I decided to just rewrite the dang thing in pure Ruby using Win32API. That will solve''s Zach''s problem and make it easier to add Timothy''s code, which I plan to add (slightly modified) to the 0.2.0 release. The code is below. One thing I have a question about is how to
2003 Nov 07
1
diax request
First of all great job on diax. I downloaded it and tried it, could not connect, got an authentication rejected,but I have not had a chance to figure out why yet - tried with a working gnophone setup in the configuration files. Is there any way to pass command line arguements to the program ? Where I see a real niche for a lightweight softphone is being able to serve the thing from a
2006 Aug 21
1
"vcov" error in svyby and svytable functions
Hi, I'm trying to compute survey svytable statistic on subsets by using the svyby function. Here is the code: b<-svyby(~V024+V751, by=~V025, design=strat2, svytable, round=TRUE) The vars, V024, V751 and V025 are factors. The by var has 2 levels, and hence there will be two subsets. strat2 is created by the svydesign function. It's giving me the following error: >