search for: startinfo

Displaying 11 results from an estimated 11 matches for "startinfo".

Did you mean: start_info
2009 Apr 07
2
Running an R script from Delphi 7
Gentlepersons: A long time ago I used to be able to start R (version 2.6.1) from a Delphi 7 program and run a script by using a procedure like the following: function StartRAndWait (CommandLine : string) : Boolean; var Proc_info: TProcessInformation; Startinfo: TStartupInfo; ExitCode: longword; CreateOK : Boolean; begin Result := False; { Initialize the structures } FillChar(proc_info, sizeof (TProcessInformation), #0); FillChar(startinfo, sizeof (TStartupInfo), #0); Startinfo.cb := sizeof (TStartupInfo); Startinfo.dwFla...
2007 Aug 21
1
runing .r file from C#
...uting the lists and I can not seam to find a working solution for my problem. I want to call a R script ( let's call it "test.r" ) from within C# code. After reading about this topic I am trying to do this : System.Diagnostics.Process proc = new System.Diagnostics.Process(); proc.StartInfo.FileName = "E:/R/R-2.5.1 /bin/Rterm.exe"; proc.StartInfo.Arguments = " <'test.r' --no-save"; proc.StartInfo.UseShellExecute = false; proc.StartInfo.RedirectStandardOutput = false; proc.Start(); bun when Rterm starts it shows parameter <test.r ignored When I try...
2006 Dec 04
8
Calling R functions in Delphi
Hello All, We would like to call quantile() function from the R-package STATS in a Delphi program. If this is possible, could anyone provide us with an example? Thanks in advance. --Anna ----------------------------------------- Anna Belova Abt Associates Inc. 4800 Montgomery Ln, St 600 Bethesda, MD-20814 phone: 301-347-5304 fax: 301-652-7530 http://www.abtassociates.com/environment
2009 Sep 10
1
executing rscript from VB
...as below. The script runs fine but the redirection doesnt seem to happen. The redirection operator and the out file seem to be treated as arguments to the R script. Is there a way to get the > operator working thanks, R System.Diagnostics.Process proc = new System.Diagnostics.Process(); proc.StartInfo.FileName = "E:/R/bin/Rscript.exe"; proc.StartInfo.Arguments = "E:/R/bin/test.r > test.out"; proc.StartInfo.UseShellExecute = true; proc.Start();
2007 Jun 01
0
USB phone -- Help
...mu. Pls see below for installed rpm. [root at mailgw ~]# rpm -qa |grep gammu gammu-1.11.0-1.el5.rf here's my /etc/gammurc file. [gammu] port = /dev/ttyUSB0 ;model = 6110 connection = dlr3 ;synchronizetime = yes ;logfile = gammulog ;logformat = textall ;use_locking = yes ;gammuloc = locfile ;startinfo = yes ;gammucoding = utf8 ;rsslevel = teststable ;usephonedb = yes [gammu1] port = /dev/ttyUSB1 ;model = 6110 connection = dlr3 ;synchronizetime = yes ;logfile = gammulog ;logformat = textall ;use_locking = yes ;gammuloc = locfile ;startinfo = yes ;gammucoding = utf8 I tried to send an SMS to my...
2008 Aug 08
1
Invoking R from application
...RGUMENT '<' __ignored__ ARGUMENT 'test.r' __ignored__ FYI: I'm using Windows XP. If I enter the following behind the command prompt: C:\Progra~1\R\R-2.7.1\bin\Rterm.exe --slave < test.r then my script test.r is dealt with correctly, but if I use DotNet classes Process and StartInfo from the System.Diagnostics namespace, things go wrong :-( Does anyone understand what is going wrong here? Pls let me know something. TIA Kind regards, Dobedani
2007 Dec 05
21
Fwd: win32/process problem
Any ideas? ---------- Forwarded message ---------- From: Christian Kerth <christian.ke... at dynamicmedia.at> Date: Dec 5, 8:28 am Subject: win32/process problem To: comp.lang.ruby I have an application that consists of serveral independent parts. I want to use the Windows Process API to spawn the different processes. e.g. require ''rubygems'' require
2011 Oct 06
6
reg dom0 console
Hello All, After a few months of hiatus, we have resumed working on mips port of Xen. We are at the point of booting dom0 userland (init process and its children). The init process gets spawned and in turn forks off processes to run commands in /etc/rc.d/init.d/rcS. However, the getty process does not seem to run subsequently and hence the login prompt is not displayed. Dom 0 does not use the
2005 May 31
0
[PATCH] Store page and evtchn in start_info_t
...unsigned int vcpus, + unsigned int store_evtchn, unsigned long *store_mfn) { l1_pgentry_t *vl1tab=NULL, *vl1e=NULL; l2_pgentry_t *vl2tab=NULL, *vl2e=NULL; @@ -108,7 +109,8 @@ { vpt_end = vpt_start + (nr_pt_pages * PAGE_SIZE); vstartinfo_start = vpt_end; - vstartinfo_end = vstartinfo_start + PAGE_SIZE; + /* Place store shared page after startinfo. */ + vstartinfo_end = vstartinfo_start + PAGE_SIZE * 2; vstack_start = vstartinfo_end; vstack_end = vstack_start + PAGE_SIZE;...
2013 Oct 28
5
FreeBSD PVH guest support
...mi), IDTVEC(bpt), IDTVEC(ofl), int xendebug_flags; start_info_t *xen_start_info; +start_info_t *HYPERVISOR_start_info; shared_info_t *HYPERVISOR_shared_info; xen_pfn_t *xen_machine_phys = machine_to_phys_mapping; xen_pfn_t *xen_phys_machine; @@ -744,7 +745,7 @@ void initvalues(start_info_t *startinfo); struct xenstore_domain_interface; extern struct xenstore_domain_interface *xen_store; -char *console_page; +extern char *console_page; void * bootmem_alloc(unsigned int size) @@ -927,6 +928,7 @@ initvalues(start_info_t *startinfo) HYPERVISOR_vm_assist(VMASST_CMD_enable, VMASST_TYPE_4gb...
2009 Sep 11
3
For sending my R package as part of R-project
...as below. The script runs fine but the redirection doesnt seem to happen. The redirection operator and the out file seem to be treated as arguments to the R script. Is there a way to get the > operator working thanks, R System.Diagnostics.Process proc = new System.Diagnostics.Process(); proc.StartInfo.FileName = "E:/R/bin/Rscript.exe"; proc.StartInfo.Arguments = "E:/R/bin/test.r > test.out"; proc.StartInfo.UseShellExecute = true; proc.Start(); ------------------------------ Message: 17 Date: Thu, 10 Sep 2009 06:10:59 -0700 (PDT) From: bbimber <bimber at wisc.edu>...